@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rozha+One&display=swap");
:root {
  --main-font: "Roboto", sans-serif;
  --secondary-font: "Rozha One", serif;
  --text-color: #222221;
  --secondary-color: #1D074E;
  --accent-color: #FF0000;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--main-font);
  margin: 0;
  background-color: #fffdce;
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1315px;
  margin: 0 auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 136px;
  padding: 0;
  border: none;
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  scale: 110%;
}
@media screen and (min-width: 1315px) {
  .button {
    width: 180px;
  }
}

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.heading {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 52px;
  color: var(--secondary-color);
  text-align: center;
  text-transform: uppercase;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fffdce;
}
.header__button-wrapper {
  margin-left: auto;
  z-index: 12;
}
.header-icon {
  display: none;
  width: 44px;
  height: 44px;
  fill: #1d074e;
}
.header .burger-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  background-color: transparent;
  z-index: 10;
}
.header .logo {
  width: 256px;
}

.header.is-open {
  background-color: #fff;
}

.header__icon-menu {
  display: block;
}

.burger-button.is-open .header__icon-menu {
  display: none;
}

.burger-button.is-open .header__icon-close {
  display: block;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 22px;
  position: relative;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  padding-top: 80px;
  padding-bottom: 28px;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 3;
}
.navigation__list img {
  width: 210px;
}
.navigation__list.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.navigation__list.is-open .header {
  background-color: #fff;
}
.navigation .nav-link {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--text-color);
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation .nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-65%, -61%) scale(0.8);
          transform: translate(-65%, -61%) scale(0.8);
  opacity: 0;
  background-image: url("../../images/hover-img.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 265px;
  height: 43px;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.navigation .nav-link.is-active::after {
  opacity: 1;
  -webkit-transform: translate(-65%, -61%) scale(1);
          transform: translate(-65%, -61%) scale(1);
}

@media screen and (min-width: 1315px) {
  .header .burger-button {
    display: none;
  }
  .header .logo {
    width: 546px;
  }
  .navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-block: 30px;
  }
  .navigation__list {
    -webkit-transform: none;
            transform: none;
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    padding-block: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navigation__list img {
    display: none;
  }
}
.home {
  padding: 106px 10px 130px 10px;
}
@media (min-width: 1315px) {
  .home {
    padding-top: 184px;
  }
}
.home h1 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 90px;
  line-height: 92px;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 47px;
}
@media (min-width: 1315px) {
  .home h1 {
    font-weight: 400;
    font-size: 110px;
    line-height: 120px;
  }
}
.home h2 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 46px;
  line-height: 52px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 61px;
}
@media (min-width: 1315px) {
  .home h2 {
    font-weight: 400;
    font-size: 50px;
    line-height: 52px;
  }
}
.home img {
  margin: 0 auto;
  margin-bottom: 61px;
}
.home ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 43px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}
@media (min-width: 1315px) {
  .home ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.courses {
  padding-top: 112px;
  padding-bottom: 778px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1315px) {
  .courses {
    padding-top: 184px;
    padding-bottom: 45px;
    overflow: visible;
  }
}
.courses .woman-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-30%) scaleX(-1) rotate(25deg);
          transform: translateX(-30%) scaleX(-1) rotate(25deg);
  max-width: 370px;
}
@media (min-width: 1315px) {
  .courses .woman-img {
    max-width: none;
    bottom: -250px;
    -webkit-transform: translateX(37%) scaleX(1) rotate(0deg);
            transform: translateX(37%) scaleX(1) rotate(0deg);
  }
}
.courses .text-box {
  padding-inline: 10px;
  margin-bottom: 78px;
}
@media (min-width: 1315px) {
  .courses .text-box {
    margin-bottom: 61px;
  }
}
.courses .courses-list {
  max-width: 725px;
}
.courses .courses-item {
  max-width: 753px;
  width: 100% !important;
  background-color: #fff;
  position: relative;
  padding: 60px 10px 90px 15px;
  margin: 0 22px;
}
.courses .courses-item::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-image: url("../../images/courses-frame.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-51%, -50%);
          transform: translate(-51%, -50%);
  width: 103%;
  height: 100%;
}
.courses h1 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 52px;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1315px) {
  .courses h1 {
    font-weight: 400;
    font-size: 110px;
    line-height: 120px;
  }
}
.courses h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.courses h3 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 52px;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 38px;
}
.courses h4 {
  font-weight: 900;
  font-size: 24px;
  line-height: 20px;
  margin-bottom: 38px;
  text-align: center;
}
.courses p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 24px;
  text-align: center;
}
.courses .list-top {
  list-style: disc;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-left: 20px;
  color: var(--secondary-color);
  margin-bottom: 32px;
}
.courses .list-top span {
  font-weight: 900;
  color: #ff0000;
}
.courses .list-btm {
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}
.courses p:last-of-type {
  text-align: start;
}
.courses .courses-list .slick-list {
  padding: 0 !important;
}
.courses .arrow-wrap {
  max-width: 800px;
}
.courses .button-container {
  margin-top: 36px;
  margin-right: 30px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.footer-add {
  padding-bottom: 50px;
}
@media (min-width: 1315px) {
  .footer-add {
    padding-bottom: 80px;
  }
}

.contacts {
  padding-top: 112px;
  padding-bottom: 116px;
  padding-inline: 10px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1315px) {
  .contacts {
    padding-top: 184px;
    padding-bottom: 164px;
    overflow: visible;
  }
}
.contacts .man-img {
  margin: 0 auto;
}
@media (min-width: 1315px) {
  .contacts .man-img {
    position: absolute;
    pointer-events: none;
    max-width: none;
    left: 50%;
    -webkit-transform: translateX(32%);
            transform: translateX(32%);
  }
}
.contacts h1 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 52px;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1315px) {
  .contacts h1 {
    font-weight: 400;
    font-size: 110px;
    line-height: 120px;
  }
}
.contacts h2 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 38px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 67px;
}
@media (min-width: 1315px) {
  .contacts h2 {
    font-weight: 400;
    font-size: 48px;
    line-height: 50px;
  }
}
.contacts h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 67px;
}
.contacts .mail {
  display: block;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 107px;
  text-align: center;
  text-transform: uppercase;
  color: #f00;
  word-break: break-word;
}
@media (min-width: 1315px) {
  .contacts .mail {
    font-weight: 400;
    font-size: 110px;
    line-height: 120px;
  }
}
.contacts form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
  max-width: 607px;
  margin: 0 auto;
  margin-bottom: 116px;
}
@media (min-width: 1315px) {
  .contacts form {
    margin-bottom: 0;
  }
}
.contacts label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #000;
}
@media (min-width: 1315px) {
  .contacts label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.contacts input,
.contacts textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  outline: none;
}
@media (min-width: 1315px) {
  .contacts input,
  .contacts textarea {
    width: 400px;
  }
}
.contacts textarea {
  resize: vertical;
  max-height: 100px;
}
@media (min-width: 1315px) {
  .contacts textarea {
    min-width: 400px;
    max-width: 400px;
  }
}
.contacts button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: none;
  border: none;
  color: red;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
}

.modal-form {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #222221;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal-form.show {
  opacity: 1;
}

.hidden {
  display: none;
}

.cookie-popup {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 375px;
  min-width: 375px;
  padding: 40px 36px 30px 36px;
  background-color: var(--secondary-color);
}
@media screen and (min-width: 1315px) {
  .cookie-popup {
    max-width: 1315px;
    width: 100%;
    margin-bottom: 30px;
    padding-block: 25px;
  }
}
.cookie-popup .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 53px;
}
@media screen and (min-width: 1315px) {
  .cookie-popup .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 70px;
  }
}
@media screen and (min-width: 1315px) {
  .cookie-popup img {
    width: 146px;
  }
}
.cookie-popup p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 17px;
}
@media screen and (min-width: 1315px) {
  .cookie-popup p {
    margin-bottom: 24px;
  }
}
.cookie-popup .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
}
@media screen and (min-width: 1315px) {
  .cookie-popup .btn-box {
    width: 446px;
    margin: 0 auto;
    gap: 80px;
  }
}
.cookie-popup #declineBtn {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--accent-color);
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--accent-color);
}
.cookie-popup #acceptBtn {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  background-color: var(--text-color);
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3.69px 3.69px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 3.69px 3.69px 0px rgba(0, 0, 0, 0.2509803922);
}
.cookie-popup #declineBtn,
.cookie-popup #acceptBtn {
  height: 35px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cookie-popup #declineBtn:hover,
.cookie-popup #acceptBtn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (min-width: 1315px) {
  .cookie-popup #declineBtn,
  .cookie-popup #acceptBtn {
    height: 39px;
    font-size: 16px;
  }
}

.why-choose {
  padding-bottom: 190px;
  position: relative;
}
@media (min-width: 1315px) {
  .why-choose {
    padding-bottom: 0;
  }
  .why-choose .special {
    margin-right: 350px;
  }
  .why-choose .button-container {
    display: none;
  }
  .why-choose li:nth-child(1)::before,
  .why-choose li:nth-child(2)::before {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}
.why-choose .why-man-img {
  position: absolute;
  bottom: 0;
  right: 30px;
  cursor: pointer;
}
@media (min-width: 1315px) {
  .why-choose .why-man-img {
    top: 110px;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.why-choose h2 {
  margin-bottom: 20px;
}
@media (min-width: 1315px) {
  .why-choose ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.why-choose li {
  position: relative;
  width: 450px;
  height: 320px;
  padding-top: 50px;
  padding-left: 55px;
  padding-right: 45px;
}
@media (min-width: 1315px) {
  .why-choose li {
    margin-inline: -17px;
  }
}
.why-choose li::before {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  background-image: url("../../images/why-frame.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.why-choose h3 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 52px;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 36px;
}
.why-choose p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
}
.why-choose .button-container {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding-left: 42px;
  position: relative;
  z-index: 1;
}

.services {
  padding-top: 140px;
  overflow: hidden;
  /* ::before рамка */
}
@media (min-width: 1315px) {
  .services {
    padding-top: 114px;
  }
}
.services h2 {
  margin-bottom: 32px;
}
@media (min-width: 1315px) {
  .services h2 {
    margin-bottom: 57px;
  }
}
.services ul.services__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 24px;
  justify-items: center;
}
.services .services__list li {
  position: relative;
  background-color: #fff;
  width: 100%;
  z-index: 1;
  padding-inline: 30px;
  padding-top: 22px;
  padding-bottom: 45px;
}
.services .services__list li:nth-child(1),
.services .services__list li:nth-child(2) {
  max-width: 386px;
  padding-inline: 38px;
  padding-top: 54px;
}
.services .services__list li:nth-child(3),
.services .services__list li:nth-child(4) {
  max-width: 515px;
  padding-bottom: 25px;
}
.services .services__list li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../../images/services-frame.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.services .services__list li > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 1315px) {
  .services ul.services__list {
    grid-template-columns: 386px 386px 515px;
    grid-template-rows: auto auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 10px;
  }
  .services .services__list li:nth-child(1),
  .services .services__list li:nth-child(2) {
    grid-row: span 2;
    min-height: 502px;
  }
  .services .services__list li:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    min-height: 251px;
  }
  .services .services__list li:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    min-height: 251px;
  }
}
.services img {
  margin: 0 auto;
}
.services h3 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 52px;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 36px;
}
.services p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
}

.experts {
  padding: 88px 10px 0px 10px;
}
@media (min-width: 1315px) {
  .experts {
    padding-top: 137px;
  }
}
.experts h2 {
  margin-bottom: 67px;
}
.experts ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 67px;
}
@media (min-width: 1315px) {
  .experts ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.experts li {
  width: 290px;
  height: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.experts img {
  width: 100%;
  height: 290px;
}
.experts h3 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 48px;
  line-height: 52px;
  text-transform: uppercase;
  text-align: center;
  color: #ff0000;
  letter-spacing: -4px;
}
.experts li:nth-child(1) h3,
.experts li:nth-child(3) h3 {
  letter-spacing: -1px;
}
.experts h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  color: var(--secondary-color);
}
.experts p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
}

.partners {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1315px) {
  .partners {
    padding-top: 114px;
    padding-bottom: 90px;
  }
  .partners li:nth-child(1),
  .partners li:nth-child(4) {
    margin-right: 245px;
  }
}
.partners .girl-img {
  display: none;
}
@media (min-width: 1315px) {
  .partners .girl-img {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-111%);
            transform: translate(-111%);
    z-index: 1;
  }
}
.partners h2 {
  margin-bottom: 169px;
}
@media (min-width: 1315px) {
  .partners ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 53px;
    -webkit-column-gap: 83px;
       -moz-column-gap: 83px;
            column-gap: 83px;
  }
}
.partners li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  min-height: 192px;
  margin: 0 16px;
}
@media (min-width: 1315px) {
  .partners li {
    margin: 0;
  }
}
.partners h3 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.partners h4 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.partners p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
}
.partners span {
  font-weight: 900;
  color: #ff0000;
  text-transform: uppercase;
}
.partners .slide-text {
  position: absolute;
  width: 200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 23px;
  line-height: 24px;
  text-transform: uppercase;
  background: red;
}
.partners .slide-text .marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: marquee-left 30s linear infinite;
          animation: marquee-left 30s linear infinite;
  white-space: nowrap;
}
.partners .slide-text .marquee span {
  color: #fff;
  padding-inline: 5px;
}
.partners .slide-text .marquee.reverse {
  -webkit-animation: marquee-right 30s linear infinite;
          animation: marquee-right 30s linear infinite;
}
.partners .slide-text.text-1 {
  top: 40%;
  -webkit-transform: translate(-50%, -50%) rotate(11deg);
          transform: translate(-50%, -50%) rotate(11deg);
}
@media (min-width: 1315px) {
  .partners .slide-text.text-1 {
    top: 25%;
    -webkit-transform: translate(-50%, -50%) rotate(4deg);
            transform: translate(-50%, -50%) rotate(4deg);
    font-weight: 400;
    font-size: 50px;
    line-height: 52px;
  }
}
.partners .slide-text.text-2 {
  top: 43%;
  -webkit-transform: translate(-50%, -50%) rotate(-6deg);
          transform: translate(-50%, -50%) rotate(-6deg);
  z-index: 0;
}
@media (min-width: 1315px) {
  .partners .slide-text.text-2 {
    top: 27%;
    -webkit-transform: translate(-50%, -50%) rotate(-6deg);
            transform: translate(-50%, -50%) rotate(-6deg);
    font-weight: 400;
    font-size: 50px;
    line-height: 52px;
  }
}
@-webkit-keyframes marquee-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes marquee-right {
  0% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  100% {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
}
@keyframes marquee-right {
  0% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  100% {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
}

.united {
  padding-top: 139px;
  padding-bottom: 84px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1315px) {
  .united {
    padding-top: 96px;
    padding-bottom: 42px;
  }
}
.united .frame {
  position: absolute;
  min-width: 835px;
  height: 938px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-26%, -50%);
          transform: translate(-26%, -50%);
}
@media (min-width: 1315px) {
  .united .frame {
    -webkit-transform: translate(-9%, -32%);
            transform: translate(-9%, -32%);
  }
}

.clients-say {
  height: 1158px;
  position: relative;
}
@media (min-width: 1315px) {
  .clients-say {
    height: auto;
  }
}
.clients-say .button-container {
  margin-top: 40px;
  margin-bottom: 80px;
}
@media (min-width: 1315px) {
  .clients-say .button-container {
    position: absolute;
    gap: 524px;
    left: 50%;
    -webkit-transform: translate(-33%);
            transform: translate(-33%);
  }
}
.clients-say h2 {
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 1315px) {
  .clients-say h2 {
    max-width: none;
    margin-bottom: 134px;
  }
}
.clients-say ul {
  width: 380px;
  margin: 0 auto;
}
@media (min-width: 1315px) {
  .clients-say ul {
    margin: 0;
    margin-bottom: 170px;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-10%);
            transform: translate(-10%);
  }
}
.clients-say li {
  max-width: 380px;
  width: 100%;
  min-height: 163px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
}
.clients-say h3 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 52px;
  text-transform: uppercase;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 20px;
  letter-spacing: -3px;
}
.clients-say h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 29px;
}
.clients-say p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  max-width: 325px;
  margin: 0 auto;
}
.clients-say .clients-say-list .slick-list {
  border-radius: 50px;
}

.policies {
  padding-top: 140px;
  padding-inline: 10px;
  padding-bottom: 70px;
  color: var(--secondary-color);
}
@media screen and (min-width: 1315px) {
  .policies {
    padding-top: 180px;
    padding-bottom: 200px;
  }
}
.policies a {
  color: var(--secondary-color);
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: var(--accent-color);
}
.policies h1 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 52px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
@media screen and (min-width: 1315px) {
  .policies h1 {
    font-weight: 400;
    font-size: 110px;
    line-height: 120px;
    text-align: center;
  }
}
.policies h2 {
  margin-block: 15px;
  font-size: 20px;
}
.policies h4 {
  margin-top: 20px;
}
.policies ul {
  margin-left: 30px;
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
}
.policies strong {
  font-weight: 900;
}

.policies-footer {
  padding-top: 0;
  padding-bottom: 22px;
}
.policies-footer .container {
  position: relative;
}
.policies-footer img {
  display: none;
}
@media screen and (min-width: 1315px) {
  .policies-footer img {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.footer {
  padding-top: 34px;
  padding-inline: 26px;
}
@media screen and (min-width: 1315px) {
  .footer {
    padding-top: 0;
  }
}
.footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 71px;
}
.footer .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 34px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .text {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ff0000;
}
@media screen and (min-width: 1315px) {
  .footer .text {
    font-weight: 400;
    font-size: 50px;
    line-height: 52px;
  }
}
.footer .copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--secondary-color);
}/*# sourceMappingURL=main.css.map */