@import url("https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&family=Roboto:ital,wght@0,300;0,500;1,300&family=Yeseva+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:opsz@14..32&family=Roboto&family=Yeseva+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@200&family=Great+Vibes&family=Inter:opsz@14..32&family=Roboto&family=Yeseva+One&display=swap");
:root {
  --index: calc(1vw + 1vh);
  --font-size: 22px;
  --line-height: auto;
  --font-size-mob: 17px;
  --line-height-mob: 19.92px;
  --item-width: 325px;
  --burger-color: black;
  --burger-color-active: white;
  --container-width: 1780px;
  --container-padding: 80px;
  --font-default: "Roboto", sans-serif;
  --transition: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --transition2: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --transition3: cubic-bezier(0.715, -0.235, 0.120, 1.300);
  --bg-body: #F1EEF1;
  --color-body: #1D182F;
  --color-text: #1D182F;
  --bradius: 5px;
  --grey-1: #5F577A;
  --grey-2: #9B96AD;
  --burgundy: #64062D;
  --burgundy-light: #7F0E3E;
  --blue: #7F7FEB;
  --extra-light-blue: #DFDFF8;
  --light-1: #CECEF1;
  --light-2: #A6A6E5;
  --light-pink: #EFDFE5;
  --red: #E00000;
  --green: #1EA441;
  --burbundy-op: rgba(100, 6, 45, 0.4);
  --black-op: rgba(0, 0, 0, 0.25);
  --blue-op: rgba(223, 223, 248, 0.7);
  --grey-op: rgba(235, 234, 235, 0.4);
}
@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}
@media screen and (max-width: 1325px) {
  :root {
    --container-padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }
}

/* responsive */
@font-face {
  font-family: "Diatype";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Diatype/ABCDiatype-Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

ul {
  list-style: none;
}

ol {
  padding-left: 34px;
}
@media screen and (max-width: 1440px) {
  ol {
    padding-left: 28px;
  }
}

input,
a {
  outline: none !important;
  color: var(--color-text);
  text-decoration: none;
}

button,
input,
textarea {
  font-family: var(--font-default);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*::-webkit-input-placeholder {
  opacity: 1;
}

*:-moz-placeholder {
  opacity: 1;
}

*::-moz-placeholder {
  opacity: 1;
}

*:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: 300;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
}
@media screen and (max-width: 1440px) {
  body {
    font-size: var(--font-size-mob);
    line-height: var(--line-height-mob);
  }
}
@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}
body._default {
  padding-top: 110.78px;
}
@media (max-width: 1600px) {
  body._default {
    padding-top: 105px;
  }
}
@media screen and (max-width: 1440px) {
  body._default {
    padding-top: 100.44px;
  }
}
@media screen and (max-width: 1250px) {
  body._default {
    padding-top: 100px;
  }
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.burger-content {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
}
.burger-content__body {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.burger {
  cursor: pointer;
  display: none;
  width: 26px;
  position: relative;
  z-index: 1000;
  padding-bottom: 7.5px;
  margin-left: 20px;
}
@media screen and (max-width: 1250px) {
  .burger {
    display: block;
  }
}
.burger i {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  transition: all 0.2s ease-out;
}
.burger i::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -9px;
}
.burger i::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -9px;
}
.burger.active i {
  background: transparent;
}
.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}
.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

section {
  margin-bottom: 130px;
}
@media (max-width: 1440px) {
  section {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 541px) {
  section {
    margin-bottom: 60px;
  }
}

.super-big {
  font-family: "Yeseva One", serif;
  line-height: 1.05;
  font-size: 92px;
}
@media (max-width: 1600px) {
  .super-big {
    font-size: 80px;
  }
}
@media screen and (max-width: 1440px) {
  .super-big {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  .super-big {
    font-size: 36px;
  }
}

h1, .offer {
  font-size: 60px;
  font-family: "Yeseva One", serif;
  line-height: 1.05;
  font-weight: 400;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  h1, .offer {
    font-size: 46px;
  }
}
@media screen and (max-width: 768px) {
  h1, .offer {
    font-size: 32px;
  }
}

.section-offer {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .section-offer {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .section-offer {
    font-size: 46px;
    line-height: 48.3px;
  }
}
@media screen and (max-width: 541px) {
  .section-offer {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 33.6px;
  }
}

.suboffer {
  font-size: 46px;
  font-family: "Yeseva One", serif;
  line-height: 1.05;
  font-weight: 400;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .suboffer {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .suboffer {
    font-size: 27px;
  }
}

.sect-suboffer {
  margin-bottom: 30px;
  text-align: center;
  color: var(--burgundy);
}
@media screen and (max-width: 1440px) {
  .sect-suboffer {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 541px) {
  .sect-suboffer {
    margin-bottom: 10px;
  }
}

h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

.text {
  font-weight: 300;
  font-size: 26px;
}
@media screen and (max-width: 1440px) {
  .text {
    font-size: 20px;
    line-height: 23.44px;
  }
}
@media (max-width: 576px) {
  .text {
    font-size: 17px;
  }
}

i {
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
}
@media screen and (max-width: 1440px) {
  i {
    font-size: 17px;
  }
}

.btn {
  background: var(--burgundy);
  font-size: 26px;
  line-height: 30px;
  color: var(--bg-body);
  padding: 11px;
  border-radius: 5px;
  display: block;
  transition: 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .btn {
    font-size: 20px;
    line-height: 23px;
  }
}
.btn:hover {
  background: var(--burgundy-light);
}
.btn:active {
  background: var(--color-body);
}

.btn--outline {
  text-align: center;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 26px;
  line-height: 30px;
  border-radius: 100px;
  border: 1px solid var(--burgundy);
  text-align: center;
  padding: 11px;
  transition: 0.3s ease;
  display: block;
  background: transparent;
  cursor: pointer;
}
.btn--outline:hover {
  background: var(--burgundy-light);
  border-color: var(--burgundy-light);
  color: white;
}
@media screen and (max-width: 1440px) {
  .btn--outline {
    font-size: 20px;
    line-height: 23px;
  }
}

body.fsz-medium .btn--outline, body.fsz-medium .btn {
  font-size: 31px;
  line-height: 35px;
}
@media screen and (max-width: 1440px) {
  body.fsz-medium .btn--outline, body.fsz-medium .btn {
    font-size: 25px;
    line-height: 28px;
  }
}
body.fsz-medium h3 {
  font-size: 33px;
}
@media screen and (max-width: 1440px) {
  body.fsz-medium h3 {
    font-size: 29px;
  }
}
@media screen and (max-width: 768px) {
  body.fsz-medium h3 {
    font-size: 25px;
  }
}
body.fsz-medium i {
  font-size: 27px;
}
@media screen and (max-width: 1440px) {
  body.fsz-medium i {
    font-size: 22px;
  }
}

body.fsz-big .btn--outline, body.fsz-big .btn {
  font-size: 36px;
  line-height: 40px;
}
@media screen and (max-width: 1440px) {
  body.fsz-big .btn--outline, body.fsz-big .btn {
    font-size: 30px;
    line-height: 34px;
  }
}
body.fsz-big h3 {
  font-size: 38px;
}
@media screen and (max-width: 1440px) {
  body.fsz-big h3 {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  body.fsz-big h3 {
    font-size: 30px;
  }
}
body.fsz-big i {
  font-size: 32px;
}
@media screen and (max-width: 1440px) {
  body.fsz-big i {
    font-size: 27px;
  }
}

input {
  padding: 15px;
  border-radius: var(--bradius);
  border: none;
  font-weight: 300;
  font-size: inherit;
}
@media screen and (max-width: 1440px) {
  input {
    padding: 10px 15px;
  }
}
input::-moz-placeholder {
  color: var(--grey-1);
}
input::placeholder, input:disabled {
  color: var(--grey-1);
}
input:invalid {
  color: var(--red);
  background-image: url("../img/invalid.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: right 18px center;
  padding-right: 50px;
}
@media screen and (max-width: 1440px) {
  input:invalid {
    padding-right: 43px;
    background-size: 18px 18px;
    background-position: right 11px center;
  }
}

.slider-wrapper {
  position: relative;
}
.slider-wrapper .swiper-pagination {
  display: none;
}
@media (max-width: 992px) {
  .slider-wrapper .swiper-pagination {
    display: flex;
  }
}

.swiper-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -50px !important;
  gap: 10px;
}
@media screen and (max-width: 541px) {
  .swiper-pagination {
    bottom: -24px !important;
  }
}

.swiper-pagination-bullet {
  margin: 0 !important;
  max-width: 16px;
  min-width: 16px;
  height: 16px;
  background: var(--light-1);
  transition: 0.3s ease;
  opacity: 1;
  width: 100%;
}
@media screen and (max-width: 541px) {
  .swiper-pagination-bullet {
    max-width: 12px;
    min-width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--blue);
  max-width: 20px;
  min-width: 20px;
  width: 100%;
  height: 20px;
}
@media screen and (max-width: 541px) {
  .swiper-pagination-bullet-active {
    max-width: 14px;
    min-width: 14px;
    height: 14px;
  }
}

.swiper-button-prev, .swiper-button-next {
  top: 50% !important;
  margin-top: 0 !important;
  transform: translateY(-50%);
  background-image: url("../img/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px 16px;
  background-color: var(--blue);
  transition: 0.3s ease;
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background-color: var(--burgundy);
  background-size: 11px 20px;
}
@media screen and (max-width: 1440px) {
  .swiper-button-prev, .swiper-button-next {
    min-width: 44px;
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 992px) {
  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.main {
  position: relative;
  overflow: hidden;
  height: 529px;
  background-color: white;
}
@media (max-width: 1600px) {
  .main {
    height: 530px;
  }
}
@media screen and (max-width: 1440px) {
  .main {
    height: 400px;
  }
}
@media screen and (max-width: 1250px) {
  .main {
    height: 401px;
  }
}
@media (max-width: 992px) {
  .main {
    height: 460px;
  }
}
@media screen and (max-width: 541px) {
  .main {
    height: 450px;
  }
}
.main::before {
  content: "";
  position: absolute;
  height: 31px;
  width: 100%;
  background-image: url("../img/sect-before.svg");
  background-position: center;
  background-size: contain;
  background-repeat: repeat-x;
  top: -7px;
  left: 0;
  z-index: 11;
}
@media (max-width: 1600px) {
  .main::before {
    top: -8px;
  }
}
@media (max-width: 992px) {
  .main::before {
    height: 40px;
    top: -16px;
  }
}
@media screen and (max-width: 768px) {
  .main::before {
    background-image: url("../img/sect-before-mob.svg");
    height: 26px;
    top: 0;
  }
}
.main::after {
  content: "";
  position: absolute;
  height: 31px;
  width: 100%;
  background-image: url("../img/sect-after.svg");
  background-position: center;
  background-size: contain;
  background-repeat: repeat-x;
  bottom: -7px;
  left: 0;
  z-index: 11;
}
@media screen and (max-width: 1250px) {
  .main::after {
    width: 101%;
  }
}
@media (max-width: 992px) {
  .main::after {
    height: 40px;
    bottom: -16px;
  }
}
@media screen and (max-width: 768px) {
  .main::after {
    background-image: url("../img/sect-after-mob.svg");
    height: 26px;
    bottom: -4px;
    width: 105%;
  }
}
.main .container {
  height: 100%;
}
.main__bg {
  position: absolute;
}
.main__body {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .main__body {
    align-items: flex-end;
  }
}
.main__img {
  max-width: 530px;
  height: 530px;
  width: 100%;
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
@media screen and (max-width: 1440px) {
  .main__img {
    max-width: 400px;
    height: 400px;
    left: 40px;
  }
}
@media (max-width: 992px) {
  .main__img {
    max-width: 450px;
    height: 450px;
    left: 0px;
  }
}
@media screen and (max-width: 541px) {
  .main__img {
    max-width: 380px;
    min-width: 380px;
    height: 380px;
    left: auto;
    right: -52px;
    top: auto;
    transform: none;
  }
}
.main__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.main__desc {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 30px;
  border-radius: var(--bradius);
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: var(--burgundy);
  max-width: 845px;
  margin-left: auto;
  margin-right: 30px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1440px) {
  .main__desc {
    margin-right: 0;
    max-width: 630px;
    padding: 20px;
    row-gap: 10px;
  }
}
@media (max-width: 992px) {
  .main__desc {
    margin-bottom: 25px;
    max-width: 570px;
  }
}
@media screen and (max-width: 768px) {
  .main__desc {
    margin-bottom: 33px;
  }
}
@media screen and (max-width: 541px) {
  .main__desc {
    padding: 15px;
    margin-bottom: 25px;
    display: none;
  }
}
.main__desc i {
  align-self: flex-end;
}
.main__desc--mob {
  display: none;
}
@media screen and (max-width: 541px) {
  .main__desc--mob {
    display: flex;
  }
}

.header {
  background: var(--bg-body);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  padding: 35px 0 20px;
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .header {
    padding: 42px 0 15px;
  }
}
@media screen and (max-width: 1250px) {
  .header {
    padding: 35px 0 15px;
  }
}
@media screen and (max-width: 541px) {
  .header {
    padding: 40px 0 15px;
  }
}
.header__wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header--home {
  box-shadow: none;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: var(--grey-op);
}
.header__burger-content {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  width: 90%;
  padding: 40px 20px;
  text-align: center;
  display: none;
}
@media screen and (max-width: 541px) {
  .header__burger-content {
    width: 93%;
  }
}
.header__burger-content-body {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
}
.header__burger-content ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.header__burger-content ul a {
  display: inline-block;
  padding: 10px 15px;
  transition: 0.3s ease;
  font-size: 20px;
  border-radius: 5px;
}
.header__burger-content ul a:hover {
  color: var(--burgundy-light);
}
.header__burger-content ul a:active {
  background: var(--extra-light-blue);
}
.header.active {
  padding: 25px 0 15px;
  background: var(--bg-body);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1440px) {
  .header.active {
    padding: 10px 0 15px;
  }
}
@media screen and (max-width: 1250px) {
  .header.active {
    padding: 25px 0 15px;
  }
}
@media screen and (max-width: 541px) {
  .header.active {
    padding: 25px 0 15px;
  }
}
.header__top {
  display: none;
}
.header__top.active {
  display: block;
}
.header__top-items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1250px) {
  .header__top-items {
    justify-content: space-around;
  }
}
.header__top-item {
  display: flex;
  align-items: center;
}
.header__top-item h3 {
  margin-right: 15px;
}
.header__top-item:first-child .header__top-els label:nth-child(2) span {
  font-size: 40px;
  line-height: 42px;
}
@media screen and (max-width: 1440px) {
  .header__top-item:first-child .header__top-els label:nth-child(2) span {
    font-size: 36px;
    line-height: 37.8px;
  }
}
.header__top-item:first-child .header__top-els label:nth-child(3) span {
  font-size: 48px;
  line-height: 50.4px;
}
@media screen and (max-width: 1440px) {
  .header__top-item:first-child .header__top-els label:nth-child(3) span {
    font-size: 42px;
    line-height: 44.1px;
  }
}
.header__top-els {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__top-els label {
  cursor: pointer;
  display: inline-block;
}
.header__top-els label input {
  display: none;
}
.header__top-els label span {
  background: white;
  font-weight: 500;
  font-size: 28px;
  line-height: 29.4px;
  padding: 10px;
  transition: 0.2s ease;
  display: inline-block;
}
@media screen and (max-width: 1440px) {
  .header__top-els label span {
    font-size: 24px;
    line-height: 25.2px;
  }
}
.header__top-els label input:checked + span {
  background: var(--light-1);
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
@media screen and (max-width: 541px) {
  .header__body {
    gap: 0;
  }
}
.header__body nav {
  max-width: 1325.12px;
  width: 100%;
}
.header__body nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1250px) {
  .header__body nav ul {
    display: none;
  }
}
.header__body nav ul a {
  display: inline-block;
  padding: 15px 20px;
  transition: 0.3s ease;
  border-radius: 5px;
}
@media (max-width: 1550px) {
  .header__body nav ul a {
    font-size: 20px;
  }
}
.header__body nav ul a:hover {
  color: var(--burgundy-light);
}
.header__body nav ul a:active {
  background: var(--extra-light-blue);
}
@media (max-width: 1600px) {
  .header__body nav ul a {
    padding: 10px 15px;
  }
}
.header__body nav ul li.active a {
  color: var(--burgundy-light);
}
.header__logo {
  display: flex;
  align-items: center;
  align-self: flex-end;
  max-width: 142px;
  min-width: 142px;
  transition: 0.3s ease;
}
.header__logo:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  .header__logo {
    max-width: 114px;
    min-width: 114px;
    align-self: center;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 142px;
    min-width: 142px;
  }
}
@media screen and (max-width: 541px) {
  .header__logo {
    max-width: 128px;
    min-width: 128px;
  }
}
.header__logo img {
  width: 100%;
}
.header__items {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1250px) {
  .header__items {
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .header__items {
    gap: 10px;
  }
}
.header__item {
  border-radius: 100%;
  background: var(--extra-light-blue);
  min-width: 50px;
  height: 50px;
  max-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.header__item svg, .header__item img {
  max-width: 25px;
}
@media screen and (max-width: 1440px) {
  .header__item {
    height: 40px;
    max-width: 40px;
    min-width: 40px;
  }
  .header__item svg, .header__item img {
    max-width: 20px;
  }
}
@media screen and (max-width: 1250px) {
  .header__item {
    min-width: 50px;
    height: 50px;
    max-width: 50px;
  }
  .header__item svg, .header__item img {
    max-width: 25px;
  }
}
@media screen and (max-width: 541px) {
  .header__item {
    min-width: 45px;
    height: 45px;
    max-width: 45px;
  }
  .header__item svg, .header__item img {
    max-width: 23px;
  }
}
.header__item path {
  transition: 0.3s ease;
}
.header__item:hover {
  background: var(--light-2);
}
.header__item:hover path {
  fill: var(--color-body);
}
.header__item:hover svg:nth-child(2) path {
  stroke: var(--color-body);
}
.header__item:active {
  background: var(--color-body);
}
.header__item:active path {
  fill: var(--blue);
}
.header__item:active svg:nth-child(2) path {
  stroke: var(--blue);
}
.header__item svg {
  width: 25px;
  height: 25px;
}
.header__item svg:nth-child(2) {
  display: none;
}
.header__item.active svg:first-child {
  display: none;
}
.header__item.active svg:nth-child(2) {
  display: inline-block;
}
@media screen and (max-width: 1250px) {
  .header__item--country {
    display: none;
  }
}
.header__item--burger {
  display: none;
}
@media screen and (max-width: 1250px) {
  .header__item--burger {
    display: flex;
  }
}

@keyframes firstAnim {
  0% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes secondAnim {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.home {
  background-color: var(--blue);
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  padding: 250px 0 194px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1600px) {
  .home {
    padding: 183px 0 151px;
  }
}
@media screen and (max-width: 1440px) {
  .home {
    background-position-x: -150px;
  }
}
@media (max-width: 992px) {
  .home {
    padding: 328px 0 80px;
    background-position-x: 0;
    background-image: url("../img/bg-mob.png");
  }
}
@media (max-width: 576px) {
  .home {
    padding: 121px 0 48px;
    background-image: url("../img/bg.png");
    background-position-x: -200px;
  }
}
.home::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 101%;
  min-width: 1440px;
  height: 58px;
  background-image: url("../img/home-after.svg");
  background-position: center;
  background-repeat: repeat-x;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .home::after {
    height: 45px;
  }
}
.home__texts {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .home__texts {
    flex-direction: column;
  }
}
@media (max-width: 1250px) {
  .home__texts {
    display: none;
  }
}
.home__texts--mob {
  display: none;
  position: relative;
  z-index: 4;
}
@media (max-width: 1250px) {
  .home__texts--mob {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home__texts--mob .home__right-offer {
    margin-top: 0;
  }
  .home__texts--mob .home__left-text {
    display: flex;
    position: absolute;
    max-width: 460px;
    opacity: 1;
    animation: firstAnim 15s ease 0s infinite normal forwards;
  }
}
@media (max-width: 1250px) and (max-width: 576px) {
  .home__texts--mob .home__left-text {
    top: auto;
    max-width: 100%;
  }
}
@media (max-width: 1250px) {
  .home__texts--mob .home__texts-right {
    display: flex;
    opacity: 0;
    position: absolute;
    flex-direction: column;
    animation: secondAnim 15s ease 0s infinite normal forwards;
  }
}
@media (max-width: 1250px) and (max-width: 576px) {
  .home__texts--mob .home__texts-right {
    align-items: flex-end;
  }
}
@media (max-width: 576px) {
  .home__texts--mob {
    min-height: 479px;
    justify-content: space-between;
  }
}
.home__texts-wrap {
  min-height: 220px;
  position: relative;
  width: 100%;
}
@media (max-width: 576px) {
  .home__texts-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .home__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.home__left-text {
  animation: firstAnim 15s ease 0s infinite normal forwards;
}
.home__offer {
  border-radius: var(--bradius);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: var(--grey-op);
  padding: 20px 50px;
  display: inline-block;
  margin-left: 30px;
  margin-bottom: 66px;
}
@media (max-width: 1600px) {
  .home__offer {
    margin-left: 0;
    margin-bottom: 54px;
    padding: 15px 40px;
  }
}
@media (max-width: 992px) {
  .home__offer {
    margin-bottom: 20px;
    padding: 15px 20px;
  }
}
@media (max-width: 576px) {
  .home__offer {
    padding: 10px 20px;
  }
}
.home__text-wrap {
  height: 286px;
  max-width: 700px;
  position: relative;
  margin-left: 96px;
}
@media (max-width: 1600px) {
  .home__text-wrap {
    max-width: 522px;
    margin-left: 50px;
  }
}
@media screen and (max-width: 1440px) {
  .home__text-wrap {
    height: 208px;
  }
}
@media (max-width: 992px) {
  .home__text-wrap {
    max-width: 460px;
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .home__text-wrap {
    max-width: 388px;
    height: auto;
  }
}
.home__text-wrap--right {
  max-width: 370px !important;
}
@media (max-width: 992px) {
  .home__text-wrap--right {
    max-width: 460px !important;
  }
}
@media (max-width: 576px) {
  .home__text-wrap--right {
    max-width: 388px !important;
  }
}
.home__text {
  border-radius: var(--bradius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: var(--burgundy);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: var(--grey-op);
  width: 100%;
  transition: all 500ms ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1600px) {
  .home__text {
    padding: 20px;
  }
}
@media (max-width: 1250px) {
  .home__text {
    position: static;
  }
}
@media (max-width: 576px) {
  .home__text {
    padding: 15px;
  }
}
.home__text i {
  margin-left: auto;
}
.home__text--hidden {
  opacity: 0;
  animation: secondAnim 15s ease 0s infinite normal forwards;
}
@media (max-width: 576px) {
  .home__text--hidden {
    display: none;
  }
}
@media screen and (max-width: 1250px) {
  .home__right {
    display: none;
  }
}
@media (max-width: 576px) {
  .home__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.home__right-offer {
  border-radius: var(--bradius);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: var(--grey-op);
  padding: 15px;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 150px;
  margin-right: 198px;
}
@media (max-width: 1600px) {
  .home__right-offer {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1440px) {
  .home__right-offer {
    font-size: 34px;
    margin-right: 195px;
    margin-top: 117px;
  }
}
@media (max-width: 576px) {
  .home__right-offer {
    margin-right: 0;
    margin-top: 0;
    padding: 10px;
    margin-bottom: 5px;
    font-size: 27px;
  }
}
.home__right-text {
  max-width: 370px;
  margin-right: 125px;
  margin-left: 0;
}
@media (max-width: 1600px) {
  .home__right-text {
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .home__right-text {
    max-width: 388px;
  }
}
.home__right-text--anim {
  animation: firstAnim 15s ease 0s infinite normal forwards;
}
.home__img {
  position: absolute;
  bottom: 0;
  left: 53%;
  transform: translateX(-50%);
  height: 950px;
  z-index: 1;
}
@media (max-width: 1600px) {
  .home__img {
    height: 800px;
  }
}
@media screen and (max-width: 1440px) {
  .home__img {
    height: 725px;
  }
}
@media screen and (max-width: 1250px) {
  .home__img {
    left: auto;
    right: 80px;
    transform: none;
  }
}
@media (max-width: 992px) {
  .home__img {
    right: -80px;
    height: 770px;
  }
}
@media (max-width: 576px) {
  .home__img {
    height: 500px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}
.home__img img {
  height: 100%;
}
.home__house {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 950px;
  z-index: 0;
}
@media (max-width: 1600px) {
  .home__house {
    height: 712px;
  }
}
@media (max-width: 992px) {
  .home__house {
    display: none;
  }
}
@media (max-width: 576px) {
  .home__house {
    display: block;
    height: 500px;
    right: -170px;
  }
}
.home__house img {
  height: 100%;
}
.home__whatsapp {
  position: fixed;
  bottom: 60px;
  right: 50px;
  transition: 0.3s ease;
  max-width: 90px;
  z-index: 99;
  display: flex;
  align-items: center;
}
.home__whatsapp:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  .home__whatsapp {
    max-width: 85px;
    right: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .home__whatsapp {
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 576px) {
  .home__whatsapp {
    right: 10px;
    bottom: 10px;
    max-width: 70px;
  }
}
.home__whatsapp img {
  width: 100%;
}
.home__bg--mob {
  display: none;
  position: absolute;
}
@media (max-width: 992px) {
  .home__bg--mob {
    display: block;
    z-index: 0;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 576px) {
  .home__bg--mob {
    display: none;
  }
}

.about__body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .about__body {
    gap: 20px;
  }
}
.about__item {
  grid-column: 4 span;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .about__item {
    row-gap: 15px;
  }
}
@media (max-width: 992px) {
  .about__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 541px) {
  .about__item {
    grid-column: 12 span;
  }
}
@media (max-width: 992px) {
  .about__item--center {
    display: none;
  }
}
@media screen and (max-width: 541px) {
  .about__offer {
    text-align: center;
  }
}
.about__img {
  background: white;
  padding: 26px 26px 106px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1440px) {
  .about__img {
    padding: 20px 20px 80px;
  }
}
@media screen and (max-width: 541px) {
  .about__img {
    padding: 12px 12px 60px;
  }
}
@media (max-width: 992px) {
  .about__img--right {
    display: none;
  }
}
.about__img span {
  font-family: "Great Vibes", serif;
  color: var(--burgundy);
  display: inline-block;
  font-size: 32px;
  line-height: 40px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 541px) {
  .about__img span {
    bottom: 8px;
  }
}
.about__img-wrap {
  height: 295px;
}
@media screen and (max-width: 1440px) {
  .about__img-wrap {
    height: 220px;
  }
}
@media screen and (max-width: 541px) {
  .about__img-wrap {
    height: 186px;
  }
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__desc {
  padding: 20px;
  border-radius: var(--bradius);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  height: 100%;
}
@media screen and (max-width: 541px) {
  .about__desc {
    padding: 15px;
  }
}
.about__desc--sm {
  display: none;
}
@media screen and (max-width: 541px) {
  .about__desc--sm {
    display: block;
  }
}
@media screen and (max-width: 541px) {
  .about__desc--sm-dn {
    display: none !important;
  }
}
.about__img--mob {
  display: none;
}
@media (max-width: 992px) {
  .about__img--mob {
    display: block;
  }
}
.about__desc--mob {
  display: none;
}
@media (max-width: 992px) {
  .about__desc--mob {
    display: block;
  }
}
.anons__body {
  background-image: url("../img/anons.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1440px) {
  .anons__body {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .anons__body {
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .anons__body {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 541px) {
  .anons__body {
    padding: 20px;
  }
}
.anons__body::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 6, 45, 0.4);
}
.anons__left {
  position: relative;
  z-index: 1;
  max-width: 790px;
}
@media screen and (max-width: 1440px) {
  .anons__left {
    max-width: 580px;
  }
}
@media screen and (max-width: 768px) {
  .anons__left {
    max-width: 314px;
    min-width: 0;
  }
}
@media (max-width: 640px) {
  .anons__left {
    margin-bottom: 60px;
    max-width: 100%;
  }
}
.anons__offer {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .anons__offer {
    font-size: 46px;
    line-height: 48px;
    word-wrap: break-word;
    max-width: 250px;
  }
}
@media (max-width: 640px) {
  .anons__offer {
    max-width: 100%;
  }
}
@media screen and (max-width: 541px) {
  .anons__offer {
    font-size: 32px;
    line-height: 33px;
  }
}
.anons__date {
  position: relative;
  z-index: 1;
  text-align: right;
}
@media (max-width: 640px) {
  .anons__date {
    align-self: flex-end;
  }
}

.achives__circle {
  border-radius: 100%;
  opacity: 0.7;
}
.achives__circle:nth-child(1) {
  width: 1096px;
  height: 1096px;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, #D4B6F7 0%, rgba(235, 234, 235, 0.01) 100%);
  left: -405px;
  top: -497px;
  border-radius: 100%;
}
@media screen and (max-width: 1440px) {
  .achives__circle:nth-child(1) {
    left: -417px;
  }
}
@media (max-width: 700px) {
  .achives__circle:nth-child(1) {
    width: 1000px;
    height: 1000px;
    top: -540px;
    left: -491px;
  }
}
.achives__circle:nth-child(2) {
  width: 1096px;
  height: 1096px;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, #F989A7 0%, rgba(235, 234, 235, 0.01) 100%);
  right: -61px;
  top: -697px;
}
@media screen and (max-width: 1440px) {
  .achives__circle:nth-child(2) {
    right: -501px;
  }
}
@media (max-width: 1100px) {
  .achives__circle:nth-child(2) {
    right: -378px;
  }
}
@media (max-width: 700px) {
  .achives__circle:nth-child(2) {
    width: 1000px;
    height: 1000px;
    top: -587px;
    right: -682px;
  }
}
.achives__circle:nth-child(3) {
  width: 1096px;
  height: 1096px;
  background: radial-gradient(50% 50% at 50% 50%, #F989A7 0%, rgba(235, 234, 235, 0.01) 100%);
  left: -604px;
  top: 0px;
  position: absolute;
  border-radius: 100%;
}
@media (max-width: 1100px) {
  .achives__circle:nth-child(3) {
    left: -524px;
  }
}
@media (max-width: 700px) {
  .achives__circle:nth-child(3) {
    width: 1000px;
    height: 1000px;
    top: -115px;
    left: -714px;
  }
}
.achives__circle:nth-child(4) {
  width: 1096px;
  height: 1096px;
  border-radius: 100%;
  top: -188px;
  right: -172px;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, #D4B6F7 0%, rgba(235, 234, 235, 0.01) 100%);
  opacity: 0.5;
}
@media screen and (max-width: 1440px) {
  .achives__circle:nth-child(4) {
    top: -44px;
    right: -628px;
  }
}
@media (max-width: 1100px) {
  .achives__circle:nth-child(4) {
    top: 143px;
    right: -545px;
  }
}
@media (max-width: 700px) {
  .achives__circle:nth-child(4) {
    width: 1000px;
    height: 1000px;
    bottom: -582px;
    left: -314px;
  }
}
.achives__body {
  position: relative;
  overflow: hidden;
  border-radius: var(--bradius);
  padding: 46px 0;
}
@media screen and (max-width: 1440px) {
  .achives__body {
    padding: 22px 0 30px;
  }
}
@media (max-width: 1100px) {
  .achives__body {
    padding: 28px 0 29px;
  }
}
@media (max-width: 700px) {
  .achives__body {
    padding: 25px 0 25px;
  }
}
.achives__img {
  position: absolute;
  left: 47%;
  transform: translateX(-50%);
  top: 60px;
  z-index: 2;
  max-width: 651px;
}
@media screen and (max-width: 1440px) {
  .achives__img {
    max-width: 496px;
    min-width: 496px;
    top: 26px;
  }
}
@media (max-width: 1100px) {
  .achives__img {
    top: 117px;
  }
}
@media (max-width: 700px) {
  .achives__img {
    display: none;
  }
}
.achives__img img {
  max-width: 100%;
}
.achives__img--mob {
  display: none;
}
@media (max-width: 700px) {
  .achives__img--mob {
    max-width: 322px;
    min-width: 322px;
    top: 136px;
    display: block;
  }
}
.achives__content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 335px;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .achives__content {
    gap: 314px;
    margin-left: -45px;
  }
}
@media (max-width: 1100px) {
  .achives__content {
    align-items: flex-start;
    gap: 0;
  }
}
@media (max-width: 840px) {
  .achives__content {
    margin-left: -30px;
  }
}
@media (max-width: 768px) {
  .achives__content {
    margin: 0 15px;
  }
}
@media (max-width: 700px) {
  .achives__content {
    margin: 0 10px;
    -moz-column-gap: 9px;
         column-gap: 9px;
  }
}
.achives__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 45px;
  row-gap: 20px;
}
@media screen and (max-width: 1440px) {
  .achives__left {
    row-gap: 27px;
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .achives__left {
    margin-top: 0;
    row-gap: 10px;
  }
}
@media (max-width: 700px) {
  .achives__left {
    row-gap: 9px;
    margin-top: 11px;
  }
}
.achives__left span {
  display: block;
}
.achives__left .achives__item:first-child {
  margin-bottom: 189px;
  margin-right: -30px;
}
@media screen and (max-width: 1440px) {
  .achives__left .achives__item:first-child {
    margin-bottom: 161px;
    margin-right: 0px;
  }
}
@media (max-width: 1100px) {
  .achives__left .achives__item:first-child {
    margin-bottom: 268px;
  }
}
@media (max-width: 700px) {
  .achives__left .achives__item:first-child {
    margin-bottom: 226px;
    max-width: 140px;
  }
}
.achives__left .achives__item:first-child::after {
  width: 63px;
  right: -20px;
  bottom: -32.5px;
  transform: rotate(95.87deg);
}
@media screen and (max-width: 1440px) {
  .achives__left .achives__item:first-child::after {
    width: 87px;
    bottom: -25px;
    right: -72px;
    transform: rotate(38deg);
  }
}
@media (max-width: 1100px) {
  .achives__left .achives__item:first-child::after {
    width: 67px;
    bottom: -31px;
    right: -7px;
    transform: rotate(115deg);
  }
}
@media screen and (max-width: 768px) {
  .achives__left .achives__item:first-child::after {
    width: 67px;
    bottom: -31px;
    right: 0px;
    transform: rotate(125deg);
  }
}
@media (max-width: 700px) {
  .achives__left .achives__item:first-child::after {
    width: 30px;
    bottom: -13px;
    right: 44px;
    transform: rotate(-125deg);
  }
}
.achives__left .achives__item:nth-child(2) {
  margin-left: -95px;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .achives__left .achives__item:nth-child(2) {
    margin-left: -14px;
  }
}
@media (max-width: 1100px) {
  .achives__left .achives__item:nth-child(2) {
    margin-left: 1px;
  }
}
.achives__left .achives__item:nth-child(2)::after {
  width: 105px;
  right: -93px;
  bottom: 50px;
  transform: rotate(-40deg);
}
@media screen and (max-width: 1440px) {
  .achives__left .achives__item:nth-child(2)::after {
    width: 70px;
    right: -70px;
    bottom: auto;
    top: 10px;
    transform: rotate(5deg);
  }
}
@media (max-width: 1100px) {
  .achives__left .achives__item:nth-child(2)::after {
    width: 50px;
    right: -10px;
    bottom: auto;
    top: -25px;
    transform: rotate(-95deg);
  }
}
@media screen and (max-width: 768px) {
  .achives__left .achives__item:nth-child(2)::after {
    width: 50px;
    right: 5px;
    bottom: auto;
    top: -25px;
    transform: rotate(-95deg);
  }
}
@media (max-width: 700px) {
  .achives__left .achives__item:nth-child(2)::after {
    width: 100px;
    left: -20px;
    right: auto;
    top: -47px;
    transform: rotate(113deg);
  }
}
@media screen and (max-width: 541px) {
  .achives__left .achives__item:nth-child(2)::after {
    width: 97px;
    left: -15px;
    right: auto;
    top: -47px;
    transform: rotate(115deg);
  }
}
.achives__left .achives__item:nth-child(3) {
  margin-left: -54px;
}
@media screen and (max-width: 1440px) {
  .achives__left .achives__item:nth-child(3) {
    margin-left: 30px;
  }
}
@media (max-width: 1100px) {
  .achives__left .achives__item:nth-child(3) {
    margin-left: 19px;
  }
}
@media (max-width: 700px) {
  .achives__left .achives__item:nth-child(3) {
    margin-left: 0px;
  }
}
.achives__left .achives__item:nth-child(3)::after {
  width: 31px;
  right: -30px;
  top: 20px;
  transform: rotate(20deg);
}
@media screen and (max-width: 1440px) {
  .achives__left .achives__item:nth-child(3)::after {
    width: 38px;
    right: -28px;
    top: -13px;
    transform: rotate(-50deg);
  }
}
@media (max-width: 1100px) {
  .achives__left .achives__item:nth-child(3)::after {
    width: 100px;
    right: -10px;
    top: -41px;
    transform: rotate(-128deg);
  }
}
@media screen and (max-width: 768px) {
  .achives__left .achives__item:nth-child(3)::after {
    width: 100px;
    right: -5px;
    top: -38px;
    transform: rotate(-133deg);
  }
}
@media (max-width: 700px) {
  .achives__left .achives__item:nth-child(3)::after {
    width: 145px;
    right: auto;
    left: -30px;
    top: -65px;
    transform: rotate(115deg);
  }
}
@media screen and (max-width: 541px) {
  .achives__left .achives__item:nth-child(3)::after {
    width: 145px;
    right: auto;
    left: -25px;
    top: -67px;
    transform: rotate(115deg);
  }
}
.achives__item {
  text-align: center;
  background: var(--grey-op);
  border: 1px solid var(--light-2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 10px;
  padding: 10px 30px;
  max-width: 303px;
  min-width: 253px;
  position: relative;
}
.achives__item span, .achives__item div {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .achives__item {
    min-width: 210px;
    max-width: 247px;
  }
}
@media (max-width: 1100px) {
  .achives__item {
    min-width: 143px;
  }
}
@media (max-width: 700px) {
  .achives__item {
    padding: 10px;
    min-width: 150px;
    max-width: 152px;
    font-size: 17px;
    line-height: 19.92px;
  }
}
.achives__item::after {
  content: "";
  height: 1px;
  background: var(--light-1);
  position: absolute;
  z-index: 0;
}
@media (max-width: 750px) {
  .achives__item::after {
    display: none;
  }
}
@media (max-width: 700px) {
  .achives__item::after {
    display: block;
  }
}
.achives__item .achives__offer {
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .achives__item .achives__offer {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .achives__item .achives__offer {
    font-size: 46px;
    line-height: 48px;
  }
}
@media (max-width: 700px) {
  .achives__item .achives__offer {
    font-size: 34px;
    line-height: 35px;
  }
}
.achives__item--mob {
  display: none;
}
@media (max-width: 1100px) {
  .achives__item--mob {
    display: block;
    margin: 0 46.5px 68px 28px;
    align-self: flex-end;
  }
  .achives__item--mob::after {
    width: 180px;
    left: -5px;
    top: -45px;
    transform: rotate(-30deg);
  }
}
@media screen and (max-width: 1100px) and (max-width: 768px) {
  .achives__item--mob::after {
    width: 180px;
    left: -5px;
    top: -49px;
    transform: rotate(-32deg);
  }
}
@media (max-width: 1100px) {
  .achives__item--mob span {
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .achives__item--mob {
    display: none;
  }
}
@media (max-width: 1100px) {
  .achives__item--mob-dn {
    display: none;
  }
}
@media (max-width: 700px) {
  .achives__item--mob-dn {
    display: block;
  }
}
@media (max-width: 700px) {
  .achives__item--sm-dn {
    display: none;
  }
}
.achives__sm {
  display: none;
}
@media (max-width: 700px) {
  .achives__sm {
    display: flex;
    -moz-column-gap: 9px;
         column-gap: 9px;
  }
  .achives__sm .achives__item {
    margin: 0 !important;
    min-width: 100px;
  }
}
@media (max-width: 700px) and (max-width: 700px) {
  .achives__sm .achives__item:nth-child(1)::after {
    width: 40px;
    left: -2px;
    top: -20px;
    transform: rotate(-65deg);
  }
}
@media screen and (max-width: 700px) and (max-width: 541px) {
  .achives__sm .achives__item:nth-child(1)::after {
    width: 40px;
    left: 3px;
    top: -17px;
    transform: rotate(-55deg);
  }
}
@media (max-width: 700px) {
  .achives__sm .achives__item:nth-child(2) {
    z-index: 2;
  }
}
@media (max-width: 700px) and (max-width: 700px) {
  .achives__sm .achives__item:nth-child(2)::after {
    width: 80px !important;
    left: -49px !important;
    top: -36px !important;
    transform: rotate(65deg) !important;
  }
}
.achives__offer {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .achives__offer {
    margin-bottom: 0;
  }
}
.achives__offer span:nth-child(2) {
  margin-left: 30px;
}
@media (max-width: 1100px) {
  .achives__offer {
    display: none;
  }
}
.achives__offer--mob {
  display: none;
}
@media (max-width: 1100px) {
  .achives__offer--mob {
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .achives__offer--mob {
    font-size: 46px;
    line-height: 48px;
  }
}
@media (max-width: 700px) {
  .achives__offer--mob {
    font-size: 32px;
    line-height: 33px;
    margin-bottom: 19px;
  }
}
.achives__right {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-end;
}
@media screen and (max-width: 1440px) {
  .achives__right {
    row-gap: 16px;
  }
}
@media (max-width: 1100px) {
  .achives__right {
    row-gap: 10px;
  }
}
@media (max-width: 700px) {
  .achives__right {
    row-gap: 9px;
    align-items: flex-end;
  }
}
.achives__right .achives__item:nth-child(2) {
  margin-right: -27px;
}
@media screen and (max-width: 1440px) {
  .achives__right .achives__item:nth-child(2) {
    margin-right: -41px;
  }
}
@media (max-width: 1100px) {
  .achives__right .achives__item:nth-child(2) {
    margin-right: 0;
  }
}
@media (max-width: 1100px) {
  .achives__right .achives__item:nth-child(2) {
    margin-bottom: 388px;
    margin-top: 24px;
  }
}
@media (max-width: 700px) {
  .achives__right .achives__item:nth-child(2) {
    margin-bottom: 349px;
    margin-top: 0;
  }
}
.achives__right .achives__item:nth-child(2)::after {
  width: 42px;
  left: -28px;
  bottom: -15px;
  transform: rotate(-70deg);
}
@media screen and (max-width: 1440px) {
  .achives__right .achives__item:nth-child(2)::after {
    width: 78px;
    left: -71px;
    bottom: -15px;
    transform: rotate(-25deg);
  }
}
@media (max-width: 1100px) {
  .achives__right .achives__item:nth-child(2)::after {
    width: 158px;
    left: auto;
    right: -15px;
    bottom: -59px;
    transform: rotate(-48deg);
  }
}
@media screen and (max-width: 768px) {
  .achives__right .achives__item:nth-child(2)::after {
    width: 170px;
    right: -15px;
    bottom: -62px;
    transform: rotate(-45deg);
  }
}
@media (max-width: 700px) {
  .achives__right .achives__item:nth-child(2)::after {
    width: 130px;
    right: -35px;
    bottom: -63px;
    transform: rotate(-72deg);
  }
}
.achives__right .achives__item:nth-child(3) {
  margin-right: -94px;
}
@media screen and (max-width: 1440px) {
  .achives__right .achives__item:nth-child(3) {
    margin-right: -71px;
  }
}
.achives__right .achives__item:nth-child(3)::after {
  width: 113px;
  left: -108px;
  top: 40px;
  transform: rotate(-25deg);
}
@media screen and (max-width: 1440px) {
  .achives__right .achives__item:nth-child(3)::after {
    width: 115px;
    left: -115px;
    top: 25px;
    transform: rotate(-16deg);
  }
}
.achives__right .achives__item:nth-child(5) {
  margin-right: -74px;
}
@media screen and (max-width: 1440px) {
  .achives__right .achives__item:nth-child(5) {
    margin-right: -35px;
  }
}
@media (max-width: 1100px) {
  .achives__right .achives__item:nth-child(5) {
    margin-right: 0;
  }
}
.achives__right .achives__item:nth-child(5)::after {
  width: 90px;
  left: -70px;
  top: -35px;
  transform: rotate(55deg);
}
@media (max-width: 1100px) {
  .achives__right .achives__item:nth-child(5)::after {
    width: 50px;
    left: -15px;
    top: -25px;
    transform: rotate(95deg);
  }
}
@media screen and (max-width: 768px) {
  .achives__right .achives__item:nth-child(5)::after {
    width: 50px;
    left: -28px;
    top: -25px;
    transform: rotate(70deg);
  }
}
@media (max-width: 700px) {
  .achives__right .achives__item:nth-child(5)::after {
    width: 200px;
    left: auto;
    right: -45px;
    top: -91px;
    transform: rotate(65deg);
  }
}
@media screen and (max-width: 541px) {
  .achives__right .achives__item:nth-child(5)::after {
    width: 195px;
    left: auto;
    right: -47px;
    top: -90px;
    transform: rotate(67deg);
  }
}
@media screen and (max-width: 1440px) {
  .achives__right .achives__item:nth-child(6) {
    margin-right: 37px;
  }
}
@media (max-width: 1100px) {
  .achives__right .achives__item:nth-child(6) {
    margin-right: 30px;
    min-width: 180px;
  }
}
@media (max-width: 700px) {
  .achives__right .achives__item:nth-child(6) {
    margin-right: 0;
  }
}
.achives__right .achives__item:nth-child(6)::after {
  width: 107px;
  left: -105px;
  top: 23px;
  transform: rotate(-16deg);
}
@media screen and (max-width: 1440px) {
  .achives__right .achives__item:nth-child(6)::after {
    width: 90px;
    left: -90px;
    top: 10px;
    transform: rotate(-5deg);
  }
}
@media (max-width: 1100px) {
  .achives__right .achives__item:nth-child(6)::after {
    width: 150px;
    left: -70px;
    top: -75px;
    transform: rotate(88deg);
  }
}
@media screen and (max-width: 768px) {
  .achives__right .achives__item:nth-child(6)::after {
    width: 150px;
    left: -77px;
    top: -75px;
    transform: rotate(83deg);
  }
}
@media (max-width: 700px) {
  .achives__right .achives__item:nth-child(6)::after {
    width: 200px;
    left: auto;
    right: -45px;
    top: -91px;
    transform: rotate(65deg);
  }
}
@media screen and (max-width: 541px) {
  .achives__right .achives__item:nth-child(6)::after {
    width: 195px;
    left: auto;
    right: -47px;
    top: -90px;
    transform: rotate(67deg);
  }
}

.education {
  background-image: url("../img/education.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 55px 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .education {
    padding: 50px 0;
  }
}
@media (max-width: 992px) {
  .education {
    padding: 45px 0;
  }
}
@media screen and (max-width: 541px) {
  .education {
    padding: 38px 0;
  }
}
.education::before, .education::after {
  content: "";
  position: absolute;
  left: -850px;
  top: 50%;
  transform: translateY(-50%);
  width: 1321px;
  height: 1321px;
  background: radial-gradient(50% 50% at 50% 50%, #64062D 0%, rgba(235, 234, 235, 0) 100%);
}
@media (max-width: 992px) {
  .education::before, .education::after {
    width: 1250px;
    height: 1250px;
    left: -950px;
  }
}
.education::after {
  left: auto;
  right: -850px;
}
@media (max-width: 992px) {
  .education::after {
    right: -950px;
  }
}
.education__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 992px) {
  .education__body {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0 34px;
  }
}
@media screen and (max-width: 541px) {
  .education__body {
    padding: 0;
  }
}
.education__left {
  max-width: 620px;
  text-align: right;
}
@media screen and (max-width: 1440px) {
  .education__left {
    max-width: 500px;
  }
}
@media (max-width: 992px) {
  .education__left {
    text-align: left;
    max-width: 100%;
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 541px) {
  .education__left {
    margin-bottom: 120px;
  }
}
.education__offer {
  margin-bottom: 30px;
  background: var(--grey-op);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: inline-block;
  padding: 15px;
  border-radius: var(--bradius);
}
@media screen and (max-width: 1440px) {
  .education__offer {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .education__offer {
    font-size: 46px;
    line-height: 48px;
  }
}
@media screen and (max-width: 541px) {
  .education__offer {
    font-size: 32px;
    line-height: 33px;
    padding: 10px;
    margin-bottom: 10px;
  }
}
.education__desc {
  background: var(--blue-op);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: var(--bradius);
}
@media screen and (max-width: 541px) {
  .education__desc {
    padding: 15px;
  }
}
.education__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 620px;
}
@media screen and (max-width: 1440px) {
  .education__items {
    row-gap: 15px;
    max-width: 500px;
  }
}
@media (max-width: 992px) {
  .education__items {
    text-align: right;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 541px) {
  .education__items {
    text-align: left;
  }
}
.education__item {
  padding: 15px;
  background: var(--grey-op);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: var(--bradius);
}
@media screen and (max-width: 541px) {
  .education__item {
    padding: 10px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--blue);
  color: white;
  padding: 25px 0;
  gap: 130px;
}
@media screen and (max-width: 1440px) {
  .marquee {
    padding: 15px 0;
  }
}
@media screen and (max-width: 541px) {
  .marquee {
    padding: 10px 0;
    gap: 100px;
  }
}
.marquee h3 {
  text-transform: uppercase;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .marquee h3 {
    font-size: 24px;
    line-height: 25px;
  }
}
@media screen and (max-width: 541px) {
  .marquee h3 {
    font-size: 20px;
    line-height: 21px;
    display: flex;
    -moz-column-gap: 15px;
         column-gap: 15px;
    white-space: wrap;
  }
  .marquee h3 span {
    width: 100%;
    display: block;
  }
  .marquee h3 span:nth-child(1) {
    max-width: 76px;
  }
  .marquee h3 span:nth-child(2) {
    width: 345px;
  }
}

.recomend__body {
  position: relative;
}
.recomend__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
}
@media screen and (max-width: 1440px) {
  .recomend__items {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 992px) {
  .recomend__items {
    display: none;
  }
}
@media screen and (max-width: 541px) {
  .recomend__items {
    display: grid;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.recomend__item {
  grid-column: 4 span;
  background: var(--extra-light-blue);
  position: relative;
  overflow: hidden;
  border-radius: var(--bradius);
  padding: 5px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}
@media screen and (max-width: 541px) {
  .recomend__item {
    grid-column: 12 span;
  }
}
.recomend__item:hover {
  background: var(--light-1);
}
.recomend__item:hover .recomend__item-img img {
  transform: scale(1.1);
}
.recomend__item-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.recomend__item-img {
  min-height: 190px;
  max-height: 190px;
  height: 190px;
  border-radius: var(--bradius);
  overflow: hidden;
}
@media screen and (max-width: 541px) {
  .recomend__item-img {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
  }
}
.recomend__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.recomend__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10px 15px;
}
.recomend__item-offer {
  text-align: center;
  color: var(--burgundy);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .recomend__item-offer {
    font-size: 24px;
    line-height: 25px;
  }
}
@media screen and (max-width: 541px) {
  .recomend__item-offer {
    font-size: 20px;
    line-height: 21px;
  }
}
.recomend__item-desc {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .recomend__item-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 541px) {
  .recomend__item-desc {
    overflow: visible;
    display: inline-block;
    text-overflow: initial;
    min-height: 80px;
  }
}
.recomend__item-btn {
  position: relative;
  z-index: 1;
}
.recomend__slider {
  overflow-x: hidden;
  display: none;
  position: relative;
}
@media (max-width: 992px) {
  .recomend__slider {
    display: block;
  }
}
@media screen and (max-width: 541px) {
  .recomend__slider {
    display: none;
  }
}
.recomend .swiper-pagination {
  display: none;
}
@media (max-width: 992px) {
  .recomend .swiper-pagination {
    display: flex;
  }
}
@media screen and (max-width: 541px) {
  .recomend .swiper-pagination {
    display: none;
  }
}

.news__slider {
  overflow: hidden;
  margin: 0 80px;
}
@media screen and (max-width: 1440px) {
  .news__slider {
    margin: 0 64px;
  }
}
@media (max-width: 992px) {
  .news__slider {
    margin: 0;
  }
}
.news__slider .swiper-slide {
  height: auto !important;
}
.news__slide {
  background: var(--extra-light-blue);
  border-radius: var(--bradius);
  padding: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: 0.3s ease;
}
.news__slide:hover {
  background: var(--light-1);
}
.news__slide-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.news__slide-img {
  border-radius: 1px;
  overflow: hidden;
  min-height: 170px;
  height: 170px;
}
@media screen and (max-width: 541px) {
  .news__slide-img {
    min-height: 120px;
    height: 120px;
  }
}
.news__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__slide-content {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news__slide-top {
  margin-bottom: 10px;
}
.news__slide-date {
  margin-bottom: 10px;
  color: var(--grey-1);
}
.news__slide-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news__slide-btn {
  position: relative;
  z-index: 1;
}

.brands__offer {
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .brands__offer {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 541px) {
  .brands__offer {
    margin-bottom: 10px;
    text-align: center;
  }
}
.brands__desc {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 20px;
  grid-column: 3 span;
  border-radius: var(--bradius);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.7);
}
@media (max-width: 1150px) {
  .brands__desc {
    grid-column: 4 span;
  }
}
@media (max-width: 840px) {
  .brands__desc {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 541px) {
  .brands__desc {
    padding: 15px;
    grid-column: 12 span;
  }
}
.brands__desc--content {
  padding: 20px 20px 40px;
}
@media (max-width: 1600px) {
  .brands__desc--content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 1440px) {
  .brands__desc--content {
    padding: 20px;
  }
  .brands__desc--content p {
    overflow: visible;
    text-overflow: inherit;
    display: block;
  }
}
@media screen and (max-width: 541px) {
  .brands__desc--content {
    padding: 15px;
  }
}
.brands__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .brands__items {
    margin-top: 25px;
  }
}
@media screen and (max-width: 541px) {
  .brands__items {
    gap: 20px;
  }
}
.brands__item {
  grid-column: 3 span;
  text-align: center;
  background: white;
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 70px 30px;
  transition: 0.5s ease;
  box-shadow: 0 0 0 5px white;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .brands__item {
    padding: 53px 20px;
  }
}
@media (max-width: 1150px) {
  .brands__item {
    grid-column: 4 span;
  }
}
@media (max-width: 840px) {
  .brands__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 541px) {
  .brands__item {
    border-color: var(--extra-light-blue);
    grid-column: 12 span;
    padding: 10px 15px;
  }
}
.brands__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  background: white;
  opacity: 0;
  transition: 0.3s ease;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.brands__item:hover {
  border-color: white;
  padding: 15px 30px;
	height:100%;overflow:hidden;
}
.brands__item:hover::after {
  opacity: 1;
  width: 110%;
  height: 114%;
}
.brands__item:hover .brands__item-img {
  max-width: 267px;
}
@media screen and (max-width: 1440px) {
  .brands__item:hover .brands__item-img {
    max-width: 208px;
  }
}
.brands__item:hover .brands__item-img img {
  filter: saturate(100%);
}
.brands__item:hover .brands__item-offer {
  color: var(--blue);
}
.brands__item:hover .brands__item-desc {
  height: auto;
  overflow: visible;
  opacity: 1;
}
@media screen and (max-width: 541px) {
  .brands__item:hover .brands__item-desc {
    display: none;
  }
}
.brands__item-img {
  max-width: 222px;
  margin: 0 auto;
  margin-bottom: 10px;
  transition: 0.5s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .brands__item-img {
    margin-bottom: 5px;
    max-width: 178px;
  }
}
@media screen and (max-width: 541px) {
  .brands__item-img {
    margin-bottom: 0;
    max-width: 118px;
  }
}
.brands__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease;
  filter: saturate(0%);
}
.brands__item-img--dev {
  max-width: 60px;
  display: flex;
  align-items: center;
}
.brands__item-img--dev img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.brands__item-offer {
  color: var(--grey-1);
  overflow: hidden;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .brands__item-offer {
    min-height: 52px;
  }
}
@media screen and (max-width: 541px) {
  .brands__item-offer {
    min-height: 42px;
  }
}
.brands__item-offer span {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.brands__item-desc {
  margin-top: 10px;
  opacity: 0;
  transition: 0.7s ease;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .brands__item-desc {
    margin-top: 5px;
  }
}
.brands__course {
  grid-column: 3 span;
  color: var(--grey-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 1150px) {
  .brands__course {
    grid-column: 4 span;
  }
}
@media (max-width: 840px) {
  .brands__course {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 541px) {
  .brands__course {
    grid-column: 12 span;
    padding: 10px;
  }
}
.brands__course--first {
  background: var(--extra-light-blue);
  box-shadow: 0 0 0 5px var(--extra-light-blue);
}
.brands__course--second {
  background: var(--light-pink);
  box-shadow: 0 0 0 5px var(--light-pink);
}
.brands__course .brands__item-offer {
  min-height: 0;
  align-items: flex-start;
}
.brands__course-img {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 541px) {
  .brands__course-img {
    max-width: 40px;
    margin-bottom: 0;
  }
  .brands__course-img img {
    max-width: 100%;
  }
}
.brands__course-sub {
  margin-bottom: 10px;
}
@media screen and (max-width: 541px) {
  .brands__course-sub {
    margin-bottom: 0;
  }
}
.brands__btn {
  display: none;
}
@media screen and (max-width: 541px) {
  .brands__btn {
    display: block;
    grid-column: 12 span;
  }
}

.who__circle:nth-child(1) {
  width: 764px;
  height: 764px;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, #D4B6F7 0%, rgba(235, 234, 235, 0.01) 100%);
  left: -332px;
  top: -388px;
}
@media screen and (max-width: 1440px) {
  .who__circle:nth-child(1) {
    top: -579px;
    left: -156px;
  }
}
@media (max-width: 750px) {
  .who__circle:nth-child(1) {
    width: 987px;
    height: 987px;
    top: -112px;
    left: -513px;
  }
}
.who__circle:nth-child(2) {
  width: 1026px;
  height: 1026px;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, #F989A7 0%, rgba(235, 234, 235, 0.01) 100%);
  right: 0;
  top: -547px;
}
@media screen and (max-width: 1440px) {
  .who__circle:nth-child(2) {
    right: -442px;
  }
}
@media screen and (max-width: 768px) {
  .who__circle:nth-child(2) {
    top: -713px;
    right: -534px;
  }
}
@media (max-width: 750px) {
  .who__circle:nth-child(2) {
    width: 717px;
    height: 717px;
    top: -431px;
    left: -203px;
  }
}
.who__circle:nth-child(3) {
  width: 1118px;
  height: 1118px;
  background: radial-gradient(50% 50% at 50% 50%, #F989A7 0%, rgba(235, 234, 235, 0.01) 100%);
  left: -435px;
  top: 64px;
  position: absolute;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .who__circle:nth-child(3) {
    top: -52px;
  }
}
@media (max-width: 750px) {
  .who__circle:nth-child(3) {
    width: 848px;
    height: 848px;
    top: 601px;
    left: -244px;
  }
}
.who__circle:nth-child(4) {
  width: 1277px;
  height: 1277px;
  border-radius: 100%;
  top: -158px;
  right: -259px;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, #D4B6F7 0%, rgba(235, 234, 235, 0.01) 100%);
}
@media screen and (max-width: 1440px) {
  .who__circle:nth-child(4) {
    width: 960px;
    height: 960px;
    top: 0;
    right: -382px;
  }
}
@media screen and (max-width: 768px) {
  .who__circle:nth-child(4) {
    top: -98px;
    right: -487px;
  }
}
@media (max-width: 750px) {
  .who__circle:nth-child(4) {
    width: 861px;
    height: 861px;
    right: -558px;
    top: 101px;
  }
}
.who__body {
  padding: 87px 0 85px;
  background: white;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 1440px) {
  .who__body {
    padding: 28px 45px;
  }
}
@media (max-width: 992px) {
  .who__body {
    padding: 40px 45px;
  }
}
@media (max-width: 750px) {
  .who__body {
    padding: 15px;
  }
}
.who__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 38%;
  z-index: 3;
  max-width: 487px;
}
@media screen and (max-width: 1440px) {
  .who__img {
    max-width: 363px;
    left: 41%;
  }
  .who__img img {
    max-width: 100%;
  }
}
@media (max-width: 1150px) {
  .who__img {
    left: 38%;
  }
}
@media (max-width: 1100px) {
  .who__img {
    left: 35%;
  }
}
@media (max-width: 1050px) {
  .who__img {
    left: 33%;
  }
}
@media (max-width: 992px) {
  .who__img {
    left: 27%;
  }
}
@media (max-width: 840px) {
  .who__img {
    left: 20%;
  }
}
@media (max-width: 750px) {
  .who__img {
    max-width: 309px;
    top: 93px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1440px) {
  .who__img {
    max-width: 363px;
    min-width: 309px;
  }
}
@media (max-width: 750px) {
  .who__img {
    max-width: 309px;
  }
}
@media (max-width: 375px) {
  .who__img {
    min-width: 250px;
  }
}
.who__content {
  display: flex;
  justify-content: center;
  -moz-column-gap: 363px;
       column-gap: 363px;
  align-items: flex-end;
  margin-left: -70px;
}
@media (max-width: 1550px) {
  .who__content {
    margin-left: 0;
  }
}
@media screen and (max-width: 1440px) {
  .who__content {
    -moz-column-gap: 236px;
         column-gap: 236px;
  }
}
@media (max-width: 992px) {
  .who__content {
    -moz-column-gap: 46px;
         column-gap: 46px;
    justify-content: space-between;
  }
}
@media (max-width: 750px) {
  .who__content {
    display: none;
  }
}
.who__left {
  position: relative;
  z-index: 4;
}
.who__offer {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-bottom: 30px;
  margin-right: 19px;
}
@media screen and (max-width: 1440px) {
  .who__offer {
    row-gap: 8px;
    margin-bottom: 20px;
    margin-right: 38px;
  }
}
@media (max-width: 992px) {
  .who__offer {
    display: none;
  }
}
.who__offer span:last-child {
  margin-right: 30px;
}
.who__offer--mob {
  display: none;
}
@media (max-width: 992px) {
  .who__offer--mob {
    display: block;
    position: relative;
    z-index: 4;
    margin-bottom: 50px;
    max-width: 412px;
  }
}
@media screen and (max-width: 768px) {
  .who__offer--mob {
    font-size: 46px;
    line-height: 48px;
  }
}
@media (max-width: 750px) {
  .who__offer--mob {
    margin: 0 auto;
    margin-bottom: 330px;
    text-align: center;
    font-size: 32px;
    line-height: 33px;
  }
}
.who__items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 15px;
}
@media (max-width: 992px) {
  .who__items {
    align-items: flex-start;
  }
}
.who__items--mob {
  display: none;
}
@media (max-width: 750px) {
  .who__items--mob {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
}
.who__item {
  display: flex;
  align-items: center;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--blue);
  background: rgba(255, 255, 255, 0.5);
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 15px 20px;
  display: inline-flex;
  border-radius: var(--bradius);
  text-align: center;
}
.who__item:nth-child(1) {
  margin-right: 60px;
}
@media screen and (max-width: 1440px) {
  .who__item:nth-child(1) {
    margin-right: 100px;
  }
}
.who__item:nth-child(3) {
  margin-right: 40px;
}
@media screen and (max-width: 1440px) {
  .who__item:nth-child(3) {
    margin-right: 80px;
  }
}
.who__item--mob {
  display: none;
}
@media (max-width: 992px) {
  .who__item {
    margin: 0 !important;
  }
  .who__item--mob {
    display: inline-flex;
  }
  .who__item--mob-dn {
    display: none;
  }
}
@media (max-width: 750px) {
  .who__item {
    padding: 10px;
    display: flex;
    width: 100%;
  }
}
@media screen and (max-width: 541px) {
  .who__item {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.who__right {
  position: relative;
  z-index: 4;
  margin-top: 2px;
}
.who__right .who__items {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .who__right .who__items {
    align-items: flex-end;
  }
}
.who__right .who__items .who__item {
  margin: 0;
}
.who__right .who__items .who__item:nth-child(1) {
  margin-left: 39px;
}
@media screen and (max-width: 1440px) {
  .who__right .who__items .who__item:nth-child(1) {
    margin-left: 20px;
  }
}
.who__right .who__items .who__item:nth-child(2) {
  margin-left: 74px;
}
@media screen and (max-width: 1440px) {
  .who__right .who__items .who__item:nth-child(2) {
    margin-left: 50px;
  }
}
.who__right .who__items .who__item:nth-child(3) {
  margin-left: 100px;
}
@media screen and (max-width: 1440px) {
  .who__right .who__items .who__item:nth-child(3) {
    margin-left: 60px;
  }
}

.articles__slider {
  overflow: hidden;
  margin: 0 80px;
}
@media screen and (max-width: 1440px) {
  .articles__slider {
    margin: 0 64px;
  }
}
@media (max-width: 992px) {
  .articles__slider {
    margin: 0;
  }
}
.articles__slider .swiper-slide {
  height: auto !important;
}
.articles__slide {
  background: var(--extra-light-blue);
  border-radius: var(--bradius);
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
}
.articles__slide:hover {
  background: var(--light-1);
}
@media screen and (max-width: 541px) {
  .articles__slide {
    padding: 10px;
  }
}
.articles__slide a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.articles__slide-top {
  margin-bottom: 10px;
}
@media screen and (max-width: 541px) {
  .articles__slide-top {
    margin-bottom: 5px;
  }
}
.articles__slide-sub {
  margin-bottom: 10px;
  color: var(--grey-1);
}
@media screen and (max-width: 541px) {
  .articles__slide-sub {
    margin-bottom: 5px;
  }
}
.articles__slide-offer {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.articles__slide-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.videos__slider {
  overflow: hidden;
  margin: 0 80px;
}
@media screen and (max-width: 1440px) {
  .videos__slider {
    margin: 0 64px;
  }
}
@media (max-width: 992px) {
  .videos__slider {
    margin: 0;
  }
}
.videos__slider .swiper-slide {
  height: auto !important;
}
.videos__slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .videos__slide {
    gap: 15px;
  }
}
@media screen and (max-width: 541px) {
  .videos__slide {
    gap: 10px;
  }
}
.videos__slide:hover .videos__slide-img::after {
  width: 72.68px;
  height: 82.6px;
}
@media screen and (max-width: 1440px) {
  .videos__slide:hover .videos__slide-img::after {
    width: 66px;
    height: 75px;
  }
}
.videos__slide a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.videos__slide-img {
  min-height: 285px;
  height: 285px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .videos__slide-img {
    height: 213px;
    min-height: 213px;
  }
}
@media screen and (max-width: 768px) {
  .videos__slide-img {
    height: 200px;
    min-height: 200px;
  }
}
@media screen and (max-width: 541px) {
  .videos__slide-img {
    height: 219px;
    min-height: 219px;
  }
}
.videos__slide-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 6, 45, 0.4);
  z-index: 0;
}
.videos__slide-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 59.06px;
  height: 67.11px;
  background-image: url("../img/play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .videos__slide-img::after {
    width: 44px;
    height: 50px;
  }
}
.videos__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videos__slide-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 541px) {
  .awards {
    margin-bottom: 104px;
  }
}
.awards__contents {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 1440px) {
  .awards__contents {
    row-gap: 30px;
  }
}
@media (max-width: 992px) {
  .awards__contents {
    row-gap: 65px;
  }
}
.awards__offer {
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .awards__offer {
    margin-bottom: 15px;
  }
}
.awards__slider-wrapper .swiper-pagination {
  bottom: -30px !important;
}
.awards__slider {
  overflow: hidden;
  margin: 0 80px;
  padding: 25px 0;
}
@media screen and (max-width: 1440px) {
  .awards__slider {
    margin: 0 64px;
    padding: 15px 0;
  }
}
@media (max-width: 992px) {
  .awards__slider {
    margin: 0;
  }
}
.awards__slider .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.awards__slide {
  display: block;
  height: 244px;
  border-radius: 6.75px;
  overflow: hidden;
  border: 2.7px solid white;
  filter: saturate(0);
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .awards__slide {
    height: 188px;
  }
}
@media screen and (max-width: 541px) {
  .awards__slide {
    height: 180px;
  }
}
.awards__slide:hover {
  filter: saturate(1);
  transform: scale(1.1);
}
.awards__slide img {
  height: 100%;
  width: auto;
}

@media (max-width: 992px) {
  .partners {
    padding-bottom: 50px;
    position: relative;
  }
}
@media screen and (max-width: 541px) {
  .partners {
    padding-bottom: 10px;
  }
}
.partners__offer {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .partners__offer {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 541px) {
  .partners__offer {
    margin-bottom: 10px;
  }
}
.partners__slick-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .partners__slick-wrapper {
    position: static;
  }
}
.partners__slick-wrapper .swiper-button-prev {
  left: 28%;
}
@media (max-width: 1600px) {
  .partners__slick-wrapper .swiper-button-prev {
    left: 25.5%;
  }
}
@media screen and (max-width: 1440px) {
  .partners__slick-wrapper .swiper-button-prev {
    left: 28%;
  }
}
@media (max-width: 1325px) {
  .partners__slick-wrapper .swiper-button-prev {
    left: 27%;
  }
}
@media (max-width: 1150px) {
  .partners__slick-wrapper .swiper-button-prev {
    left: 23%;
  }
}
@media (max-width: 992px) {
  .partners__slick-wrapper .swiper-button-prev {
    display: none !important;
  }
}
.partners__slick-wrapper .swiper-button-next {
  right: 28%;
}
@media (max-width: 1600px) {
  .partners__slick-wrapper .swiper-button-next {
    right: 25.5%;
  }
}
@media screen and (max-width: 1440px) {
  .partners__slick-wrapper .swiper-button-next {
    right: 28%;
  }
}
@media (max-width: 1325px) {
  .partners__slick-wrapper .swiper-button-next {
    right: 27%;
  }
}
@media (max-width: 1150px) {
  .partners__slick-wrapper .swiper-button-next {
    right: 23%;
  }
}
@media (max-width: 992px) {
  .partners__slick-wrapper .swiper-button-next {
    display: none !important;
  }
}
.partners__slick-wrapper .slick-dots {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  z-index: 3;
  display: none !important;
}
@media (max-width: 992px) {
  .partners__slick-wrapper .slick-dots {
    display: flex !important;
  }
}
@media screen and (max-width: 541px) {
  .partners__slick-wrapper .slick-dots {
    bottom: -24px !important;
  }
}
.partners__slick-wrapper .slick-dots li {
  margin: 0 !important;
  max-width: 16px;
  min-width: 16px;
  height: 16px;
  background: var(--light-1);
  transition: 0.3s ease;
  border-radius: 100%;
  opacity: 1;
  display: inline-block;
  width: 100%;
}
.partners__slick-wrapper .slick-dots li button {
  display: none;
}
.partners__slick-wrapper .slick-dots li.slick-active {
  opacity: 1;
  background: var(--blue);
  max-width: 20px;
  min-width: 20px;
  width: 100%;
  height: 20px;
}
@media screen and (max-width: 541px) {
  .partners__slick-wrapper .slick-dots li.slick-active {
    max-width: 14px;
    min-width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 541px) {
  .partners__slick-wrapper .slick-dots li {
    max-width: 12px;
    min-width: 12px;
    height: 12px;
  }
}
.partners__slick {
  margin: 0 -15px;
  padding-bottom: 10px;
  overflow: visible;
}
@media (max-width: 992px) {
  .partners__slick {
    margin: 0 -10px;
    position: static;
  }
}
.partners__slick .slick-track {
  align-items: center;
  display: flex;
  min-height: 250px;
  width: -moz-fit-content !important;
  width: fit-content !important;
  overflow: visible;
}
@media screen and (max-width: 1440px) {
  .partners__slick .slick-track {
    min-height: 180px;
  }
}
@media screen and (max-width: 541px) {
  .partners__slick .slick-track {
    min-height: 120px;
  }
}
.partners__slick .slick-list {
  overflow: visible;
}
@media (max-width: 992px) {
  .partners__slick .slick-list {
    padding-bottom: 50px;
  }
}
.partners__slick .slick-slide {
  transition: 0.3s ease;
  opacity: 0.5;
  margin: 0 15px;
  width: 550px !important;
}
@media (max-width: 992px) {
  .partners__slick .slick-slide {
    margin: 0 10px;
  }
}
.partners__slick .slick-center {
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .partners__slick .slick-center {
    margin: 0 95px;
  }
}
@media (max-width: 992px) {
  .partners__slick .slick-center {
    margin: 0 10px;
  }
}
@media screen and (max-width: 541px) {
  .partners__slick .slick-center {
    margin: 0;
  }
}
.partners__slick .slick-center .partners__slide-img {
  height: 230px;
}
@media screen and (max-width: 1440px) {
  .partners__slick .slick-center .partners__slide-img {
    height: 180px;
    min-width: 400px;
    max-width: 400px;
    padding: 15px;
  }
}
@media screen and (max-width: 541px) {
  .partners__slick .slick-center .partners__slide-img {
    height: 120px;
    min-width: 240px;
    max-width: 240px;
    padding: 10px;
  }
}
.partners__slick .slick-center:hover .partners__slide-desc {
  opacity: 1;
}
.partners__slide {
  position: relative;
}
@media (max-width: 992px) {
  .partners__slide {
    position: static;
  }
}
.partners__slide-img {
  background: white;
  border-radius: 5px;
  padding: 30px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .partners__slide-img {
    height: 130px;
  }
}
@media screen and (max-width: 541px) {
  .partners__slide-img {
    height: 70px;
    padding: 10px;
  }
}
.partners__slide-img img {
  max-width: 100%;
  max-height: 100%;
}
.partners__slide-desc {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--extra-light-blue);
  opacity: 0;
  transition: 0.3s ease;
  padding: 40px;
  border-radius: 5px;
  color: var(--grey-1);
}
@media screen and (max-width: 1440px) {
  .partners__slide-desc {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .partners__slide-desc {
    display: none;
  }
}
.partners__text--mob {
  display: none;
}
@media (max-width: 992px) {
  .partners__text--mob {
    display: block;
    margin-top: 20px;
    color: var(--grey-1);
    text-align: center;
  }
}
@media screen and (max-width: 541px) {
  .partners__text--mob {
    margin-top: 0px;
  }
}

.contact {
  padding: 63px 0 61px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .contact {
    padding: 32px 0 31px;
  }
}
@media (max-width: 640px) {
  .contact {
    padding: 0;
    height: 420px;
    margin-top: 275px;
  }
}
.contact::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25) inset;
  pointer-events: none;
}
.contact #map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.contact .ymaps-2-1-79-ground-pane {
  filter: hue-rotate(200deg);
  -ms-filter: hue-rotate(200deg);
  -webkit-filter: hue-rotate(200deg);
  -moz-filter: hue-rotate(200deg);
  -o-filter: hue-rotate(200deg);
}
.contact .ymaps-2-1-79-map {
  height: 100% !important;
}
.contact .map-label {
  position: absolute;
  left: 60px;
  top: 0;
  transform: translateY(-20%);
  font-family: "Roboto";
  background: white;
  font-weight: 300;
  font-size: 26px;
  line-height: 30px;
  border-radius: var(--bradius);
  background: var(--blue-op);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid var(--light-2);
  padding: 20px;
  min-width: 410px;
}
@media screen and (max-width: 1440px) {
  .contact .map-label {
    font-size: 20px;
    line-height: 24px;
    min-width: 325px;
  }
}
@media (max-width: 992px) {
  .contact .map-label {
    left: 50%;
    top: -86px;
    transform: translateX(-45%);
  }
}
@media (max-width: 640px) {
  .contact .map-label {
    top: auto;
    bottom: -160px;
  }
}
@media (max-width: 640px) {
  .contact__body {
    position: relative;
    margin: 0 19px;
  }
}
.contact__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 553px;
  border-radius: var(--bradius);
  background: var(--blue-op);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid var(--light-2);
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .contact__wrap {
    max-width: 350px;
  }
}
@media (max-width: 640px) {
  .contact__wrap {
    position: absolute;
    left: 0;
    top: -191px;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 541px) {
  .contact__wrap {
    gap: 10px;
  }
}
.contact__wrap form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 541px) {
  .contact__wrap form {
    gap: 10px;
  }
}
.main--contact .main__bg {
  position: absolute;
}
.main--contact .main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main--contact .main__bg:nth-child(1) {
  background-color: var(--extra-light-blue);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.main--contact .main__bg:nth-child(2) {
  height: 1268px;
  width: 1904px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1440px) {
  .main--contact .main__bg:nth-child(2) {
    height: 951px;
    width: 1428px;
  }
}
@media (max-width: 992px) {
  .main--contact .main__bg:nth-child(2) {
    height: 951px;
    width: 756px;
  }
}
@media screen and (max-width: 541px) {
  .main--contact .main__bg:nth-child(2) {
    width: 1100px;
    height: 458px;
    left: 40%;
  }
}
.main--contact .main__bg:nth-child(3) {
  width: 792px;
  height: 1417px;
  transform: rotate(-7.5deg);
  top: -336px;
  right: -200px;
}
@media screen and (max-width: 1440px) {
  .main--contact .main__bg:nth-child(3) {
    width: 594px;
    height: 1063px;
    top: -300px;
    right: -120px;
  }
}
@media (max-width: 992px) {
  .main--contact .main__bg:nth-child(3) {
    width: 303px;
    height: 542px;
    top: 55px;
    right: -55px;
  }
}
@media screen and (max-width: 541px) {
  .main--contact .main__bg:nth-child(3) {
    width: 191px;
    height: 345px;
    transform: rotate(-25deg) scaleX(-1);
    left: 15px;
    top: 240px;
    z-index: 2;
  }
}
.main--contact .main__bg:nth-child(4) {
  width: 349px;
  height: 628px;
  transform: scaleX(-1);
  top: -48px;
  left: 20px;
}
@media screen and (max-width: 1440px) {
  .main--contact .main__bg:nth-child(4) {
    width: 262px;
    height: 471px;
    top: -36px;
    left: 15px;
  }
}
@media (max-width: 992px) {
  .main--contact .main__bg:nth-child(4) {
    width: 198px;
    height: 357px;
    top: 202px;
    left: 2px;
  }
}
@media screen and (max-width: 541px) {
  .main--contact .main__bg:nth-child(4) {
    z-index: 1;
    transform: rotate(15deg) scaleX(-1);
    width: 262px;
    height: 471px;
    top: 80px;
    left: 80px;
  }
}

.contitems__body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .contitems__body {
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .contitems__body {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 10px;
  }
}
.contitems__item {
  grid-column: 4 span;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: var(--bradius);
  padding: 20px;
}
@media (max-width: 992px) {
  .contitems__item {
    grid-column: 6 span;
  }
  .contitems__item:nth-child(2) {
    grid-column: 12 span;
  }
}
@media screen and (max-width: 541px) {
  .contitems__item {
    grid-column: 12 span;
    padding: 15px;
  }
}
.contitems__item--mob {
  display: none;
}
@media screen and (max-width: 541px) {
  .contitems__item--mob {
    display: block !important;
  }
}
.contitems__item--img {
  background: white;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 26px 26px 106px;
  max-height: 427px;
}
@media screen and (max-width: 1440px) {
  .contitems__item--img {
    padding: 20px 20px 80px;
    max-height: 320px;
  }
}
@media (max-width: 992px) {
  .contitems__item--img {
    padding: 16px 16px 70px;
  }
}
@media screen and (max-width: 541px) {
  .contitems__item--img {
    display: none;
    padding: 12px 12px 60px;
  }
}
.contitems__item-img {
  height: 295px;
}
@media screen and (max-width: 1440px) {
  .contitems__item-img {
    height: 220px;
  }
}
@media (max-width: 992px) {
  .contitems__item-img {
    height: 234px;
  }
}
@media screen and (max-width: 541px) {
  .contitems__item-img {
    height: 186px;
  }
}
.contitems__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main--recomend .main__bg {
  position: absolute;
}
.main--recomend .main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main--recomend .main__bg:nth-child(1) {
  width: 100%;
  left: 0;
  top: -369px;
  height: 926px;
  opacity: 0.8;
}
@media screen and (max-width: 1440px) {
  .main--recomend .main__bg:nth-child(1) {
    height: 697px;
    top: -277px;
  }
}
@media (max-width: 992px) {
  .main--recomend .main__bg:nth-child(1) {
    height: 757px;
  }
}
@media screen and (max-width: 541px) {
  .main--recomend .main__bg:nth-child(1) {
    height: 537px;
    width: 1059px;
    top: -97px;
  }
}
.main--recomend .main__bg:nth-child(2) {
  width: 100%;
  height: 1280px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1440px) {
  .main--recomend .main__bg:nth-child(2) {
    height: 960px;
  }
}
@media (max-width: 992px) {
  .main--recomend .main__bg:nth-child(2) {
    height: 751px;
    transform: none;
    top: -81px;
  }
}
@media screen and (max-width: 541px) {
  .main--recomend .main__bg:nth-child(2) {
    top: -120px;
    height: 560px;
  }
}
.main--recomend .main__bg:nth-child(3) {
  width: 534px;
  height: 953px;
  transform: rotate(-7.51deg);
  left: -4px;
  top: 100px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .main--recomend .main__bg:nth-child(3) {
    width: 400px;
    height: 714px;
    left: -20px;
    top: 50px;
  }
}
@media (max-width: 992px) {
  .main--recomend .main__bg:nth-child(3) {
    left: -85px;
    top: 45px;
  }
}
@media screen and (max-width: 541px) {
  .main--recomend .main__bg:nth-child(3) {
    width: 325px;
    height: 579px;
    top: 134px;
    left: -10px;
  }
}
.main--recomend .main__bg:nth-child(4) {
  width: 534px;
  height: 953px;
  transform: rotate(7.28deg);
  top: 111px;
  left: 10%;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .main--recomend .main__bg:nth-child(4) {
    width: 400px;
    height: 714px;
    top: 100px;
    left: 7.5%;
  }
}
@media (max-width: 992px) {
  .main--recomend .main__bg:nth-child(4) {
    top: 100px;
    left: 50px;
  }
}
@media screen and (max-width: 541px) {
  .main--recomend .main__bg:nth-child(4) {
    display: none;
  }
}

.books__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media (max-width: 1550px) {
  .books__items {
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .books__items {
    display: none;
  }
}
.books__slider-wrapper {
  display: none;
}
@media screen and (max-width: 541px) {
  .books__slider-wrapper {
    display: block;
    position: relative;
  }
}
.books__slider {
  overflow: hidden;
}
.books__slider .swiper-slide {
  height: auto !important;
}
.books__item {
  grid-column: 3 span;
  background: white;
  border-radius: var(--bradius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 15px;
  height: 100%;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 1550px) {
  .books__item {
    padding: 15px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 1250px) {
  .books__item {
    grid-column: 4 span;
  }
}
@media (max-width: 700px) {
  .books__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 541px) {
  .books__item {
    padding: 10px;
  }
}
.books__item:hover {
  background: var(--extra-light-blue);
}
.books__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.books__item-img {
  height: 150px;
  margin-bottom: 20px;
  border-radius: var(--bradius);
  overflow: hidden;
}
@media screen and (max-width: 541px) {
  .books__item-img {
    height: 120px;
    margin-bottom: 10px;
  }
}
.books__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.books__item-offer {
  margin-bottom: 15px;
  color: var(--burgundy);
}
@media (max-width: 1550px) {
  .books__item-offer {
    margin-bottom: 10px;
  }
}
@media (max-width: 1550px) {
  .books__item-desc {
    font-size: 17px;
    line-height: 19.92px;
  }
}
.books__item-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 1550px) {
  .books__item-link {
    font-size: 17px;
    line-height: 19.92px;
  }
}
.books__item-link span {
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  display: inline-block;
  margin-top: 3px;
}

.groups__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 0px;
       column-gap: 0px;
  row-gap: 30px;
}
@media (max-width: 1550px) {
  .groups__items {
    gap: 20px 0px;
  }
}
@media screen and (max-width: 541px) {
  .groups__items {
    display: none;
  }
}
.groups__slider-wrapper {
  display: none;
}
@media screen and (max-width: 541px) {
  .groups__slider-wrapper {
    display: block;
    position: relative;
  }
}
.groups__slider {
  overflow: hidden;
}
.groups__slider .swiper-slide {
  height: auto !important;
}
.groups__item {
  grid-column: 12 span;
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: var(--bradius);
  padding: 20px;
  align-items: stretch;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 1550px) {
  .groups__item {
    gap: 15px;
    padding: 15px;
  }
}
@media screen and (max-width: 541px) {
  .groups__item {
    gap: 10px;
    padding: 10px;
    height: 100%;
  }
}
.groups__item:hover {
  background: var(--extra-light-blue);
}
.groups__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.groups__item-img {
  min-width: 170px;
  max-width: 170px;
  height: auto;
  overflow: hidden;
  border-radius: var(--bradius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.groups__item-content {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (max-width: 1550px) {
  .groups__item-content {
    row-gap: 10px;
  }
}
.groups__item-offer {
  color: var(--burgundy);
}
@media (max-width: 1550px) {
  .groups__item-desc {
    font-size: 17px;
    line-height: 19.92px;
  }
}
.groups__item-desc span {
  font-weight: 200;
  font-family: "Geologica";
  line-height: 21.25px;
}

.movies__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media (max-width: 1550px) {
  .movies__items {
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .movies__items {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 10px;
  }
}
.movies__item {
  grid-column: 6 span;
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: var(--bradius);
  padding: 20px;
  align-items: stretch;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 1550px) {
  .movies__item {
    gap: 15px;
    padding: 15px;
  }
}
@media screen and (max-width: 541px) {
  .movies__item {
    gap: 10px;
    padding: 10px;
    height: 100%;
  }
}
@media (max-width: 900px) {
  .movies__item {
    grid-column: 12 span;
  }
}
@media (max-width: 480px) {
  .movies__item {
    flex-direction: column;
  }
}
.movies__item:hover {
  background: var(--extra-light-blue);
}
.movies__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movies__item-img {
  min-width: 170px;
  max-width: 170px;
  height: auto;
  overflow: hidden;
  border-radius: var(--bradius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 480px) {
  .movies__item-img {
    min-height: 120px;
    max-width: 100%;
    width: 100%;
  }
}
.movies__item-content {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  height: 100%;
}
@media (max-width: 1550px) {
  .movies__item-content {
    row-gap: 10px;
  }
}
.movies__item-offer {
  color: var(--burgundy);
}
@media (max-width: 1550px) {
  .movies__item-desc {
    font-size: 17px;
    line-height: 19.92px;
  }
}
@media (max-width: 992px) {
  .movies__item-desc {
    word-break: break-all;
  }
}
.movies__item-desc span {
  font-weight: 200;
  font-family: "Geologica";
  line-height: 21.25px;
}
.movies .books__item-link {
  margin-top: auto;
}
@media (max-width: 992px) {
  .movies .books__item-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 900px) {
  .movies .books__item-link span {
    display: inline-block;
  }
}

.learn__body {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  color: white;
  padding: 40px;
}
@media screen and (max-width: 1440px) {
  .learn__body {
    padding: 30px;
  }
}
@media screen and (max-width: 541px) {
  .learn__body {
    padding: 20px;
  }
}
.learn__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.2) 92.38%);
  z-index: 1;
}
@media screen and (max-width: 541px) {
  .learn__body::before {
    background: rgba(0, 0, 0, 0.2);
  }
}
.learn__content {
  position: relative;
  z-index: 2;
  max-width: 810px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1440px) {
  .learn__content {
    max-width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .learn__content {
    max-width: 319px;
  }
}
@media screen and (max-width: 541px) {
  .learn__content {
    max-width: 100%;
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .learn__offer {
    font-size: 34px;
    line-height: 35.7px;
  }
}
@media screen and (max-width: 541px) {
  .learn__offer {
    font-size: 27px;
    line-height: 28.35px;
  }
}
.learn__desc {
  line-height: 25.78px;
}
@media screen and (max-width: 1440px) {
  .learn__desc {
    line-height: 19.92px;
  }
}
@media screen and (max-width: 541px) {
  .learn__desc {
    margin-bottom: 60px;
  }
}
.learn__links {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 541px) {
  .learn__links {
    row-gap: 10px;
  }
}
.learn__link {
  border-radius: 100px;
}
.learn__bg {
  background-image: url("../img/learn.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(-1) translateY(10px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 102%;
}
@media screen and (max-width: 541px) {
  .learn__bg {
    height: 200%;
    transform: rotate(180deg) translateY(120px);
  }
}

.main--books .main__bg {
  position: absolute;
}
.main--books .main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main--books .main__bg:nth-child(1) {
  height: 1277px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .main--books .main__bg:nth-child(1) {
    height: 960px;
  }
}
@media (max-width: 992px) {
  .main--books .main__bg:nth-child(1) {
    height: 1020px;
  }
}
@media screen and (max-width: 541px) {
  .main--books .main__bg:nth-child(1) {
    height: 609px;
    bottom: 0;
    top: auto;
    transform: none;
  }
}
.main--books .main__bg:nth-child(2) {
  height: 621.33px;
  width: 973.33px;
  top: -64.33px;
  right: -8px;
}
@media screen and (max-width: 1440px) {
  .main--books .main__bg:nth-child(2) {
    height: 466px;
    width: 730px;
    top: -46px;
    right: -6px;
  }
}
@media (max-width: 992px) {
  .main--books .main__bg:nth-child(2) {
    height: 751px;
    width: 894px;
    top: -170px;
    right: -151px;
  }
  .main--books .main__bg:nth-child(2) img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 541px) {
  .main--books .main__bg:nth-child(2) {
    width: 971px;
    height: 450px;
    top: 0;
    right: -170px;
  }
}
.main--books .main__bg:nth-child(3) {
  width: 781.33px;
  height: 533.33px;
  top: -8px;
  left: -6%;
}
@media screen and (max-width: 1440px) {
  .main--books .main__bg:nth-child(3) {
    width: 586px;
    height: 400px;
    top: -6px;
    left: -6%;
  }
}
@media (max-width: 992px) {
  .main--books .main__bg:nth-child(3) {
    width: 676px;
    height: 461px;
    top: 100px;
    left: -224px;
    transform: rotate(-11.51deg);
    z-index: 2;
  }
}
@media screen and (max-width: 541px) {
  .main--books .main__bg:nth-child(3) {
    width: 585px;
    height: 399px;
    top: 126px;
    left: -136px;
    transform: none;
  }
}
.main--books .main__bg:nth-child(4) {
  width: 781.33px;
  height: 533.33px;
  top: -110px;
  transform: rotate(16.89deg);
  left: 10%;
}
@media (min-width: 2236px) {
  .main--books .main__bg:nth-child(4) {
    width: 981px;
    height: 733px;
    left: 6%;
  }
}
@media screen and (max-width: 1440px) {
  .main--books .main__bg:nth-child(4) {
    width: 586px;
    height: 400px;
    top: -90px;
    left: 7%;
  }
}
@media (max-width: 992px) {
  .main--books .main__bg:nth-child(4) {
    width: 449px;
    height: 307px;
    transform: rotate(5.37deg);
    left: -20px;
    top: 40px;
    z-index: 1;
  }
}
@media screen and (max-width: 541px) {
  .main--books .main__bg:nth-child(4) {
    display: none;
  }
}
.main--books .main__bg:nth-child(5) {
  width: 781.33px;
  height: 533.33px;
  bottom: -210px;
  transform: rotate(16.89deg);
  left: 22%;
}
@media screen and (max-width: 1440px) {
  .main--books .main__bg:nth-child(5) {
    width: 586px;
    height: 400px;
    bottom: -150px;
    left: 19.5%;
  }
}
@media (max-width: 992px) {
  .main--books .main__bg:nth-child(5) {
    width: 449px;
    height: 307px;
    transform: rotate(13.85deg);
    left: 210px;
    top: 145px;
    bottom: auto;
  }
}
@media screen and (max-width: 541px) {
  .main--books .main__bg:nth-child(5) {
    display: none;
  }
}

.mybooks__slider-wrapper {
  position: relative;
}
.mybooks__slider-wrapper .swiper-pagination {
  display: none;
}
@media (max-width: 992px) {
  .mybooks__slider-wrapper .swiper-pagination {
    display: flex;
  }
}
.mybooks__slider {
  overflow: hidden;
}
.mybooks__slider .swiper-slide {
  height: auto !important;
}
.mybooks__item {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  justify-content: space-between;
}
.mybooks__item:hover {
  color: var(--blue);
}
@media screen and (max-width: 541px) {
  .mybooks__item {
    padding: 10px;
  }
}
.mybooks__item-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.mybooks__img {
  height: 224px;
  max-width: 160px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  margin-bottom: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
@media screen and (max-width: 1440px) {
  .mybooks__img {
    max-width: 140px;
    height: 196px;
  }
}
.mybooks__item-offer {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: 0.3s ease;
}
.mybooks__item-btn {
  position: relative;
  z-index: 1;
  width: 100%;
}
.mybooks__item--empty {
  pointer-events: none;
}
.mybooks__item--empty .mybooks__img {
  box-shadow: none;
}
.mybooks__item--empty .mybooks__item-offer {
  color: var(--grey-1);
}
.mybooks__item--empty .mybooks__item-btn {
  background: var(--light-1);
  color: var(--light-2);
}
.mybooks__item--dev {
  background: var(--extra-light-blue);
}
.mybooks__item--planned {
  background: var(--light-pink);
}

.book__body {
  row-gap: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 541px) {
  .book__body {
    row-gap: 10px;
  }
}
.book__content {
  display: flex;
  align-items: stretch;
  gap: 45px;
}
@media screen and (max-width: 1250px) {
  .book__content {
    align-items: flex-start;
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .book__content {
    flex-direction: column;
    gap: 10px;
  }
}
.book__img {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  min-width: 490px;
  max-width: 490px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .book__img {
    min-width: 34%;
  }
}
@media screen and (max-width: 1250px) {
  .book__img {
    min-width: 363px;
    max-width: 363px;
    height: 580px;
  }
}
@media (max-width: 700px) {
  .book__img {
    min-width: 273px;
    max-width: 273px;
    height: 450px;
  }
}
@media screen and (max-width: 541px) {
  .book__img {
    height: 360px;
    min-width: 0;
    max-width: 100%;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}
.book__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.book__right {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1250px) {
  .book__right {
    row-gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .book__right {
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .book__offer {
    font-size: 34px;
    line-height: 35.7px;
  }
}
@media (max-width: 700px) {
  .book__offer {
    font-size: 27px;
    line-height: 28.35px;
  }
}
@media screen and (max-width: 541px) {
  .book__offer {
    display: none;
  }
}
.book__offer--mob {
  display: none;
}
@media screen and (max-width: 541px) {
  .book__offer--mob {
    display: block;
    text-align: center;
  }
}
.book__excerpt {
  background: white;
  border-radius: var(--bradius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .book__excerpt {
    row-gap: 10px;
    padding: 20px;
  }
}
@media screen and (max-width: 541px) {
  .book__excerpt {
    padding: 15px;
  }
}
@media screen and (max-width: 1250px) {
  .book__excerpt--mob {
    display: none;
  }
}
@media screen and (max-width: 541px) {
  .book__excerpt--mob {
    display: flex;
  }
}
.book__price {
  background: white;
  border-radius: var(--bradius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .book__price {
    padding: 15px;
  }
}
.book__price-sub {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (max-width: 768px) {
  .book__price-sub {
    margin-bottom: 10px;
  }
}
.book__price-crossed {
  color: var(--grey-1);
  text-decoration: line-through;
}
@media screen and (max-width: 768px) {
  .book__price-offer {
    font-size: 34px;
    line-height: 35.7px;
  }
}
@media (max-width: 700px) {
  .book__price-offer {
    font-size: 27px;
    line-height: 28.35px;
  }
}
.book__btn {
  border-radius: 100px;
}
@media screen and (max-width: 1250px) {
  .book__btn--mob {
    display: none;
  }
}
@media screen and (max-width: 541px) {
  .book__btn--mob {
    display: block;
  }
}
.book__bottom {
  display: none;
}
@media screen and (max-width: 1250px) {
  .book__bottom {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .book__bottom {
    display: none;
  }
}

.reviews__slider-wrapper {
  position: relative;
}
.reviews__slider-wrapper .swiper-pagination {
  display: none;
}
@media (max-width: 992px) {
  .reviews__slider-wrapper .swiper-pagination {
    display: flex;
  }
}
.reviews__slider-wrapper .swiper-slide {
  height: auto !important;
}
.reviews__slider {
  overflow: hidden;
  margin: 0 81px;
}
@media screen and (max-width: 1440px) {
  .reviews__slider {
    margin: 0 65px;
  }
}
@media (max-width: 992px) {
  .reviews__slider {
    margin: 0;
  }
}
.reviews__item {
  background: white;
  padding: 30px;
  border-radius: var(--bradius);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 20px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}
.reviews__item:hover {
  border-color: var(--light-2);
}
@media screen and (max-width: 1440px) {
  .reviews__item {
    padding: 15px;
    row-gap: 15px;
  }
}
.reviews__item-top {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  text-align: left;
}
.reviews__item-ava {
  border-radius: 100%;
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  overflow: hidden;
}
.reviews__item-ava img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__item-name {
  margin-bottom: 5px;
  display: block;
}
.reviews__item-stars {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.reviews__item-star {
  display: flex;
  align-items: center;
}
.reviews__item-star--active path {
  fill: var(--blue);
}
.reviews__item-content {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (max-width: 992px) {
  .reviews__item-content {
    justify-content: center;
    height: 100%;
  }
}
.reviews__item-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: auto;
}
.reviews__item-video {
  height: 160px;
  width: 264px;
  margin: 0 auto;
  border-radius: 7.5px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .reviews__item-video {
    width: 200px;
    height: 121px;
  }
}
.reviews__item-video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 6, 45, 0.4);
  z-index: 0;
}
.reviews__item-video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33px;
  height: 37.5px;
  background-image: url("../img/play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.reviews__item-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main--projects .main__bg {
  position: absolute;
}
.main--projects .main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main--projects .main__bg:nth-child(1) {
  right: 0;
  height: 657px;
  top: -100px;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .main--projects .main__bg:nth-child(1) {
    top: -75px;
    height: 495px;
  }
}
@media (max-width: 992px) {
  .main--projects .main__bg:nth-child(1) {
    display: none;
  }
}
.main--projects .main__bg:nth-child(1) img {
  -o-object-position: right center;
     object-position: right center;
}
@media screen and (max-width: 1440px) {
  .main--projects .main__bg:nth-child(1) img {
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}
.main--projects .main__bg:nth-child(2) {
  display: none;
}
@media (max-width: 992px) {
  .main--projects .main__bg:nth-child(2) {
    display: block;
    height: 525px;
    width: 120%;
    transform: scaleX(-1);
  }
}
@media screen and (max-width: 541px) {
  .main--projects .main__bg:nth-child(2) {
    transform: none;
    height: 651px;
    top: -201px;
  }
}
.main--projects .main__bg:nth-child(3) {
  z-index: 2;
  width: 1081.33px;
  height: 736px;
  left: -354.67px;
  top: 21.33px;
}
@media screen and (max-width: 1440px) {
  .main--projects .main__bg:nth-child(3) {
    width: 811px;
    height: 552px;
    top: 16px;
    left: -266px;
  }
}
@media (max-width: 992px) {
  .main--projects .main__bg:nth-child(3) {
    width: 659px;
    height: 448px;
    top: 120px;
    left: -190px;
  }
}
@media screen and (max-width: 541px) {
  .main--projects .main__bg:nth-child(3) {
    width: 525px;
    height: 357px;
    top: 143px;
    left: -155px;
  }
}
.main--projects .main__bg:nth-child(4) {
  z-index: 1;
  width: 573.37px;
  height: 390.31px;
  bottom: -160px;
  left: 22%;
  transform: rotate(20.1deg);
}
@media screen and (max-width: 1440px) {
  .main--projects .main__bg:nth-child(4) {
    width: 430.03px;
    height: 292.73px;
    bottom: -115px;
  }
}
@media (max-width: 992px) {
  .main--projects .main__bg:nth-child(4) {
    width: 324px;
    height: 221px;
    left: 50%;
    bottom: -50px;
  }
}
@media screen and (max-width: 541px) {
  .main--projects .main__bg:nth-child(4) {
    display: none;
  }
}

.projects {
  display: flex;
  flex-direction: column;
  row-gap: 130px;
}
@media screen and (max-width: 1440px) {
  .projects {
    row-gap: 100px;
  }
}
@media screen and (max-width: 541px) {
  .projects {
    row-gap: 60px;
  }
}
.projects__item {
  position: relative;
  padding-top: 255px;
}
.projects__item:nth-child(2n) .projects__left {
  order: 2;
}
@media (max-width: 1100px) {
  .projects__item:nth-child(2n) .projects__left {
    order: 1;
  }
}
.projects__item:nth-child(2n) .projects__offer {
  text-align: left;
}
@media (max-width: 1100px) {
  .projects__item:nth-child(2n) .projects__offer {
    text-align: center;
  }
}
.projects__item:nth-child(2n) .projects__texts {
  order: 1;
  text-align: right;
}
@media (max-width: 1100px) {
  .projects__item:nth-child(2n) .projects__texts {
    order: 2;
    text-align: left;
  }
}
.projects__item:nth-child(2n) .projects__texts p:first-child {
  margin-right: 0;
  margin-left: 108px;
}
@media screen and (max-width: 1250px) {
  .projects__item:nth-child(2n) .projects__texts p:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 1440px) {
  .projects__item {
    padding-top: 185px;
  }
}
@media (max-width: 1100px) {
  .projects__item {
    padding-top: 316px;
  }
}
@media screen and (max-width: 541px) {
  .projects__item {
    padding-top: 0;
  }
}
.projects__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 541px) {
  .projects__content {
    position: static;
  }
}
.projects__body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .projects__body {
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .projects__body {
    row-gap: 15px;
    -moz-column-gap: 0;
         column-gap: 0;
    margin: 0 29px;
  }
}
@media screen and (max-width: 541px) {
  .projects__body {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 0;
  }
}
.projects__left {
  grid-column: 6 span;
}
@media (max-width: 1100px) {
  .projects__left {
    grid-column: 12 span;
  }
}
.projects__offer {
  margin-bottom: 30px;
  text-align: right;
}
@media screen and (max-width: 1440px) {
  .projects__offer {
    margin-bottom: 15px;
  }
}
@media (max-width: 1100px) {
  .projects__offer {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .projects__offer {
    font-size: 46px;
    line-height: 48.3px;
  }
}
@media screen and (max-width: 541px) {
  .projects__offer {
    font-size: 32px;
    line-height: 33.6px;
    margin-bottom: 10px;
  }
}
.projects__texts {
  grid-column: 6 span;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .projects__texts {
    row-gap: 15px;
  }
}
@media (max-width: 1100px) {
  .projects__texts {
    grid-column: 12 span;
  }
}
@media screen and (max-width: 541px) {
  .projects__texts {
    row-gap: 10px;
    display: none;
  }
}
.projects__texts p {
  background: var(--blue-op);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: var(--bradius);
  padding: 20px;
}
@media screen and (max-width: 541px) {
  .projects__texts p {
    padding: 15px;
  }
}
.projects__texts p:first-child {
  margin-right: 108px;
}
@media screen and (max-width: 1250px) {
  .projects__texts p:first-child {
    margin-right: 0;
  }
}
.projects__texts--mob {
  display: none;
}
@media screen and (max-width: 541px) {
  .projects__texts--mob {
    display: block;
  }
  .projects__texts--mob .projects__texts {
    display: flex;
  }
}
.projects__item-img {
  height: 460px;
}
@media screen and (max-width: 1440px) {
  .projects__item-img {
    height: 350px;
  }
}
@media screen and (max-width: 541px) {
  .projects__item-img {
    display: none;
  }
}
.projects__item-img--mob {
  display: none;
}
@media screen and (max-width: 541px) {
  .projects__item-img--mob {
    display: block;
    height: 204px;
    width: 100%;
    margin: 10px 0;
  }
}
.projects__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.connect__body {
  background-image: url("../img/connect.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .connect__body {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .connect__body {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 541px) {
  .connect__body {
    padding: 20px;
  }
}
.connect__body::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: rgba(100, 6, 45, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.connect__body form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  max-width: 1080px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .connect__body form {
    max-width: 780px;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .connect__body form {
    row-gap: 15px;
    max-width: 450px;
  }
}
.connect__body form input {
  grid-column: 4 span;
}
@media screen and (max-width: 768px) {
  .connect__body form input {
    grid-column: 12 span;
  }
}
.connect__body form button {
  grid-column: 12 span;
  font-weight: 300;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .connect__body form button {
    margin-top: 5px;
  }
}
@media screen and (max-width: 541px) {
  .connect__body form button {
    margin-top: -5px;
  }
}
.connect__offer {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .connect__offer {
    font-size: 34px;
    line-height: 35.7px;
  }
}
@media screen and (max-width: 541px) {
  .connect__offer {
    font-size: 27px;
    line-height: 28.35px;
  }
}
@media screen and (max-width: 541px) and (max-width: 541px) {
  .connect__offer {
    display: none;
  }
}
.connect__offer--mob {
  display: none;
}
@media screen and (max-width: 541px) {
  .connect__offer--mob {
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
  }
}

.main--bio {
  background-image: url("../img/bio-main.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .main--bio {
    background-image: url("../img/main-bio-tablet.png");
  }
}
@media screen and (max-width: 541px) {
  .main--bio {
    background-image: url("../img/main-bio-mob.png");
  }
}

.bio {
  position: relative;
}
.bio__content {
  position: relative;
  z-index: 1;
  margin-right: 292px;
}
@media (max-width: 1600px) {
  .bio__content {
    margin-right: 217px;
  }
}
@media (max-width: 992px) {
  .bio__content {
    margin-right: 0;
  }
}
.bio__offer {
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .bio__offer {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .bio__offer {
    font-size: 46px;
    line-height: 48.3px;
  }
}
@media screen and (max-width: 541px) {
  .bio__offer {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 33.6px;
  }
}
.bio__items {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (max-width: 1600px) {
  .bio__items {
    row-gap: 15px;
  }
}
@media (max-width: 640px) {
  .bio__items {
    row-gap: 10px;
  }
}
.bio__desc {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: var(--bradius);
}
@media (max-width: 1600px) {
  .bio__desc {
    font-size: 17px;
    line-height: 19.92px;
  }
}
@media (max-width: 640px) {
  .bio__desc {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .bio__desc:nth-child(1) {
    margin-right: 247px;
  }
}
@media (max-width: 640px) {
  .bio__desc:nth-child(1) {
    margin-right: 99px;
  }
}
.bio__desc:nth-child(2) {
  margin-right: 145px;
}
@media (max-width: 1600px) {
  .bio__desc:nth-child(2) {
    margin-right: 108px;
  }
}
@media (max-width: 992px) {
  .bio__desc:nth-child(2) {
    margin-right: 247px;
  }
}
@media (max-width: 640px) {
  .bio__desc:nth-child(2) {
    margin-right: 0px;
  }
}
.bio__desc:nth-child(4) {
  margin-right: 291px;
}
@media (max-width: 1600px) {
  .bio__desc:nth-child(4) {
    margin-right: 216px;
  }
}
@media (max-width: 992px) {
  .bio__desc:nth-child(4) {
    margin-right: 124px;
  }
}
@media (max-width: 640px) {
  .bio__desc:nth-child(4) {
    margin-right: 0;
  }
}
.bio__desc:nth-child(6) {
  margin-right: 291px;
}
@media (max-width: 1600px) {
  .bio__desc:nth-child(6) {
    margin-right: 216px;
  }
}
@media (max-width: 992px) {
  .bio__desc:nth-child(6) {
    margin-right: 124px;
  }
}
@media (max-width: 640px) {
  .bio__desc:nth-child(6) {
    margin-right: 0;
  }
}
.bio__desc:nth-child(7) {
  margin-right: 437px;
}
@media (max-width: 1600px) {
  .bio__desc:nth-child(7) {
    margin-right: 325px;
  }
}
@media (max-width: 1050px) {
  .bio__desc:nth-child(7) {
    margin-right: 0;
  }
}
.bio__desc:nth-child(9) {
  margin-right: 583px;
}
@media (max-width: 1600px) {
  .bio__desc:nth-child(9) {
    margin-right: 434px;
  }
}
@media screen and (max-width: 1250px) {
  .bio__desc:nth-child(9) {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  .bio__desc:nth-child(9) {
    margin-left: 100px;
  }
}
.bio__desc:nth-child(10) {
  margin-right: 437px;
}
@media (max-width: 1600px) {
  .bio__desc:nth-child(10) {
    margin-right: 325px;
  }
}
@media screen and (max-width: 1250px) {
  .bio__desc:nth-child(10) {
    margin-right: 0;
  }
}
.bio__suboffer {
  color: var(--burgundy);
}
@media (max-width: 1600px) {
  .bio__suboffer {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .bio__suboffer {
    font-size: 27px;
  }
}
.bio__img {
  position: absolute;
  right: 0;
  top: -40px;
  height: 97%;
  max-width: 1096px;
}
@media (max-width: 1600px) {
  .bio__img {
    top: -10px;
    height: 95%;
    max-width: 860px;
  }
}
@media screen and (max-width: 1250px) {
  .bio__img {
    max-width: 645px;
    top: -40px;
    max-height: 1440px;
  }
}
@media (max-width: 640px) {
  .bio__img {
    max-width: 100%;
    max-height: 900px;
    top: 0;
  }
}
.bio__img--mob {
  display: none;
}
@media (max-width: 640px) {
  .bio__img--mob {
    display: block;
    transform: scaleX(-1);
    left: 0;
    right: auto;
    top: auto;
    bottom: 0px;
  }
}
@media screen and (max-width: 541px) {
  .bio__img--mob {
    bottom: 80px;
  }
}
@media (max-width: 480px) {
  .bio__img--mob {
    bottom: 300px;
  }
}
.bio__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center left;
     object-position: center left;
}

.vision__desc {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: var(--bradius);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
@media screen and (max-width: 1440px) {
  .vision__desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 541px) {
  .vision__desc {
    margin-bottom: 10px;
  }
}
.vision__content {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .vision__content {
    padding: 12px 20px;
  }
}
@media (max-width: 992px) {
  .vision__content {
    padding: 30px;
  }
}
@media screen and (max-width: 541px) {
  .vision__content {
    padding: 15px;
  }
}
.vision__main {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .vision__main {
    align-items: flex-start;
  }
}
.vision__img {
  max-width: 618px;
  margin-left: 4%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1440px) {
  .vision__img {
    max-width: 460px;
  }
}
@media (max-width: 992px) {
  .vision__img {
    max-width: 345px;
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .vision__img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 541px) {
  .vision__img {
    max-width: 299px;
  }
}
.vision__img img {
  max-width: 100%;
}
.vision__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  position: relative;
  z-index: 5;
}
@media (max-width: 640px) {
  .vision__wrap {
    display: none;
  }
}
.vision__suboffer {
  color: var(--burgundy);
  margin-left: -6px;
}
@media screen and (max-width: 1440px) {
  .vision__suboffer {
    margin-bottom: 7px;
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .vision__suboffer {
    display: none;
  }
}
.vision__suboffer--mob {
  display: none;
  position: relative;
  z-index: 5;
}
@media (max-width: 992px) {
  .vision__suboffer--mob {
    display: block;
    text-align: center;
    font-size: 34px;
    line-height: 35.7px;
    margin-bottom: 29px;
  }
}
@media (max-width: 640px) {
  .vision__suboffer--mob {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 33.6px;
  }
}
.vision__content-item {
  padding: 15px;
  border-radius: var(--bradius);
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media screen and (max-width: 1440px) {
  .vision__content-item {
    padding: 10px;
  }
}
.vision__content-item:nth-child(2) {
  margin-left: 23px;
}
@media screen and (max-width: 1440px) {
  .vision__content-item:nth-child(2) {
    margin-left: 12px;
  }
}
@media (max-width: 992px) {
  .vision__content-item:nth-child(2) {
    margin-left: -53px;
  }
}
.vision__content-item:nth-child(3) {
  margin-left: 43px;
}
@media screen and (max-width: 1440px) {
  .vision__content-item:nth-child(3) {
    margin-left: 22px;
  }
}
@media (max-width: 992px) {
  .vision__content-item:nth-child(3) {
    margin-left: 14px;
  }
}
.vision__content-item:nth-child(4) {
  margin-left: 53px;
}
@media screen and (max-width: 1440px) {
  .vision__content-item:nth-child(4) {
    margin-left: 32px;
  }
}
@media (max-width: 992px) {
  .vision__content-item:nth-child(4) {
    margin-left: 24px;
  }
}
.vision__content-item:nth-child(5) {
  margin-left: 53px;
}
@media screen and (max-width: 1440px) {
  .vision__content-item:nth-child(5) {
    margin-left: 32px;
  }
}
@media (max-width: 992px) {
  .vision__content-item:nth-child(5) {
    margin-left: 14px;
  }
}
.vision__content-item:nth-child(6) {
  margin-left: 43px;
}
@media screen and (max-width: 1440px) {
  .vision__content-item:nth-child(6) {
    margin-left: 22px;
  }
}
@media (max-width: 992px) {
  .vision__content-item:nth-child(6) {
    margin-left: -53px;
  }
}
.vision__content-item:nth-child(7) {
  margin-left: 23px;
}
@media screen and (max-width: 1440px) {
  .vision__content-item:nth-child(7) {
    margin-left: 12px;
  }
}
@media (max-width: 992px) {
  .vision__content-item:nth-child(7) {
    margin-left: -86px;
  }
}
.vision__content-item:nth-child(8) {
  margin-left: -17px;
}
@media screen and (max-width: 1440px) {
  .vision__content-item:nth-child(8) {
    margin-left: -8px;
  }
}
@media (max-width: 992px) {
  .vision__content-item:nth-child(8) {
    display: none;
  }
}
.vision__content-item:nth-child(9) {
  margin-left: -57px;
}
@media screen and (max-width: 1440px) {
  .vision__content-item:nth-child(9) {
    margin-left: -38px;
  }
}
@media (max-width: 992px) {
  .vision__content-item:nth-child(9) {
    display: none;
  }
}
.vision__items {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 10px;
}
.vision__items .vision__content-item {
  display: none;
  margin-left: 0;
}
@media (max-width: 640px) {
  .vision__items .vision__content-item {
    display: block;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .vision__items .vision__content-item:nth-child(7) {
    display: block;
  }
}
@media (max-width: 992px) {
  .vision__items .vision__content-item:nth-child(8) {
    display: block;
  }
}
.vision__circle {
  position: absolute;
}
.vision__circle:nth-child(1) {
  width: 764px;
  height: 764px;
  background: radial-gradient(50% 50% at 50% 50%, #D4B6F7 0%, rgba(235, 234, 235, 0.01) 100%);
  top: -50px;
  right: 348px;
}
@media screen and (max-width: 1440px) {
  .vision__circle:nth-child(1) {
    right: -92px;
  }
}
@media (max-width: 992px) {
  .vision__circle:nth-child(1) {
    right: -654px;
  }
}
@media screen and (max-width: 541px) {
  .vision__circle:nth-child(1) {
    width: 861px;
    height: 861px;
    top: -219px;
    right: -553px;
  }
}
.vision__circle:nth-child(2) {
  width: 1118px;
  height: 1118px;
  background: radial-gradient(50% 50% at 50% 50%, #F989A7 0%, rgba(235, 234, 235, 0.01) 100%);
  top: -498px;
  right: -38px;
  opacity: 0.8;
}
@media screen and (max-width: 1440px) {
  .vision__circle:nth-child(2) {
    right: -478px;
  }
}
@media (max-width: 992px) {
  .vision__circle:nth-child(2) {
    top: -198px;
    right: -590px;
  }
}
@media screen and (max-width: 541px) {
  .vision__circle:nth-child(2) {
    width: 600px;
    height: 600px;
    left: -244px;
    bottom: -267px;
    top: auto;
  }
}
.vision__circle:nth-child(3) {
  width: 1118px;
  height: 1118px;
  background: radial-gradient(50% 50% at 50% 50%, #D4B6F7 0%, rgba(235, 234, 235, 0.01) 100%);
  top: -85px;
  left: -559px;
}
@media screen and (max-width: 541px) {
  .vision__circle:nth-child(3) {
    width: 600px;
    height: 600px;
    top: 78px;
    left: -320px;
  }
}
@media screen and (max-width: 541px) {
  .vision__circle:nth-child(4) {
    width: 288px;
    height: 288px;
    background: radial-gradient(50% 50% at 50% 50%, #F989A7 0%, rgba(235, 234, 235, 0.01) 100%);
    top: -164px;
    left: -90px;
  }
}

.purpose__content {
  background: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 53px 40px;
  background-image: url("../img/purpose-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  .purpose__content {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .purpose__content {
    background-image: url("../img/purpose-bg-tablet.png");
  }
}
@media screen and (max-width: 541px) {
  .purpose__content {
    background-image: url("../img/purpose-bg-mob.png");
    padding: 40px 15px 0;
    display: flex;
    flex-direction: column;
  }
}
.purpose__desc {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: var(--bradius);
  padding: 20px;
  max-width: 513px;
}
@media screen and (max-width: 1440px) {
  .purpose__desc {
    max-width: 440px;
  }
}
@media screen and (max-width: 541px) {
  .purpose__desc {
    max-width: 100%;
    padding: 15px;
  }
}
.purpose__img {
  display: none;
}
@media screen and (max-width: 541px) {
  .purpose__img {
    display: flex;
    align-items: center;
    height: 280px;
    margin-top: -20px;
  }
  .purpose__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.values__offer {
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .values__offer {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .values__offer {
    font-size: 46px;
    line-height: 48.3px;
  }
}
@media screen and (max-width: 541px) {
  .values__offer {
    font-size: 32px;
    line-height: 33.6px;
    margin-bottom: 10px;
  }
}
.values__desc {
  padding: 20px;
  border-radius: var(--bradius);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .values__desc {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 541px) {
  .values__desc {
    margin-bottom: 10px;
    padding: 15px;
  }
}
.values__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .values__items {
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .values__items {
    row-gap: 10px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.values__item {
  grid-column: 4 span;
  background: var(--blue-op);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: var(--bradius);
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .values__item {
    padding: 20px;
    row-gap: 15px;
  }
}
@media (max-width: 700px) {
  .values__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 541px) {
  .values__item {
    grid-column: 12 span;
    padding: 15px;
    row-gap: 0;
    -moz-column-gap: 15px;
         column-gap: 15px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }
}
.values__item-img {
  max-width: 80px;
}
@media screen and (max-width: 1440px) {
  .values__item-img {
    max-width: 70px;
  }
}
@media screen and (max-width: 541px) {
  .values__item-img {
    min-width: 70px;
  }
}
.values__item-img img {
  max-width: 100%;
}
.strategies__items {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 1440px) {
  .strategies__items {
    row-gap: 30px;
  }
}
@media (max-width: 576px) {
  .strategies__items {
    row-gap: 10px;
  }
}
.strategies__circle {
  position: absolute;
}
.strategies__circle:nth-child(1) {
  width: 1043px;
  height: 1043px;
  left: -411px;
  top: -538px;
  background: radial-gradient(50% 50% at 50% 50%, #F989A7 0%, rgba(235, 234, 235, 0.01) 100%);
}
.strategies__circle:nth-child(2) {
  width: 957px;
  height: 957px;
  top: -97px;
  left: 213px;
  background: radial-gradient(50% 50% at 50% 50%, #D4B6F7 0%, rgba(235, 234, 235, 0.01) 100%);
}
.strategies__circle:nth-child(3) {
  width: 957px;
  height: 957px;
  top: 34px;
  left: -16px;
  background: radial-gradient(50% 50% at 50% 50%, #D4B6F7 0%, rgba(235, 234, 235, 0.01) 100%);
}
.strategies__item {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: var(--extra-light-blue);
  position: relative;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .strategies__item {
    flex-direction: column;
  }
}
.strategies__item:nth-child(2n) {
  flex-direction: row-reverse;
  background: var(--light-pink);
}
@media (max-width: 576px) {
  .strategies__item:nth-child(2n) {
    flex-direction: column-reverse;
  }
}
.strategies__item:nth-child(2n) .strategies__item-img {
  background-position: right center;
}
.strategies__item:nth-child(2n) .strategies__item-img--mob img {
  -o-object-position: center top;
     object-position: center top;
}
.strategies__item:nth-child(2n) .strategies__circle:nth-child(1) {
  left: auto;
  right: 105px;
  top: -411px;
}
.strategies__item:nth-child(2n) .strategies__circle:nth-child(2) {
  top: -297px;
  left: -137px;
}
.strategies__item:nth-child(2n) .strategies__circle:nth-child(3) {
  top: -166px;
  left: -366px;
}
.strategies__item-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 80%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .strategies__item-content {
    padding: 20px;
    row-gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .strategies__item-content {
    width: 66.6%;
  }
}
@media (max-width: 576px) {
  .strategies__item-content {
    width: 100%;
    padding: 15px;
    row-gap: 10px;
  }
}
.strategies__item-offer {
  color: var(--burgundy);
}
@media (max-width: 576px) {
  .strategies__item-offer {
    text-align: center;
  }
}
.strategies__item-desc {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: var(--bradius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 576px) {
  .strategies__item-desc {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .strategies__item-desc h3 {
    display: none;
  }
}
.strategies__item-img {
  width: 20%;
  position: relative;
  z-index: 1;
  align-self: stretch;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .strategies__item-img {
    width: 33.3%;
  }
}
@media (max-width: 576px) {
  .strategies__item-img {
    display: none;
  }
}
.strategies__item-img--mob {
  display: none;
}
@media (max-width: 576px) {
  .strategies__item-img--mob {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
  }
  .strategies__item-img--mob img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.main--education {
  background-image: url("../img/education-main.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .main--education {
    background-image: url("../img/main-education-tablet.png");
  }
}
@media screen and (max-width: 541px) {
  .main--education {
    background-image: url("../img/main-education-mob.png");
  }
}

.educ__body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .educ__body {
    gap: 15px 20px;
  }
}
@media screen and (max-width: 768px) {
  .educ__body {
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .educ__body {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 10px;
  }
}
.educ__img {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 26px 26px 106px;
  border-radius: 10px;
  background: white;
  grid-column: 4 span;
  grid-row: 2 span;
  height: 427px;
}
@media screen and (max-width: 1440px) {
  .educ__img {
    height: 420px;
    grid-column: 6 span;
    padding: 20px 20px 80px;
  }
}
@media screen and (max-width: 768px) {
  .educ__img {
    order: 2;
    grid-row: 1 span;
    height: 320px;
  }
}
@media screen and (max-width: 541px) {
  .educ__img {
    order: 1;
    grid-column: 12 span;
    height: 258px;
    padding: 12px 12px 60px;
  }
}
.educ__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.educ__desc {
  padding: 20px;
  border-radius: var(--bradius);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  grid-column: 8 span;
  grid-row: 1 span;
  line-height: 25.78px;
}
@media screen and (max-width: 1440px) {
  .educ__desc {
    grid-column: 6 span;
    line-height: 19.92px;
  }
  .educ__desc:last-child {
    height: -moz-max-content;
    height: max-content;
  }
}
@media screen and (max-width: 768px) {
  .educ__desc:nth-child(2) {
    order: 1;
    grid-column: 12 span;
  }
}
@media screen and (max-width: 768px) and (max-width: 541px) {
  .educ__desc:nth-child(2) {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .educ__desc:last-child {
    order: 3;
  }
}
@media screen and (max-width: 541px) {
  .educ__desc {
    grid-column: 12 span;
    padding: 15px;
  }
}

.programm__slider-wrapper {
  position: relative;
}
.programm__slider-wrapper .swiper-pagination {
  display: none;
}
@media (max-width: 992px) {
  .programm__slider-wrapper .swiper-pagination {
    display: flex;
  }
}
.programm__slider-wrapper .swiper-slide {
  height: auto !important;
}
.programm__slider {
  overflow: hidden;
  margin: 0 81px;
}
@media screen and (max-width: 1440px) {
  .programm__slider {
    margin: 0 65px;
  }
}
@media (max-width: 992px) {
  .programm__slider {
    margin: 0;
  }
}
.programm__item {
  padding: 5px;
  border-radius: var(--bradius);
  background: white;
  height: 100%;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.programm__item--planned, .programm__item--dev {
  pointer-events: none;
  color: var(--grey-1);
}
.programm__item--planned .programm__item-img img, .programm__item--dev .programm__item-img img {
  opacity: 0.6;
}
.programm__item--planned {
  background: var(--light-pink);
}
.programm__item--dev {
  background: var(--extra-light-blue);
}
.programm__item:hover {
  border-color: var(--blue);
}
.programm__item:hover .programm__item-offer {
  color: var(--blue);
}
.programm__item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.programm__item-img {
  height: 120px;
  margin-bottom: 10px;
  border-radius: var(--bradius);
  overflow: hidden;
  background: rgb(186, 186, 245);
}
.programm__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.programm__item-wrap {
  padding: 0 10px 15px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
@media screen and (max-width: 541px) {
  .programm__item-wrap {
    padding: 0 10px 10px;
  }
}
.programm__item-offer {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 88px;
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .programm__item-offer {
    min-height: 75px;
  }
}
@media screen and (max-width: 768px) {
  .programm__item-offer {
    font-size: 24px;
  }
}
@media screen and (max-width: 541px) {
  .programm__item-offer {
    font-size: 20px;
    min-height: 67px;
  }
}
.programm__item-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.lessons__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .lessons__items {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .lessons__items {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.lessons__item {
  grid-column: 6 span;
  background: var(--bg-body);
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 398px 30px 30px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .lessons__item {
    padding: 300px 15px 15px;
  }
}
@media screen and (max-width: 768px) {
  .lessons__item {
    grid-column: 12 span;
  }
}
@media screen and (max-width: 541px) {
  .lessons__item {
    padding: 171px 10px 10px;
  }
}
.lessons__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.lessons__item.active {
  padding-top: 30px;
}
@media screen and (max-width: 1440px) {
  .lessons__item.active {
    padding-top: 15px;
  }
}
.lessons__item.active::after {
  opacity: 1;
}
.lessons__item.active .lessons__item-wrap {
  max-height: 353px;
  margin-top: 15px;
  overflow: visible;
}
@media screen and (max-width: 1440px) {
  .lessons__item.active .lessons__item-wrap {
    margin-top: 10px;
    max-height: 275px;
  }
}
@media screen and (max-width: 541px) {
  .lessons__item.active .lessons__item-wrap {
    max-height: -moz-max-content;
    max-height: max-content;
  }
}
.lessons__item.active .lessons__item-arrow {
  transform: rotate(180deg);
}
.lessons__item-img {
  height: 353px;
  border-radius: var(--bradius);
  overflow: hidden;
  position: absolute;
  width: calc(100% - 60px);
  top: 30px;
  left: 30px;
}
@media screen and (max-width: 1440px) {
  .lessons__item-img {
    height: 275px;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 541px) {
  .lessons__item-img {
    height: 150px;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }
}
.lessons__item-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 6, 45, 0.2);
}
.lessons__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lessons__item-content {
  position: relative;
  z-index: 1;
}
.lessons__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.lessons__item-offer {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.lessons__item-arrow {
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}
.lessons__item-arrow svg {
  border-radius: 100%;
}
.lessons__item-arrow:hover rect {
  fill: var(--blue);
}
.lessons__item-wrap {
  max-height: 0px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s ease;
}
.lessons__item-desc {
  margin-bottom:15px;font-size:21px;
/*   overflow: hidden; */
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1440px) {
  .lessons__item-desc {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 541px) {
  .lessons__item-desc {
    overflow: visible;
    text-overflow: none;
    display: block;
  }
}
.lessons__item-btn {
  width: 100%;
}
.lessons__els {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .lessons__els {
    row-gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .lessons__els {
    row-gap: 10px;
  }
}
.lessons__el {
  background: var(--bg-body);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .lessons__el {
    padding: 15px;
  }
}
.lessons__el.active {
  background: white;
}
.lessons__el.active .lessons__el-wrap .lessons__el-wrap-img, .lessons__el.active .lessons__el-wrap .lessons__el-wrap-right {
  opacity: 0;
}
.lessons__el.active .lessons__el-content .lessons__el-content-top, .lessons__el.active .lessons__el-content .lessons__el-content-bottom {
  opacity: 1;
}
.lessons__el-wrap {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 1440px) {
  .lessons__el-wrap {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.lessons__el-wrap-img {
  max-width: 150px;
  min-width: 150px;
  border-radius: var(--bradius);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease;
}
@media screen and (max-width: 541px) {
  .lessons__el-wrap-img {
    max-width: 60px;
    min-width: 60px;
    height: 60px;
  }
}
.lessons__el-wrap-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 6, 45, 0.2);
}
.lessons__el-wrap-right {
  width: 100%;
  transition: 0.3s ease;
}
.lessons__el-wrap-top {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 541px) {
  .lessons__el-wrap-top {
    margin-bottom: 0;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.lessons__el-offer {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.lessons__el-arrow {
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}
.lessons__el-arrow svg {
  border-radius: 100%;
}
.lessons__el-arrow:hover rect {
  fill: var(--blue);
}
.lessons__el-wrap-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 541px) {
  .lessons__el-wrap-desc {
    display: none;
  }
}
.lessons__el-content {
  display: none;
}
.lessons__el-content .lessons__el-offer {
  overflow: visible;
  display: block;
  text-overflow: inherit;
}
.lessons__el-content .lessons__el-arrow {
  transform: rotate(180deg);
}
.lessons__el-content-top {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 15px;
  opacity: 0;
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .lessons__el-content-top {
    margin-bottom: 10px;
  }
}
.lessons__el-content-bottom {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  opacity: 0;
  transition: 0.3s ease;
}
@media screen and (max-width: 541px) {
  .lessons__el-content-bottom {
    flex-direction: column-reverse;
    row-gap: 10px;
  }
}
.lessons__el-content-left {
  min-width: 350px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 700px) {
  .lessons__el-content-left {
    min-width: 270px;
    max-width: 270px;
  }
}
@media screen and (max-width: 541px) {
  .lessons__el-content-left {
    min-width: 0;
    max-width: 100%;
  }
}
.lessons__el-content-img {
  border-radius: var(--bradius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 541px) {
  .lessons__el-content-img {
    height: 150px;
  }
}
.lessons__el-content-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 6, 45, 0.2);
}
@media screen and (max-width: 541px) {
  .lessons__el-btn {
    display: none;
  }
}
.lessons__el-btn--mob {
  display: none;
}
@media screen and (max-width: 541px) {
  .lessons__el-btn--mob {
    display: block;
    margin-bottom: 10px;
  }
}
.calendar__content {
  display: flex;
  align-items: center;
  margin: 0 110px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1440px) {
  .calendar__content {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 1250px) {
  .calendar__content {
    margin: 0;
  }
}
@media (max-width: 700px) {
  .calendar__content {
    flex-direction: column;
    row-gap: 10px;
  }
}
.calendar__wrap {
  min-width: 460px;
  max-width: 460px;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap {
    max-width: 380px;
    min-width: 380px;
  }
}
@media (max-width: 700px) {
  .calendar__wrap {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
}
.calendar__wrap .calendar-box {
  background: white;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .calendar-box {
    border-radius: var(--bradius);
  }
}
.calendar__wrap .buttons-container {
  background: var(--extra-light-blue);
  margin-bottom: 0;
  padding: 12px 19px;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .buttons-container {
    padding: 10px 16px;
  }
}
.calendar__wrap .prev-button, .calendar__wrap .next-button {
  font-size: 0;
  background-image: url("../img/calendar-arrow.svg");
  min-width: 53px;
  max-width: 53px;
  height: 53px;
  border-radius: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  background-color: var(--light-2);
  transition: 0.3s ease;
  cursor: pointer;
}
.calendar__wrap .prev-button:hover, .calendar__wrap .next-button:hover {
  background-color: var(--blue);
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .prev-button, .calendar__wrap .next-button {
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    background-size: 20px;
  }
}
.calendar__wrap .next-button {
  transform: rotate(180deg);
}
.calendar__wrap .label-container.month-container {
  pointer-events: none;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  text-transform: capitalize;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .label-container.month-container {
    font-size: 20px;
    line-height: 23px;
  }
}
.calendar__wrap .weeks-wrapper.header {
  border: none;
  box-shadow: none;
  padding: 0;
}
.calendar__wrap .weeks-wrapper.header .week {
  padding: 18px 0px 12px;
  background: white;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .weeks-wrapper.header .week {
    padding: 15px 0 10px;
  }
}
.calendar__wrap .day.header {
  font-weight: 300;
  color: var(--color-body) !important;
  font-size: 24px;
  line-height: 28px;
  text-transform: lowercase;
  box-shadow: none;
  padding: 0;
  background: white;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .day.header {
    font-size: 20px;
    line-height: 23px;
  }
}
.calendar__wrap .weeks-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 4.84px;
  margin: 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-1);
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .weeks-wrapper {
    row-gap: 4px;
    padding-bottom: 10px;
    margin: 0 15px;
  }
}
.calendar__wrap .weeks-wrapper .week {
  margin: 0;
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .weeks-wrapper .week {
    -moz-column-gap: 5.83px;
         column-gap: 5.83px;
  }
}
.calendar__wrap .weeks-wrapper .day {
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
}
.calendar__wrap .weeks-wrapper .day.selected span, .calendar__wrap .weeks-wrapper .day.selected.today span {
  background: var(--blue);
  color: white;
}
.calendar__wrap .weeks-wrapper .day.today span {
  background: var(--light-pink);
  font-weight: 300;
}
.calendar__wrap .weeks-wrapper .day.today span::after {
  display: none;
}
.calendar__wrap .weeks-wrapper .day span {
  border-radius: 6px;
  background: var(--light-1);
  font-size: 24px;
  line-height: 28px;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-body);
}
.calendar__wrap .weeks-wrapper .day span:hover {
  background: var(--light-2);
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .weeks-wrapper .day span {
    font-size: 20px;
    line-height: 23px;
    height: 45px;
    border-radius: var(--bradius);
  }
}
.calendar__wrap .weeks-wrapper .day.disabled span {
  color: var(--grey-1);
  background: var(--extra-light-blue);
}
.calendar__wrap .special-buttons {
  border: none;
  padding: 12px 0 18px;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .special-buttons {
    padding: 10px 0 15px;
  }
}
.calendar__wrap .today-button {
  padding: 6px 18px;
  background: var(--light-pink);
  border-radius: 6px;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .calendar__wrap .today-button {
    padding: 5px 15px;
    font-size: 17px;
    line-height: 19px;
  }
}
.calendar__right {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1440px) {
  .calendar__right {
    row-gap: 15px;
  }
}
@media (max-width: 700px) {
  .calendar__right {
    row-gap: 10px;
  }
}
.calendar__items {
  padding: 30px;
  border-radius: var(--bradius);
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  background: white;
}
@media screen and (max-width: 1440px) {
  .calendar__items {
    padding: 15px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 1440px) {
  .calendar .book__price {
    padding: 15px;
  }
}
@media screen and (max-width: 1440px) {
  .calendar .book__btn {
    display: block;
  }
}
.calendar__price {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1440px) {
  .calendar__price {
    row-gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .calendar__price {
    display: none;
  }
}
.calendar__price--mob {
  display: none;
}
@media screen and (max-width: 768px) {
  .calendar__price--mob {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-top: 20px;
  }
}
@media (max-width: 700px) {
  .calendar__price--mob {
    margin-top: 10px;
    row-gap: 10px;
  }
}
.calendar__item {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.anoncourse__slider-wrapper {
  position: relative;
}
.anoncourse__slider-wrapper .swiper-pagination {
  display: none;
}
@media (max-width: 992px) {
  .anoncourse__slider-wrapper .swiper-pagination {
    display: flex;
  }
}
.anoncourse__slider-wrapper .swiper-slide {
  height: auto !important;
}
.anoncourse__slider {
  overflow: hidden;
  margin: 0 81px;
}
@media screen and (max-width: 1440px) {
  .anoncourse__slider {
    margin: 0 65px;
  }
}
@media (max-width: 992px) {
  .anoncourse__slider {
    margin: 0;
  }
}
.anoncourse__item {
  border-radius: var(--bradius);
  background: var(--extra-light-blue);
  padding: 5px;
  position: relative;
  transition: 0.3s ease;
}
.anoncourse__item:hover {
  background: var(--light-1);
}
.anoncourse__item:hover .anoncourse__item-img img {
  transform: scale(1.3);
}
.anoncourse__item-link {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.anoncourse__item-img {
  height: 190px;
  overflow: hidden;
  border-radius: var(--bradius);
}
@media screen and (max-width: 541px) {
  .anoncourse__item-img {
    height: 150px;
  }
}
.anoncourse__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.anoncourse__item-wrap {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .anoncourse__item-wrap {
    padding: 10px 15px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 541px) {
  .anoncourse__item-wrap {
    padding: 10px;
    row-gap: 5px;
  }
}
.anoncourse__item-offer {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 88px;
}
@media screen and (max-width: 1440px) {
  .anoncourse__item-offer {
    min-height: 75px;
  }
}
@media screen and (max-width: 768px) {
  .anoncourse__item-offer {
    font-size: 24px;
  }
}
@media screen and (max-width: 541px) {
  .anoncourse__item-offer {
    font-size: 20px;
    min-height: 67px;
  }
}
.anoncourse__item-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 78px;
}
@media screen and (max-width: 1440px) {
  .anoncourse__item-desc {
    min-height: 60px;
  }
}
.anoncourse__item-btn {
  position: relative;
  z-index: 1;
}

.faq__items {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .faq__items {
    row-gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .faq__items {
    row-gap: 10px;
  }
}
.faq__item {
  background: var(--extra-light-blue);
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s ease;
  cursor: pointer;
}
.faq__item:hover .faq__item-offer {
  color: var(--blue);
}
.faq__item.active {
  background: white;
}
.faq__item.active .faq__item-arrow {
  transform: rotate(180deg);
}
.faq__item.active .faq__item-offer {
  margin-top: -7px;
}
@media screen and (max-width: 1440px) {
  .faq__item.active .faq__item-offer {
    margin-top: -10.5px;
  }
}
@media screen and (max-width: 541px) {
  .faq__item.active .faq__item-offer {
    margin-top: 0;
  }
}
.faq__item.active:hover .faq__item-offer {
  color: var(--color-body);
}
@media screen and (max-width: 1440px) {
  .faq__item {
    padding: 10px 20px;
  }
  .faq__item.active {
    padding: 20px;
  }
}
@media screen and (max-width: 541px) {
  .faq__item {
    padding: 10px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .faq__item.active {
    padding: 10px;
  }
}
.faq__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
  width: 100%;
}
.faq__item-offer {
  transition: 0.3s ease;
}
.faq__item-desc {
  pointer-events: none;
  display: none;
  margin-right: 84px;
  margin-top: -4px;
}
@media screen and (max-width: 1440px) {
  .faq__item-desc {
    margin-top: -7.5px;
  }
}
@media screen and (max-width: 541px) {
  .faq__item-desc {
    margin-top: 10px;
    margin-right: 0;
  }
}
.faq__item-arrow {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  max-width: 44px;
  min-width: 44px;
  transition: 0.3s ease;
}
.faq__item-arrow:hover rect {
  fill: var(--blue);
}

.main--courses {
  background-image: url("../img/courses-main.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .main--courses {
    background-image: url("../img/main-courses-tablet.png");
  }
}
@media screen and (max-width: 541px) {
  .main--courses {
    background-image: url("../img/main-courses-mob.png");
  }
}

.courses__slider-wrapper {
  position: relative;
}
.courses__slider-wrapper .swiper-pagination {
  display: none;
}
@media (max-width: 992px) {
  .courses__slider-wrapper .swiper-pagination {
    display: flex;
  }
}
.courses__slider-wrapper .swiper-slide {
  height: auto !important;
}
.courses__slider {
  overflow: hidden;
  margin: 0 81px;
}
@media screen and (max-width: 1440px) {
  .courses__slider {
    margin: 0 65px;
  }
}
@media (max-width: 992px) {
  .courses__slider {
    margin: 0;
  }
}
.courses__item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  row-gap: 15px;
  position: relative;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .courses__item {
    padding: 15px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 541px) {
  .courses__item {
    padding: 10px;
  }
}
.courses__item:hover {
  border-color: var(--blue);
}
.courses__item:hover .courses__item-offer {
  color: var(--blue);
}
.courses__item-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.courses__item-img {
  display: flex;
  align-items: center;
  max-width: 60px;
}
@media screen and (max-width: 1440px) {
  .courses__item-img {
    max-width: 50px;
  }
}
.courses__item-img img {
  width: 100%;
}
.courses__item-offer {
  color: var(--grey-1);
  transition: 0.3s ease;
}
.courses__item-desc {
  color: var(--grey-1);
}
.courses__item-btn {
  padding: 11px 30px;
  display: inline-block;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.courses__item--planned, .courses__item--dev {
  pointer-events: none;
}
.courses__item--planned .courses__item-btn, .courses__item--dev .courses__item-btn {
  background: var(--light-1);
  border-color: var(--light-1);
  color: var(--light-2);
}
.courses__item--planned {
  background: var(--light-pink);
}
.courses__item--dev {
  background: var(--extra-light-blue);
}

.maincourse__body {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  background: white;
  border-radius: var(--bradius);
  padding: 30px;
}
@media screen and (max-width: 1440px) {
  .maincourse__body {
    padding: 20px;
  }
}
@media screen and (max-width: 541px) {
  .maincourse__body {
    padding: 10px;
  }
}
.maincourse__presentate {
  margin-bottom: 30px;
  height: 250px;
  border-radius: var(--bradius);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .maincourse__presentate {
    height: 200px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 541px) {
  .maincourse__presentate {
    height: 120px;
    margin-bottom: 10px;
  }
}
.maincourse__presentate::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 6, 45, 0.4);
}
.maincourse__presentate-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  border-radius: 100px;
  padding: 11px 30px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.maincourse__content {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .maincourse__content {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .maincourse__content {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 10px;
  }
}
.maincourse__img {
  width: 50%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--bradius);
}
@media screen and (max-width: 541px) {
  .maincourse__img {
    width: 100%;
    height: 150px;
  }
}
.maincourse__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.maincourse__wrap {
  width: 50%;
}
@media screen and (max-width: 541px) {
  .maincourse__wrap {
    width: 100%;
  }
}
.maincourse__desc {
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .maincourse__desc {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 541px) {
  .maincourse__desc {
    display: none;
  }
}
.maincourse__desc--mob {
  display: none;
}
@media screen and (max-width: 541px) {
  .maincourse__desc--mob {
    display: block;
    width: 100%;
  }
}
.maincourse__price-sub {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .maincourse__price-sub {
    margin-bottom: 10px;
  }
  .maincourse__price-sub img {
    max-width: 21px;
  }
}
.maincourse__price-crossed {
  color: var(--grey-1);
  text-decoration: line-through;
}
.maincourse__price {
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .maincourse__price {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 541px) {
  .maincourse__price {
    margin-bottom: 10px;
  }
}
.maincourse__btn {
  border-radius: 100px;
}

.subcourse--dev .subcourse__body {
  background: var(--extra-light-blue);
}
.subcourse--planned .subcourse__body {
  background: var(--light-pink);
}
.subcourse__body {
  border-radius: var(--bradius);
  padding: 30px;
}
@media screen and (max-width: 1440px) {
  .subcourse__body {
    padding: 20px;
  }
}
@media screen and (max-width: 541px) {
  .subcourse__body {
    padding: 10px;
  }
}
.subcourse .maincourse__content {
  align-items: flex-start;
}
.subcourse .maincourse__presentate {
  width: 50%;
  height: auto;
  align-self: stretch;
  margin-bottom: 0;
  padding: 20px;
}
@media screen and (max-width: 541px) {
  .subcourse .maincourse__presentate {
    width: 100%;
    height: 120px;
  }
}
.subcourse .maincourse__presentate-btn {
  text-align: center;
  display: inline-block;
  width: auto;
}
.subcourse__sub {
  text-align: center;
  margin-bottom: 5px;
  color: var(--grey-1);
}
@media screen and (max-width: 541px) {
  .subcourse__sub {
    margin-bottom: 10px;
  }
}
.subcourse__offer {
  color: var(--grey-1);
}
.subcourse__desc {
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .subcourse__desc {
    margin-bottom: 15px;
  }
}

.footer {
  background: var(--light-1);
  padding: 30px 0 40px;
}
@media (max-width: 992px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__body {
  margin: 0 -20px;
}
@media screen and (max-width: 1440px) {
  .footer__body {
    margin: 0;
  }
}
.footer__top {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 20px;
}
@media screen and (max-width: 1440px) {
  .footer__top {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 992px) {
  .footer__top {
    display: flex;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    text-align: center;
  }
}
.footer__navs {
  grid-column: 8 span;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 20px;
}
@media screen and (max-width: 1440px) {
  .footer__navs {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 992px) {
  .footer__navs {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .footer__navs {
    text-align: left;
  }
}
.footer__navs ul {
  grid-column: 6 span;
}
@media (max-width: 992px) {
  .footer__navs ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 992px) {
  .footer__navs ul:nth-child(2) li:last-child {
    display: none;
  }
}
.footer__navs ul:last-child {
  display: none;
  grid-column: 12 span;
}
@media (max-width: 992px) {
  .footer__navs ul:last-child {
    display: block;
  }
}
.footer__navs ul li a {
  padding: 15px 20px;
  display: inline-block;
  transition: 0.3s ease;
  border-radius: var(--bradius);
}
@media screen and (max-width: 1440px) {
  .footer__navs ul li a {
    padding: 10px 15px;
  }
}
.footer__navs ul li a:hover {
  color: var(--burgundy-light);
}
.footer__navs ul li a:active {
  background: var(--extra-light-blue);
}
.footer__left {
  grid-column: 4 span;
}
.footer__logo {
  width: 228px;
  margin-bottom: 10px;
  display: inline-block;
}
@media screen and (max-width: 1440px) {
  .footer__logo {
    width: 114px;
  }
}
@media (max-width: 992px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .footer__social {
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .footer__social {
    gap: 15px;
  }
}
.footer__social a {
  background: white;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 6.25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
@media screen and (max-width: 1440px) {
  .footer__social a {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    border-radius: var(--bradius);
    padding: 4px;
  }
}
@media (max-width: 992px) {
  .footer__social a {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    border-radius: 7.81px;
    padding: 6px;
  }
}
.footer__social a img {
  width: 100%;
}
.footer__text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .footer__text {
    margin-bottom: 20px;
  }
}
.footer__projects {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .footer__projects {
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .footer__projects {
    gap: 15px;
  }
}
.footer__projects a {
  background: white;
  max-width: 60px;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.25px;
  border-radius: 9.38px;
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .footer__projects a {
    max-width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 7.81px;
  }
}
.footer__projects a img {
  max-width: 100%;
  filter: saturate(0);
  transition: 0.3s ease;
}
.footer__projects a:hover {
  padding: 4.69px;
}
.footer__projects a:hover img {
  filter: saturate(1);
}
.footer__bottom {
  text-align: center;
}
.footer__pays {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 541px) {
  .footer__pays {
    gap: 4.4px;
  }
}
.footer__pays div {
  display: flex;
  align-items: center;
  max-width: 61px;
  min-width: 61px;
  height: 39.04px;
  background: white;
  border-radius: var(--bradius);
  padding: 10px;
}
.footer__pays div img {
  max-width: 100%;
  filter: opacity(100%) saturate(0%);
}
.footer__pays div:nth-child(5) img {
  filter: opacity(70%) saturate(0%);
}
.footer__pays div:last-child {
  padding: 7px;
}
.footer__pays div:last-child img {
  filter: opacity(70%) saturate(0%);
}
.footer__desc a {
  text-decoration: underline;
}
.footer__desc a:hover {
  text-decoration: none;
}

.modal {
  display: none;
  background: var(--extra-light-blue);
  border-radius: 10px;
  padding: 40px;
  max-width: 700px;
  overflow: visible;
}
@media screen and (max-width: 1440px) {
  .modal {
    padding: 30px;
    margin: 0 49px;
  }
}
@media screen and (max-width: 768px) {
  .modal {
    max-width: 602px;
  }
}
@media screen and (max-width: 541px) {
  .modal {
    padding: 15px;
    margin: 15px;
  }
}
.modal__body {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .modal__body {
    row-gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .modal__body {
    row-gap: 10px;
  }
}
.modal__top {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1440px) {
  .modal__top {
    row-gap: 10px;
  }
}
.modal__top ol {
  text-align: left;
}
.modal__top .footer__social {
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .modal__top .footer__social {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .modal__top .footer__social a {
    max-width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: var(--bradius);
  }
}
.modal__price {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 1440px) {
  .modal__price {
    row-gap: 5px;
  }
}
.modal__alert {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.modal form {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1440px) {
  .modal form {
    row-gap: 20px;
  }
}
@media screen and (max-width: 541px) {
  .modal form {
    row-gap: 10px;
  }
}
.modal form button {
  font-weight: 300;
  border-radius: 100px;
  grid-column: 6 span;
}
@media (max-width: 640px) {
  .modal form button {
    grid-column: 12 span;
  }
}
.modal__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 541px) {
  .modal__inputs {
    row-gap: 10px;
  }
}
.modal__btns {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 640px) {
  .modal__btns {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 10px;
  }
}
.modal__cancel {
  grid-column: 6 span;
}
@media (max-width: 640px) {
  .modal__cancel {
    grid-column: 12 span;
  }
}
.modal__discount {
  background: var(--light-2);
  border-radius: var(--bradius);
  padding: 20px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.modal__discount-img {
  display: flex;
  align-items: center;
}
.modal__thanks {
  display: flex;
  justify-content: center;
}
.modal__thanks span {
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 11px 27px;
}
@media screen and (max-width: 1440px) {
  .modal__thanks span {
    padding: 11px 110px;
  }
}
@media screen and (max-width: 541px) {
  .modal__thanks span {
    padding: 11px 0;
    max-width: 100%;
    width: 100%;
  }
}
.modal__default {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.modal .fancybox-button.fancybox-close-small {
  background-image: url("../img/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: var(--blue);
  opacity: 1;
  margin-right: -49px;
}
@media screen and (max-width: 541px) {
  .modal .fancybox-button.fancybox-close-small {
    margin-right: -15px;
    margin-top: -15px;
  }
}
.modal .fancybox-button.fancybox-close-small:hover {
  background-color: var(--burgundy-light);
}
.modal .fancybox-button.fancybox-close-small svg {
  display: none;
}

#thanks {
  max-width: 780px;
}
@media screen and (max-width: 768px) {
  #thanks {
    max-width: 602px;
  }
}
