html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.container {
  max-width: 152rem;
  width: 100%;
  margin: 0 auto;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("./../fonts/RobotoConsensed/RobotoCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("./../fonts/RobotoConsensed/RobotoCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("./../fonts/RobotoConsensed/RobotoCondensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  color: #fffefc;
  background-color: #000000;
}

.tech {
  background-image: url("./../images/bg.png");
  background-position: center;
  background-position-x: 17rem;
  background-size: cover;
  background-repeat: no-repeat;
}
.tech__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 94rem;
  width: 100%;
  padding: 8.6rem 0;
}
.tech__heading {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 100%;
}
.tech__title {
  font-family: Bebas Neue Cyrillic;
  font-weight: 400;
  font-size: 6.4rem;
  line-height: 100%;
}
.tech__subtitle {
  font-family: Bebas Neue Cyrillic;
  font-weight: 400;
  font-size: 5.6rem;
  line-height: 100%;
}
.tech__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 2.4rem;
  line-height: 100%;
  position: relative;
}
.tech__list::before {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 110%;
  top: -0.5rem;
  background-color: #ffe2a1;
  border-radius: 2rem;
  left: 0.4rem;
}
.tech__list-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.tech__list-dot {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffe2a1;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tech__list-dot::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-color: rgba(255, 225, 161, 0.4901960784);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.tech__list-text {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 100%;
}

.form {
  background-color: rgba(255, 255, 255, 0.2039215686);
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form__heading {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 100%;
}

.form-bg {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.form-control {
  width: 100%;
  position: relative;
}

.form-input {
  font-size: 1.6rem;
  background-color: #fff;
  padding: 2rem 1.2rem;
  border-radius: 1rem;
  color: #000;
  width: 100%;
}
.form-input::-moz-placeholder {
  font-family: "Roboto Condensed";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.4);
}
.form-input::placeholder {
  font-family: "Roboto Condensed";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.4);
}

.error {
  position: absolute;
  font-size: 1.2rem;
  color: red;
  top: 0.5rem;
  right: 0.5rem;
  display: none;
}

.checkbox__box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.checkbox__box label {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
}

.checkbox {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #fffefc;
  background-color: #fffefc;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("./../images/icons/check.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.btn {
  font-family: Bebas Neue Cyrillic;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #1f1f1f;
  padding: 2.4rem 0;
  border-radius: 1rem;
  background: radial-gradient(50% 107.26% at 50% 50%, #ffffbf 0%, #dcc282 51.92%, #b49d6b 100%);
}

.what {
  background-image: url("./../images/what/bg-what.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.what__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 2.3rem 0;
}
.what__title {
  font-family: Bebas Neue Cyrillic;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 100%;
  text-align: center;
}
.what__inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  background: linear-gradient(280.56deg, #ffffff 1.1%, #dbdbdb 100%);
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
}
.what__inner-title {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 106%;
  letter-spacing: 3%;
  text-align: center;
  color: #0e0e0e;
}
.what__inner-content {
  display: flex;
  align-items: start;
}
.what__end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.what__end-title {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 100%;
  text-align: center;
}
.what__end-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 68rem;
  width: 100%;
  -moz-column-gap: 16rem;
  column-gap: 16rem;
  row-gap: 1.2rem;
}
.what__end-item {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.what__end-item::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #ffe2a1;
  border-radius: 50%;
}
.what__end-item::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 0;
  background-color: rgba(255, 225, 161, 0.4901960784);
  border-radius: 50%;
  left: -0.4rem;
}

.inner-content__block {
  position: relative;
  width: 48.5rem;
}
.inner-content__block img {
  width: 100%;
}
.inner-content__top-text {
  padding: 1.6rem 2.8rem;
  border-radius: 2rem;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 106%;
  letter-spacing: 3%;
  text-align: center;
  color: #070707;
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}
.inner-content__bottom-text {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 106%;
  letter-spacing: 3%;
  padding: 1rem;
  background: #ffffff;
  border-radius: 2rem;
  color: #040404;
}
.inner-content__bottom-text.short {
  max-width: 18.5rem;
  width: 100%;
}
.inner-content__bottom-text.long {
  max-width: 24.1rem;
  width: 100%;
}
.inner-content__bottom-right-text {
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(113.45deg, #ffefb4 20%, #d8b464 93.95%);
  border: 1px solid #ffffff;
  color: #0e0e0e;
  border-radius: 2rem 0 2rem 0;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 106%;
  letter-spacing: 3%;
  max-width: 21rem;
  width: 100%;
  padding: 1.9rem 1.5rem;
  box-shadow: -3px -4px 12px 0px rgba(0, 0, 0, 0.4196078431);
}

.what__left-colum,
.what__right-colum {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.program {
  background-image: url("./../images/bg-program.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.program__content {
  padding: 14rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 74rem;
  width: 100%;
  margin-left: auto;
}
.program__content-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 1rem;
  background-color: #ffffff;
}
.program__content-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 1rem;
  background-color: #ffffff;
}
.program__content-bottom-title {
  font-family: Bebas Neue Cyrillic;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 100%;
  color: #000;
}
.program__content-bottom-text {
  color: #000;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 100%;
}

.content-top__title {
  font-family: Bebas Neue Cyrillic;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 100%;
  color: #000;
}
.content-top__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.content-top__list-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 100%;
  color: #000;
}
.content-top__list-dot-box {
  max-width: 7rem;
  width: 100%;
  background-color: #140b03;
  border: 1px solid #7d5126;
  display: flex;
  justify-content: end;
  align-items: end;
  border-radius: 30rem;
}
.content-top__list-dot {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #f4cda7;
  border: 1px solid #7d5126;
  background-image: url("./../images/icons/check-program.svg");
  background-position: center;
  background-size: 1.4rem;
  background-repeat: no-repeat;
}

.get {
  background-image: url("./../images/bg-get.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.get__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  gap: 4rem;
}
.get__title {
  font-family: Bebas Neue Cyrillic;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 100%;
  text-align: center;
}
.get__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7.6rem;
  background-color: #ffffff;
  padding: 8rem 2rem 8rem 4rem;
  border-radius: 4rem;
  position: relative;
}
.get__inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #6b6447;
  top: 0;
  left: 0;
  rotate: -2deg;
  z-index: -1;
  border-radius: 4rem;
}
.get__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #544c34;
  top: 0;
  left: 0;
  rotate: 1.5deg;
  z-index: -1;
  border-radius: 4rem;
}
.get__inner span {
  position: absolute;
}
.get__inner-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 57.4rem;
  width: 100%;
}
.get__inner-title {
  font-family: Bebas Neue Cyrillic;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 100%;
  color: #000;
}
.get__inner-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.get__inner-item {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 100%;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.get__inner-item::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #ffe2a1;
  border-radius: 50%;
}
.get__inner-item::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 0;
  background-color: rgba(255, 225, 161, 0.4901960784);
  border-radius: 50%;
  left: -0.4rem;
}

.btn {
  position: relative;
}
.btn.solo {
  max-width: 74rem;
  width: 100%;
}
.btn.handle::before {
  content: "";
  position: absolute;
  height: 10rem;
  width: 0.4rem;
  left: 8rem;
  top: -10rem;
  background: linear-gradient(180deg, #b49d6b -399.95%, #e0c989 -364.95%, #7d6b44 -49.97%);
  z-index: -1;
}
.btn.handle::after {
  content: "";
  position: absolute;
  height: 10rem;
  width: 0.4rem;
  right: 8rem;
  top: -10rem;
  background: linear-gradient(180deg, #b49d6b -399.95%, #e0c989 -364.95%, #7d6b44 -49.97%);
  z-index: -1;
}

.line-y {
  width: 1px;
  height: 100%;
  border-width: 1px;
  border-style: solid;
  -o-border-image: repeating-linear-gradient(to bottom, #dbc8a9 0, #dbc8a9 1rem, transparent 1rem, transparent 2.2rem) 1;
  border-image: repeating-linear-gradient(to bottom, #dbc8a9 0, #dbc8a9 1rem, transparent 1rem, transparent 2.2rem) 1;
  top: 0;
  left: 50%;
}

.line-x {
  width: 100%;
  height: 1px;
  border-width: 1px;
  border-style: solid;
  -o-border-image: repeating-linear-gradient(to right, #dbc8a9 0, #dbc8a9 1rem, transparent 1rem, transparent 2.1rem) 1;
  border-image: repeating-linear-gradient(to right, #dbc8a9 0, #dbc8a9 1rem, transparent 1rem, transparent 2.1rem) 1;
  left: 0;
  top: 50%;
}

.form-bg-2 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.modal-form {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-form.active {
  display: flex;
}

.modal-form__content {
  position: relative;
  max-width: 59rem;
  width: 100%;
  background-image: url("./../images/icons/bg-form.png");
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5.4rem 2.4rem 2.4rem 2.4rem;
  border-radius: 2rem;
}

.modal__text {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 100%;
  color: #000;
}

.modal-close {
  position: absolute;
  right: 2rem;
  top: 1.2rem;
  cursor: pointer;
}

.form-input.second {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0784313725) inset;
  border: 1px solid rgba(0, 0, 0, 0.0784313725);
}

.second-label {
  color: #000;
}

.checkbox.second {
  border: 1px solid #000000;
}

.line-x-mob1,
.line-x-mob2 {
  display: none;
}

.footer__block.for-mobile {
  display: none;
}

.footer {
  font-size: 2rem;
  font-family: "Rubik", sans-serif;
  line-height: 1.1;
  background: #070707;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}

.footer__dogovor {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: end;
}

.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}

.footer a:hover {
  color: #7c66ff;
  border-color: #7c66ff;
}

.footer a svg {
  width: 2rem;
  fill: currentColor;
}

@media screen and (max-width: 1024px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
.footer .container {
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  margin-bottom: 2rem;
}

.footer__row:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .footer__row {
    min-height: 5rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  min-width: 19rem;
}

.footer__phone > div {
  min-width: 19rem;
}

.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #a3a3a3;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 1024px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  align-items: center;
}

.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}

@media screen and (max-width: 1024px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 1.2rem;
  column-gap: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .footer__mail a {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}
@media (max-width: 968px) {
  .footer__block.for-mobile {
    display: block;
  }
  .footer__block.for-desktop {
    display: none;
  }
  .form-separator-mobile {
    width: 100%;
    height: 1px;
    background-color: #d6c7c7;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 4rem;
  }
  .tech__content {
    padding: 5rem 0;
  }
  .tech {
    background-image: url("./../images/bg-mobile.png");
    background-position-x: initial;
    background-size: contain;
  }
  .tech__title {
    font-size: 4.8rem;
  }
  .tech__subtitle {
    font-size: 3.8rem;
  }
  .tech__list {
    margin-top: 9rem;
  }
  .what__title {
    font-size: 3.6rem;
  }
  .what {
    background-image: url("./../images/what/bg-what-mobile.png");
  }
  .inner-content__block {
    max-width: 17.5rem;
    height: 35rem;
  }
  .inner-content__block img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
  }
  .what__inner-title {
    font-size: 2.6rem;
  }
  .inner-content__top-text {
    padding: 0.6rem 1.8rem;
    font-size: 1.6rem;
  }
  .inner-content__bottom-text {
    font-size: 1.8rem;
  }
  .what__inner {
    padding: 2rem 2rem 8rem 2rem;
  }
  .inner-content__bottom-right-text {
    max-width: 95%;
  }
  .inner-content__bottom-text.long {
    max-width: 16rem;
  }
  .inner-content__bottom-text.short {
    max-width: 12.5rem;
  }
  .what__end-title {
    text-align: start;
    font-size: 2.4rem;
  }
  .what__end-list {
    justify-content: start;
    max-width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .what__end-item {
    font-size: 2.4rem;
  }
  .program__content {
    padding: 2rem 0 65rem;
  }
  .content-top__title {
    font-size: 3.8rem;
  }
  .program__content-bottom-title {
    font-size: 3.4rem;
  }
  .program {
    background-image: url("./../images/bg-rogram-mobile.png");
    background-position: bottom;
    background-size: contain;
  }
  .get__inner-title {
    font-size: 3.8rem;
  }
  .get__inner {
    gap: 5rem;
  }
  .line-y {
    display: none;
  }
  .line-x-mob1 {
    display: block;
    width: 100%;
    height: 1px;
    border-width: 1px;
    border-style: solid;
    -o-border-image: repeating-linear-gradient(to right, #dbc8a9 0, #dbc8a9 1rem, transparent 1rem, transparent 2.1rem) 1;
    border-image: repeating-linear-gradient(to right, #dbc8a9 0, #dbc8a9 1rem, transparent 1rem, transparent 2.1rem) 1;
    left: 0;
    top: 25rem;
    /* top: 22rem; */
  }
  .line-x-mob2 {
    display: block;
    width: 100%;
    height: 1px;
    border-width: 1px;
    border-style: solid;
    -o-border-image: repeating-linear-gradient(to right, #dbc8a9 0, #dbc8a9 1rem, transparent 1rem, transparent 2.1rem) 1;
    border-image: repeating-linear-gradient(to right, #dbc8a9 0, #dbc8a9 1rem, transparent 1rem, transparent 2.1rem) 1;
    left: 0;
    /* top: 66rem; */
    top: 72rem;
  }
  .get__inner::before {
    top: -1rem;
  }
  .get__inner::after {
    top: -1rem;
  }
}
.language {
  position: fixed;
  z-index: 100;
  top: 4rem;
  right: 9vw;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #333;
  overflow: hidden;
  padding: 0.5rem;
}

@media screen and (max-width: 767px) {
  .language {
    top: 2rem;
    right: 2rem;
    padding: 1rem;
    width: 8.8rem;
    height: 5rem;
    cursor: pointer;
  }
}
.language:hover {
  height: auto;
}

.language:hover .language__arrow {
  transform: rotate(0deg);
}

.language__item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  cursor: pointer;
}

.language__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .language__item {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.language__arrow {
  width: 1.7rem;
  transition: all 0.3s ease-out;
  transform: rotate(-180deg);
}

@media screen and (max-width: 767px) {
  .language__arrow {
    width: 2rem;
  }
} /*# sourceMappingURL=style.css.map */
