@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img,
svg,
video,
canvas,
picture {
  display: block;
  max-width: 100%;
}

input,
button,
select,
textarea {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  overflow-wrap: break-word;
}

* {
  font-family: "Poppins";
}

.container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 47px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.header .top {
  background-color: #1C2541;
}
.header .top__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 0;
}
@media (max-width: 1024px) {
  .header .top__body {
    padding: 17px 0;
  }
}
@media (max-width: 768px) {
  .header .top__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header .top__right {
  display: none;
}
@media (max-width: 768px) {
  .header .top__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}
.header .top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.header .top__hours {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
}
@media (max-width: 768px) {
  .header .top__hours {
    font-size: 12px;
  }
}
.header .top__hours::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: white;
  right: -25px;
}
@media (max-width: 768px) {
  .header .top__hours::before {
    display: none;
  }
}
.header .top__email {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header .top__email {
    display: none;
  }
}
.header__logo {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__bottom {
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  padding: 7px 0;
}
.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .header__menu {
    display: none;
  }
}
.header__menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.header__menu > ul > li {
  position: relative;
}
.header__menu > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: white;
  text-decoration: none;
}
.header__menu > ul > li > a:hover {
  color: #3A86FF;
}
.header__menu > ul > li > a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(42%) sepia(90%) saturate(1491%) hue-rotate(200deg) brightness(98%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(42%) sepia(90%) saturate(1491%) hue-rotate(200deg) brightness(98%) contrast(106%);
}
.header__menu > ul > li > a img {
  rotate: 180deg;
}
.header__menu > ul > li.current_page_item > a {
  color: #3A86FF;
}
.header__menu > ul > li.current_page_item > a img {
  -webkit-filter: brightness(0) saturate(100%) invert(42%) sepia(90%) saturate(1491%) hue-rotate(200deg) brightness(98%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(42%) sepia(90%) saturate(1491%) hue-rotate(200deg) brightness(98%) contrast(106%);
}
.header__menu > ul > li > ul {
  display: none;
  position: absolute;
  width: 235px;
  top: 25px;
  left: 0;
  background-color: #333333;
  border-radius: 20px;
  overflow: hidden;
}
.header__menu > ul > li > ul > li {
  padding: 12px 16px;
}
.header__menu > ul > li > ul > li:hover {
  background-color: #3A86FF;
}
.header__menu > ul > li > ul > li.current_page_item {
  background-color: #3A86FF;
}
.header__menu > ul > li > ul > li > a {
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}
.header__menu > ul > li.open > ul {
  display: block;
}
.header__menu > ul > li.open > a img {
  rotate: 0deg;
}
.header.open .header__menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #1C2541;
}
.header.open .header__menu > 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: 20px;
  padding: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header.open .header__menu > ul > li.open > a {
  margin-bottom: 10px;
}
.header.open .header__menu > ul > li > a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header.open .header__menu > ul > li > ul {
  position: static;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header__phone {
  font-size: 16px;
  color: white;
}
@media (max-width: 1024px) {
  .header__phone {
    display: none;
  }
}
.header__btn {
  padding: 16px 23px;
  border-radius: 20px;
  background-color: #3A86FF;
  font-size: 16px;
  color: white;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .header__btn {
    padding: 11px 23px;
  }
}
.header__burger {
  display: none;
  width: 49px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #3A86FF;
  padding: 5px 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__burger span {
  width: 100%;
  height: 6px;
  border-radius: 20px;
  background-color: #3A86FF;
}
.header.open .header__burger span {
  position: relative;
}
.header.open .header__burger span:nth-child(1) {
  rotate: 45deg;
  top: 10px;
}
.header.open .header__burger span:nth-child(2) {
  display: none;
}
.header.open .header__burger span:nth-child(3) {
  display: none;
}
.header.open .header__burger span:nth-child(4) {
  rotate: -45deg;
  bottom: -3px;
}

.footer {
  background-color: #1C2541;
}
.footer__top {
  padding: 29px 0 20px 0;
}
@media (max-width: 1400px) {
  .footer__top .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 66px;
}
@media (max-width: 1400px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.footer__col {
  position: relative;
}
.footer__col::before {
  content: "";
  position: absolute;
  top: 0;
  right: -33px;
  height: 100%;
  width: 1px;
  background-color: #555555;
}
@media (max-width: 1400px) {
  .footer__col::before {
    display: none;
  }
}
.footer__col:nth-child(1) {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 57px;
}
@media (max-width: 1400px) {
  .footer__col:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.footer__col:nth-child(4) {
  max-width: 330px;
}
.footer__col:nth-child(4)::before {
  display: none;
}
.footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__logo img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.footer__us {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}
@media (max-width: 1400px) {
  .footer__us {
    margin-bottom: 15px;
  }
}
.footer__text {
  font-size: 14px;
  color: white;
}
.footer__title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}
@media (max-width: 1400px) {
  .footer__title {
    margin-bottom: 15px;
  }
}
.footer__menu 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: 7px;
}
.footer__menu ul a {
  font-size: 15px;
  color: white;
  text-decoration: none;
}
.footer__menu ul a:hover {
  color: #3A86FF;
}
.footer__contacts {
  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;
  margin-bottom: 24px;
}
.footer__contacts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1;
  color: white;
}
.footer__contacts a span {
  font-size: 15px;
  color: white;
}
.footer__phone {
  padding: 16px;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 20px;
  background-color: #3A86FF;
  color: white;
  font-size: 16px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer__phone {
    padding: 11px;
  }
}
.footer__bottom {
  padding: 20px 0 15px;
  border-top: 1px solid #555555;
}
.footer__ever {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer__ever a {
  font-size: 11px;
  color: #87CEEB;
}

.wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1024px) {
  .wrapper {
    padding-top: 59px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding-top: 52px;
  }
}

body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.thank {
  padding: 110px 0 200px 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .thank {
    padding: 110px 0;
  }
}
.thank__body {
  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;
  text-align: center;
}
.thank__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}
@media (max-width: 768px) {
  .thank__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.thank__subtitle {
  margin-bottom: 24px;
  font-size: 20px;
  color: white;
}
@media (max-width: 768px) {
  .thank__subtitle {
    margin-bottom: 15px;
  }
}
.thank__btn {
  font-size: 16px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 16px 94px;
  background-color: #3A86FF;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .thank__btn {
    padding: 11px 23px;
  }
}

.nf {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
}
.nf__btn {
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 40px;
  background-color: #0B2A58;
  border-radius: 14px;
  position: absolute;
  bottom: 30%;
  right: 25%;
}

.banner {
  background-size: cover;
  background-position: center;
  height: 480px;
}
@media (max-width: 768px) {
  .banner {
    height: 250px;
  }
}

.contact {
  padding: 55px 0;
}
.contact__title {
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .contact__title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
.contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1400px) {
  .contact__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .contact__items {
    gap: 30px;
  }
}

.contact .item {
  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;
  text-align: center;
}
.contact .item__icon {
  height: 93px;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .contact .item__icon {
    margin-bottom: 15px;
  }
}
.contact .item__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .contact .item__title {
    font-size: 30px;
  }
}
.contact .item__text {
  font-size: 18px;
  font-weight: 700;
  color: black;
  margin-bottom: 3px;
}

.price {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
}
.price .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
}
.price_right .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1024px) {
  .price_right .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form {
  padding: 50px 53px;
  border-radius: 10px;
  background-color: #F6F6F6;
  width: 688px;
}
@media (max-width: 768px) {
  .form {
    width: 100%;
    padding: 35px;
  }
}
.form__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1;
}
@media (max-width: 768px) {
  .form__title {
    font-size: 35px;
    margin-bottom: 15px;
  }
}
.form 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: 13px;
}
.form__input {
  border-bottom: 1px solid #737B7D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form__input input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 16px;
  padding: 12px 16px 12px 16px;
  width: 100%;
  background-color: #F6F6F6;
}
.form__input input::-webkit-input-placeholder {
  color: #8E8E8E;
}
.form__input input::-moz-placeholder {
  color: #8E8E8E;
}
.form__input input:-ms-input-placeholder {
  color: #8E8E8E;
}
.form__input input::-ms-input-placeholder {
  color: #8E8E8E;
}
.form__input input::placeholder {
  color: #8E8E8E;
}
.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.form__row .form__input input {
  max-width: 164px;
}
.form button {
  font-weight: 700;
  font-size: 16px;
  color: white;
  padding: 16px;
  border-radius: 50px;
  background-color: #0B2A58;
  cursor: pointer;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .form button {
    padding: 11px;
  }
}

.first {
  background-color: #14213D;
}
.first__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1300px) {
  .first__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.first__left {
  padding: 143px 86px 64px 0;
  width: 50%;
}
@media (max-width: 1300px) {
  .first__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 50px 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .first__left {
    padding: 30px 0;
  }
}
.first__title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 33px;
  color: white;
}
@media (max-width: 768px) {
  .first__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.first__text {
  font-size: 22px;
  color: white;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .first__text {
    font-size: 18px;
  }
}
.first__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .first__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.first__btns a {
  font-size: 16px;
  font-weight: 500;
  border-radius: 20px;
  display: inline-block;
  text-decoration: none;
  padding: 16px 50px;
  width: 231px;
  text-align: center;
}
@media (max-width: 768px) {
  .first__btns a {
    padding: 11px 50px;
  }
}
.first__btns a:first-child {
  color: white;
  background-color: #3A86FF;
}
.first__btns a:last-child {
  color: black;
  background-color: white;
}
.first__right {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: calc((100% - 100vw) / 2);
}
@media (max-width: 1300px) {
  .first__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 400px;
    margin-left: calc((100% - 100vw) / 2);
  }
}
@media (max-width: 768px) {
  .first__right {
    height: 300px;
  }
}
.first__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.items {
  padding: 40px 0;
}
.items .container {
  max-width: 1300px;
}
@media (max-width: 768px) {
  .items {
    padding: 30px 0;
  }
}
.items__title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .items__title {
    font-size: 30px;
  }
}
.items__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .items__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .items__items {
    gap: 20px;
    margin-bottom: 30px;
  }
}
.items__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.items__btn {
  font-size: 16px;
  font-weight: 500;
  color: white;
  padding: 16px 75px;
  border-radius: 20px;
  background-color: #3A86FF;
  text-decoration: none;
}

.items .item {
  text-decoration: none;
}
.items .item__img {
  height: 339px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .items .item__img {
    height: 250px;
  }
}
.items .item__info {
  padding: 16px 24px;
  background-color: #14213D;
}
.items .item__title {
  font-size: 24px;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
}
.items .item__text {
  font-size: 15px;
  color: white;
}
.items .item:hover .item__info {
  background-color: #3A86FF;
}

body {
  overflow-x: hidden;
}

.reviews {
  position: relative;
  padding: 70px 0 86px 0;
}
@media (max-width: 768px) {
  .reviews {
    padding: 30px 0;
  }
}
.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #14213D;
}
.reviews .container {
  position: relative;
}
.reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .reviews__top {
    margin-bottom: 15px;
  }
}
.reviews__title {
  font-size: 48px;
  font-weight: 600;
  color: white;
}
@media (max-width: 768px) {
  .reviews__title {
    font-size: 30px;
  }
}
.reviews__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.reviews__arrows div {
  width: 48px;
  height: 48px;
  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;
  cursor: pointer;
  background-color: white;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .reviews__arrows div {
    width: 35px;
    height: 35px;
    border-radius: 15px;
  }
}
@media (max-width: 768px) {
  .reviews__arrows div img {
    width: 10px;
  }
}
.reviews__arrows div.next {
  rotate: 180deg;
}
.reviews__slider {
  padding: 5px;
}
.reviews__pag {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  gap: 18px;
}
.reviews__pag .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #3A86FF;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  opacity: 1;
}
.reviews__pag .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .reviews__pag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.reviews .slide {
  -webkit-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background-color: white;
  padding: 24px 14px;
}
.reviews .slide__top {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews .slide__img {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.reviews .slide__name {
  font-size: 20px;
  font-weight: 600;
  color: #1C2541;
  margin-bottom: 8px;
}
.reviews .slide__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}

.text {
  text-align: center;
  padding: 35px 0 306px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .text {
    padding: 35px 0 100px 0;
  }
}
.text__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.text__body {
  position: relative;
  padding: 32px;
  background-color: rgba(249, 249, 249, 0.8509803922);
  border-radius: 20px;
  max-width: 1158px;
  margin: 0 auto;
}
.text__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .text__title {
    font-size: 30px;
  }
}
.text__text {
  font-size: 16px;
  margin-bottom: 16px;
}
.text__text ul {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text__btn {
  font-size: 16px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 13px 23px;
  border-radius: 20px;
  background-color: #3A86FF;
  display: inline-block;
}
@media (max-width: 768px) {
  .text__btn {
    padding: 11px 23px;
  }
}

.work {
  background-size: cover;
  background-position: center;
  padding: 77px 0;
}
@media (max-width: 768px) {
  .work {
    padding: 50px 0;
  }
}
.work__body {
  padding: 32px 56px;
  border-radius: 20px;
  background-color: rgba(61, 61, 61, 0.7411764706);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  text-align: center;
  max-width: 776px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .work__body {
    padding: 20px;
  }
}
.work__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}
@media (max-width: 768px) {
  .work__title {
    font-size: 30px;
  }
}
.work__text {
  font-size: 24px;
  color: white;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .work__text {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.work__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .work__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.work__btns a {
  width: 50%;
  padding: 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: white;
}
@media (max-width: 768px) {
  .work__btns a {
    width: 100%;
    padding: 11px;
  }
}
.work__btns a:nth-child(1) {
  background-color: #3A86FF;
}
.work__btns a:nth-child(2) {
  border: 1px solid white;
}

.blocks {
  padding: 56px 0 96px 0;
}
@media (max-width: 768px) {
  .blocks {
    padding: 50px 0;
  }
}
.blocks__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 95px;
}
@media (max-width: 1100px) {
  .blocks__items {
    gap: 30px;
  }
}
.blocks .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1100px) {
  .blocks .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blocks .item__left {
  background-color: #14213D;
  padding: 32px;
  border-radius: 20px;
  margin: 39px 0;
  width: 40%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .blocks .item__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin: -100px 0 0 0;
    padding: 20px;
  }
}
.blocks .item:nth-child(even) .item__left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.blocks .item__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}
@media (max-width: 768px) {
  .blocks .item__title {
    font-size: 30px;
  }
}
.blocks .item__text {
  font-size: 16px;
  color: white;
}
.blocks .item__text ul {
  list-style: disc;
  padding-left: 20px;
}
.blocks .item__right {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: -100px;
}
@media (max-width: 1100px) {
  .blocks .item__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 300px;
    margin-right: calc((100% - 100vw) / 2) !important;
    margin-left: calc((100% - 100vw) / 2) !important;
  }
}
.blocks .item__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.blocks .item:nth-child(even) .item__right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 0;
  margin-right: -100px;
}

.services .slide {
  text-decoration: none;
}
.services .slide__img {
  height: 339px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .services .slide__img {
    height: 250px;
  }
}
.services .slide__info {
  padding: 16px 24px;
  background-color: #14213D;
}
.services .slide__title {
  font-size: 24px;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
}
.services .slide__text {
  font-size: 15px;
  color: white;
}
.services .slide:hover .slide__info {
  background-color: #3A86FF;
}

.services {
  padding-bottom: 57px;
}
@media (max-width: 768px) {
  .services {
    padding-bottom: 30px;
  }
}
.services__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .services__title {
    font-size: 30px;
  }
}
.services__text {
  font-size: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .services__text {
    margin-bottom: 15px;
  }
}
.services__slider {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .services__slider {
    margin-bottom: 15px;
  }
}
.services__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 31px;
}
@media (max-width: 768px) {
  .services__arrows {
    gap: 15px;
  }
}
.services__arrows div {
  width: 64px;
  height: 56px;
  background-color: #3A86FF;
  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;
  cursor: pointer;
}
@media (max-width: 768px) {
  .services__arrows div {
    width: 40px;
    height: 40px;
  }
}
.services__arrows div.next {
  rotate: 180deg;
}

.our {
  padding: 50px 0;
}
.our .container {
  max-width: 1400px;
}
.our__items {
  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;
}
.our .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media (max-width: 1024px) {
  .our .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.our .item__left {
  width: 50%;
  position: relative;
}
@media (max-width: 1024px) {
  .our .item__left {
    width: 100%;
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
    height: 300px;
  }
}
.our .item__left img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50px;
}
.our .item:nth-child(even) .item__left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.our .item__right {
  width: 50%;
  margin: 44px 0;
}
@media (max-width: 1024px) {
  .our .item__right {
    width: 100%;
    margin: 0;
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
}
.our .item:nth-child(even) .item__right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.our .item__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #131313;
}
@media (max-width: 768px) {
  .our .item__title {
    font-size: 30px;
  }
}
.our .item__text {
  font-size: 20px;
  margin-bottom: 35px;
  color: #131313;
}
@media (max-width: 768px) {
  .our .item__text {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.our .item__btn {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: white;
  padding: 16px 75px;
  background-color: #3A86FF;
  border-radius: 20px;
  display: inline-block;
}
@media (max-width: 768px) {
  .our .item__btn {
    padding: 11px 75px;
  }
}

.we {
  padding-bottom: 51px;
}
.we .container {
  max-width: 1600px;
}
.we__title {
  font-size: 48px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .we__title {
    font-size: 30px;
  }
}
.we__items {
  padding: 5px;
}
.we__items .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.we .item {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 24px;
  height: auto !important;
}
.we .item:hover {
  background-color: #14213D;
}
.we .item__icon {
  width: 56px;
}
.we .item:hover .item__icon {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(404%) hue-rotate(234deg) brightness(114%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(404%) hue-rotate(234deg) brightness(114%) contrast(100%);
}
.we .item__title {
  font-size: 24px;
  font-weight: 500;
  color: #242323;
  overflow-wrap: break-word;
}
.we .item:hover .item__title {
  color: white;
}
.we .item__text {
  font-size: 16px;
  color: #242323;
}
.we .item:hover .item__text {
  color: white;
}

.slider {
  margin-bottom: 38px;
}
.slider__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #131313;
}
@media (max-width: 768px) {
  .slider__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.slider__img {
  height: 422px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .slider__img {
    height: 300px;
  }
}
.slider__bottom {
  background-color: #14213D;
  padding: 76px 89px;
  position: relative;
}
@media (max-width: 768px) {
  .slider__bottom {
    padding: 50px;
  }
}
.slider__arrows div {
  width: 64px;
  height: 56px;
  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;
  cursor: pointer;
  background-color: #3A86FF;
}
@media (max-width: 768px) {
  .slider__arrows div {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 768px) {
  .slider__arrows div img {
    width: 10px;
  }
}
.slider__arrows div.prev {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .slider__arrows div.prev {
    left: 7px;
  }
}
.slider__arrows div.next {
  position: absolute;
  top: 50%;
  right: 15px;
  rotate: 180deg;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (max-width: 768px) {
  .slider__arrows div.next {
    right: 7px;
  }
}
.slider .slide {
  padding: 20px;
  background-color: #3A86FF;
  border-radius: 50px;
  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;
}
.slider .slide__img {
  width: 100px;
}
.slider .slide__title {
  color: white;
  font-weight: 600;
  font-size: 24px;
}

.faq {
  margin-bottom: 37px;
}
.faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1300px) {
  .faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq__right {
  padding: 87px 0;
  width: 60%;
  padding: 40px 30px;
  background-color: white;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  margin: 87px 0;
  position: relative;
}
@media (max-width: 1300px) {
  .faq__right {
    width: 100%;
    margin: -200px 0 0 0;
  }
}
@media (max-width: 768px) {
  .faq__right {
    padding: 20px;
  }
}
.faq__left {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: -250px;
}
@media (max-width: 1300px) {
  .faq__left {
    height: 400px;
    margin-left: calc((100% - 100vw) / 2);
    margin-right: calc((100% - 100vw) / 2);
  }
}
.faq__left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.faq__title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  color: #292524;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.faq__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .faq__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 768px) {
  .faq__list {
    width: 100%;
  }
}
.faq .item {
  padding: 24px 18px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 3.47957px;
}
.faq .item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.faq .item.open .item__top img {
  rotate: 180deg;
}
.faq .item__title {
  font-size: 20px;
  font-weight: 700;
}
.faq .item__bottom {
  font-size: 16px;
  margin-top: 10px;
  display: none;
}
.faq .item.open .item__bottom {
  display: block;
}

.fast {
  position: relative;
  padding: 144px 0 170px;
}
@media (max-width: 1300px) {
  .fast {
    padding: 96px 0 0 0;
  }
}
.fast__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1300px) {
  .fast__bg {
    height: 45%;
  }
}
.fast .container {
  position: relative;
  max-width: 1500px;
}
.fast__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1300px) {
  .fast__body {
    -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: 75px;
  }
}
@media (max-width: 768px) {
  .fast__body {
    gap: 40px;
  }
}
.fast__left {
  max-width: 478px;
}
.fast__title {
  font-size: 48px;
  color: white;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
}
@media (max-width: 1300px) {
  .fast__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .fast__title {
    font-size: 30px;
  }
}
.fast__subtitle {
  font-size: 24px;
  font-weight: 500;
  color: white;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .fast__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.fast__text {
  font-size: 16px;
  font-weight: 300;
  color: white;
  margin-bottom: 24px;
}
.fast__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.fast__btns a {
  padding: 16px;
  display: inline-block;
  border-radius: 20px;
  width: 50%;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 768px) {
  .fast__btns a {
    padding: 11px;
  }
}
.fast__btns a:first-child {
  color: white;
  background-color: #3A86FF;
}
.fast__btns a:last-child {
  color: black;
  background-color: white;
}

.full {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.full .container {
  max-width: 1440px;
}
@media (max-width: 1300px) {
  .full {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.full__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 65px 1fr 65px 1fr 65px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 65px;
  padding: 72px 55px;
  border-radius: 20px;
  background-color: white;
}
@media (max-width: 1300px) {
  .full__items {
    -ms-grid-columns: 1fr 106px 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 106px;
       -moz-column-gap: 106px;
            column-gap: 106px;
    row-gap: 47px;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .full__items {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.full .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}
@media (max-width: 768px) {
  .full .item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.full .item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  width: 1px;
  background-color: #D9D9D9;
}
@media (max-width: 1300px) {
  .full .item::before {
    display: none;
  }
}
.full .item:last-child::before {
  display: none;
}
.full .item__title {
  font-size: 20px;
}
@media (max-width: 768px) {
  .full .item__title {
    font-size: 18px;
  }
}

.about {
  padding-bottom: 40px;
}
@media (max-width: 1300px) {
  .about {
    padding-bottom: 30px;
  }
}
.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 66px;
}
@media (max-width: 1300px) {
  .about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.about__left {
  width: 45%;
  padding: 72px 0 108px 0;
}
@media (max-width: 1300px) {
  .about__left {
    width: 100%;
    padding: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.about__right {
  width: 55%;
  position: relative;
}
@media (max-width: 1300px) {
  .about__right {
    height: 407px;
    width: 100vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: calc((100% - 100vw) / 2);
  }
}
@media (max-width: 768px) {
  .about__right {
    height: 300px;
  }
}
.about__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1300px) {
  .about__right img {
    border-radius: 0;
  }
}
.about__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 30px;
  }
}
.about__text {
  font-size: 16px;
  margin-bottom: 24px;
}
.about__btn {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 16px 35px;
  display: inline-block;
  border-radius: 20px;
  background-color: #3A86FF;
}
@media (max-width: 768px) {
  .about__btn {
    padding: 11px 35px;
  }
}

.best {
  padding-bottom: 40px;
}
@media (max-width: 1300px) {
  .best {
    padding-bottom: 30px;
  }
}
.best .container {
  max-width: 1440px;
}
.best__body {
  padding: 72px;
  border-radius: 20px;
  background-color: #F9F9F9;
}
@media (max-width: 1300px) {
  .best__body {
    padding: 0;
    background-color: transparent;
  }
}
.best__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 48px;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .best__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .best__title {
    font-size: 30px;
  }
}
.best__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (max-width: 1300px) {
  .best__items {
    display: none;
  }
}
.best__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.best__row:nth-child(odd) .item:first-child {
  width: 60%;
}
.best__row:nth-child(odd) .item:last-child {
  width: 40%;
}
.best__row:nth-child(even) .item:first-child {
  width: 40%;
}
.best__row:nth-child(even) .item:last-child {
  width: 60%;
}
.best__bottom {
  display: none;
  position: relative;
}
@media (max-width: 1300px) {
  .best__bottom {
    display: block;
  }
}
.best__arrows div {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background-color: #0B2A58;
  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;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.best__arrows div.prev {
  left: -10px;
}
.best__arrows div.next {
  rotate: 180deg;
  right: -10px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.best__slider {
  margin: 0 40px;
}
.best .item {
  padding: 128px 36px 32px 36px;
  position: relative;
}
@media (max-width: 768px) {
  .best .item {
    padding: 70px 20px 30px 20px;
  }
}
.best .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 54, 54, 0.768627451);
}
.best .item:hover::before {
  background-color: rgba(174, 225, 255, 0.6980392157);
}
.best .item__title {
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  position: relative;
}
.best .item:hover .item__title {
  color: black;
}
.best .item__text {
  font-size: 20px;
  color: white;
  position: relative;
}
.best .item:hover .item__text {
  color: black;
}

.local .container,
.local .local-card .local-list .local-item {
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.local {
  position: relative;
  background-image: url("../img/map.png");
  background-position: center;
  background-size: cover;
}

.local .map {
  position: absolute;
  max-width: 900px;
  top: -95px;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
  right: 50px;
  z-index: -1;
}

.local .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.local .section-title {
  text-align: left;
  margin-bottom: 0;
}

.local .card-title {
  max-width: 900px;
  color: var(--blue);
}

.local .section-subtitle {
  text-align: left;
  max-width: 700px;
  font-weight: 500;
  color: #717171;
}

.local .local-card {
  overflow: auto;
  padding-bottom: 20px;
}

.local .local-card::-webkit-scrollbar {
  height: 5px;
}

.local .local-card::-webkit-scrollbar-track {
  background: #fff;
}

.local .local-card::-webkit-scrollbar-thumb {
  background: #3A86FF;
}

.local .local-card::-webkit-scrollbar-thumb:hover {
  background: #3A86FF;
}

.local .local-card .local-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 900px;
  padding-bottom: 30px;
  padding-left: 0;
}

.local .local-card .local-list .local-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc((100% - 64px) / 5);
  padding-left: 16px;
  position: relative;
  vertical-align: top;
}

.local .local-card .local-list .local-item::before {
  content: "";
  width: 2px;
  background-color: #3A86FF;
  height: 96px;
  left: 0;
  position: absolute;
}

.local .local-card .local-list .local-title-letter {
  margin-bottom: 5px;
  color: #3A86FF;
  font-size: 24px;
}

.local .local-card .local-list .place {
  text-decoration: none;
  cursor: pointer;
  color: black;
}

.local {
  background-image: none;
  background-image: url(../img/map.svg);
  background-size: cover;
  padding: 72px 0 61px;
  margin-bottom: 39px;
}
@media (max-width: 768px) {
  .local {
    padding: 30px 0;
  }
}
.local__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .local__title {
    font-size: 30px;
  }
}
.local__subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 600px;
}

.plans {
  position: relative;
  padding-top: 261px;
  margin-bottom: -20px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .plans {
    margin-bottom: 30px;
    padding-top: 91px;
  }
}
.plans__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.plans .container {
  position: relative;
  max-width: 1230px;
}
.plans__title {
  font-size: 48px;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  margin-bottom: 44px;
}
@media (max-width: 1200px) {
  .plans__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .plans__title {
    font-size: 30px;
  }
}
.plans__card {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(17.5px);
          backdrop-filter: blur(17.5px);
  border-radius: 26px;
  padding: 112px 153px 65px 153px;
}
@media (max-width: 1200px) {
  .plans__card {
    padding: 65px 104px 65px 50px;
  }
}
@media (max-width: 768px) {
  .plans__card {
    padding: 30px 80px 30px 30px;
  }
}
.plans__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  margin-bottom: 54px;
}
@media (max-width: 1200px) {
  .plans__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }
}
.plans__text {
  font-size: 36px;
  font-weight: 700;
  color: #231D4F;
  text-align: center;
}
@media (max-width: 1200px) {
  .plans__text {
    display: none;
  }
}
.plans .item {
  padding: 65px 21px 45px 21px;
  border-radius: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1200px) {
  .plans .item {
    padding: 35px;
    background-color: #E4E2E2;
  }
}
@media (max-width: 768px) {
  .plans .item {
    padding: 40px 20px 20px 20px;
  }
}
.plans .item .popular {
  font-size: 10px;
  font-weight: 800;
  color: white;
  padding: 7px 17px;
  border-radius: 14px;
  background-color: #3A86FF;
  position: absolute;
  top: 20px;
  right: 30px;
}
@media (max-width: 1200px) {
  .plans .item .popular {
    top: 12px;
    right: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.plans .item:hover {
  background-color: #1C2541;
}
.plans .item__top {
  margin-bottom: 46px;
}
@media (max-width: 1200px) {
  .plans .item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .plans .item__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
}
.plans .item__title {
  font-size: 46px;
  font-weight: 700;
  color: #231D4F;
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
}
.plans .item__title span {
  font-size: 17px;
  font-weight: 500;
  color: #848199;
}
.plans .item__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  height: 100%;
  width: 1px;
  background-color: #3A86FF;
  display: none;
}
@media (max-width: 1200px) {
  .plans .item__title::before {
    display: block;
  }
}
@media (max-width: 768px) {
  .plans .item__title::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .plans .item__title {
    font-size: 30px;
  }
}
.plans .item:hover .item__title {
  color: white;
}
.plans .item__subtitle {
  font-size: 28px;
  color: #231D4F;
  font-weight: 500;
}
@media (max-width: 768px) {
  .plans .item__subtitle {
    font-size: 20px;
  }
}
.plans .item:hover .item__subtitle {
  color: white;
}
.plans .item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.plans .item__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.plans .item__item span:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  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;
  background-color: rgba(82, 67, 194, 0.1490196078);
}
.plans .item__item span:last-child {
  color: #848199;
  font-size: 14px;
}
.plans .item__btn {
  padding: 11px 49px;
  border-radius: 24px;
  background-color: #231D4F;
  font-size: 15px;
  font-weight: 500;
  color: white;
  text-decoration: none;
}
.plans .item:hover .item__btn {
  background-color: #3A86FF;
}
.plans .item__bottom {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1200px) {
  .plans .item__bottom {
    display: none;
  }
}
@media (max-width: 1200px) {
  .plans .item:hover .item__top {
    margin-bottom: 30px;
  }
}
@media (max-width: 1200px) {
  .plans .item:hover .item__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form__input {
  flex-direction: column;
  position: relative;
}

.form__input img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.loading {
  position: relative;
}

.loading::before {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(40%, #eeeeee), color-stop(50%, #dddddd), color-stop(60%, #eeeeee));
  background: linear-gradient(to bottom right, #eeeeee 40%, #dddddd 50%, #eeeeee 60%);
  background-size: 200% 200%;
  background-repeat: no-repeat;
  -webkit-animation: placeholderShimmer 2s infinite linear;
  animation: placeholderShimmer 2s infinite linear;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  border-radius: 10px;
}

@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes placeholderShimmer {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0 0;
  }
}