:root {
    --color-primary: #fff;
    --color-blue: #026;
    --color-main-black: #262626;
    --color-orange: #FC671A;
    --font-primary: 'Inter', Helvetica, sans-serif;
    --font-decorative: 'Playfair Display', Helvetica, sans-serif;
}

body {
  font-family: var(--font-primary);
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: lining-nums proportional-nums;
}

.container {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

.text a {
  text-decoration: underline;
}

/* Header */
.header {
    position: sticky;
    z-index: 100;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(218, 222, 231, 0.40);
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(6px);
}
.header-inner {
    position: relative;
    padding: 14px 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
  }
  .menu-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
.menu-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
    width: 74px;
    height: 42px;
}
ul.menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}
ul.menu li {
    position: relative;
    font-size: inherit;
    line-height: 100%;
    margin: 0;
    z-index: 100;
}
ul.menu > li > a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    white-space: nowrap;
    transition: 0.3s;
}
ul.menu > li:hover > a {
    color: #002266;
    transition: 0.3s;
}
ul.menu > li.menu-item-has-children > a {
    justify-content: center;
    padding: 0 15px 0 0;
}
ul.menu li.menu-item-has-children .icon,
.arrow-down {
    width: 10px;
    height: 6px;
    transition: 0.3s;
    box-sizing: content-box;
}
ul.menu li.menu-item-has-children .icon svg {
    fill: #000;
}
li.menu-item-has-children:hover > span .icon {
    fill: #002266;
    transform: rotate(180deg);
}
ul.menu > li .sub-menu__wrapper {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 86%;
    left: 0;
    width: 100%;
    min-width: 190px;
    transform: translateY(28px);
    z-index: 10;
    /* background: rgba(255, 255, 255, 0.9); */
    background: #fff;
    backdrop-filter: blur(6px);
    transition: all 0.2s ease-in-out 0s, visibility 0s linear 0.44s, z-index 0s linear 0.01s;
    pointer-events: none;
}
.sub-menu__wrapper .sub-menu {
    padding: 0 10px 10px;
}
.sub-menu::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -30px;
    width: 100%;
    height: 30px;
    z-index: 80;
}
.search-btn.mobile {
    display: none;
}
.header-menu-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-main-black);
    font-weight: 500;
}
.header-menu-item > a {
    padding: 10px 0;
    transition: 0.3s;
}
.header-menu-item a:hover {
    color: #002266;
    transition: 0.3s;
}
.header-menu-item.active .sub-menu__wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateY(28px);
    transition-delay: 0s, 0s, 0.4s;
    pointer-events: all;
}
.sub-menu__wrapper .sub-menu li {
    transition: .2s;
}
.sub-menu__wrapper .sub-menu li:not(:last-of-type) {
    margin: 0 0 5px;
}
.sub-menu__wrapper .sub-menu a {
    display: block;
    width: 100%;
}
.sub-menu__wrapper .sub-menu li:hover > a {
    color: #002266;
    transition: all 0.2s ease-in-out;
}
.language-switch__item,
.item-with-icon {
    display: flex;
    gap: 5px;
}
.language-switch__item .icon,
.item-with-icon .icon {
    margin: 3px 0 0;
}
.icon.world,
.icon.phone,
.icon.email,
.icon.address {
    width: 16px;
    height: 16px;
}
.modal-close {
    position: absolute;
    display: block;
    top: 20px;
    right: 30px;
    height: 40px;
    width: 40px;
    color: #b5b5b5;
    font-weight: 400;
    background: none;
    font-size: 14px;
    border-radius: 30px;
    border: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTMuNSAxTDEgMTMuNSIgc3Ryb2tlPSIjOTM5MzkzIiBzdHJva2Utd2lkdGg9IjEuMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTEgMUwxMy41IDEzLjUiIHN0cm9rZT0iIzkzOTM5MyIgc3Ryb2tlLXdpZHRoPSIxLjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    outline: none;
    cursor: pointer;
    z-index: 2;
}
.header-phone {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}
.header-phone:hover,
.footer-phone:hover {
    color: var(--color-blue);
    animation: wiggle 0.5s ease;
}
/**/


/* BUTTONS */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
} 
a.btn-blue,
.btn-blue {
  font-size: 16px;
  border-radius: 20px;
  padding: 6px 30px;
  font-weight: 600;
  line-height: 28px;
  background: var(--color-blue);
  color: #fff;
  transition: all 0.2s ease;
}
.btn-blue:hover {
  background-color: var(--color-orange);
}
  a.button-blue--outline {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1.5px solid #026;
  }
  a.button-blue--outline:hover {
    background: var(--color-blue);
    color: #fff;
  }
  a.button--outline {
    border-radius: 30px;
    padding: 15px 30px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
    color: #0b2c6b;
    transition: all 0.3s ease;
  }
  a.button--outline:hover {

  }

  a.btn-white {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 30px;
    color: #000;
    transition: all 0.15s ease;
    background-color: #fff;
  }
  a.btn-white:hover {
    background-color: var(--color-orange);
    color: #fff;
  }
  a.button-white--outline {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.15s ease;
    border: 1.5px solid #fff;
  }
  a.button-white--outline:hover {
    border: 1.5px solid var(--color-orange);
    color: var(--color-orange);
  }

  a.btn-orange {
    font-size: 18px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-orange);
      transition: all 0.3s ease;
      border: 1.5px solid var(--color-orange);
  }
  a.btn-orange:hover {
    background-color: unset;
  }

  .orange {
    color: var(--color-orange);
  }
  
  /* HERO */
  
  .hero {
    padding: 130px 0 170px;
  }
  .hero__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .hero__media {
        position: relative;
        height: stretch;
    }
    .hero__media picture {
        position: absolute;
        width: 804px;
        bottom: 0;
    }
  .hero__title {
    font-size: 54px;
    font-weight: 600;
    line-height: 120%;
    max-width: 445px;
    margin-bottom: 35px;
  }
  
  .hero__subtitle {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 44px;
  }
  
  .hero__highlight {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 60px;
  }
  a.hero__button {
    padding: 8px 38px;
  }
  .hero__quick-links {
    position: absolute;
    bottom: 62px;
    left: 62px;
  }
  .hero__quick-item {
    margin-bottom: 8px;
  }
  .hero__quick-link {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 7px;
    font-size: 20px;
    font-weight: 500;
    background-color: #fff;
    border-radius: 100px;
    padding: 6px 13px;
  }
  .hero__quick-link:hover {
    background: #C1CCF0;
    box-shadow: rgb(193 204 240 / 30%) 0px 1px 2px 0px, rgb(193 204 240 / 20%) 0px 2px 6px 2px;
    cursor: pointer;
  }
  .arrow-right-circle {
    width: 30px;
    height: 30px;
  }
  
  /* SERVICES */
  main.services-page {
    padding: 30px 0 0;
  }
  .services {
    padding: 0 0 33px;
    border-bottom: 1px solid #000;
  }
  .services__wrap {
    display: grid;
    grid-template-columns: 242px 1fr;
    gap: 40px;
    align-items: center;
  }
  .services__title {
    color: #0C0C0C;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .services__description {
    color: #000;
    font-size: 20px;
    margin-bottom: 50px;
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .service-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: all .15s ease-out;
  }
  .service-card:hover {
    color: #353737;
    background: #C1CCF0;
    box-shadow: rgb(193 204 240 / 30%) 0px 1px 2px 0px, rgb(193 204 240 / 20%) 0px 2px 6px 2px;
  }
.service-card--img {
    padding: 0;
    overflow: hidden;
}
.service-card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
[class*="card-serv-"] {
    width: 50px;
    height: 50px;
    margin: 0 0 10px;
}
  .service-card__title {
    font-weight: 700;
    margin-bottom: 5px;
  }
  .service-card__category {
    color: var(--color-blue);
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 15px;
  }
  .service-card__description {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 24px;
  }

  .page-template-tpl-our-services .services__button.hidden-desktop {
    display: none;
  }
  
  /* ADVANTAGES */
  .advantages {
    padding: 160px 0 140px;
    border-bottom: 1px solid #000;
  }
  .advantages__wrap {
    display: flex;
    gap: 40px;
    justify-content: space-between;
  }
  .advantages__title {
    color: #0C0C0C;
      font-size: 42px;
      font-weight: 500;
      margin: 0 0 42px;
    }
.advantages__title span {
    display: block;
  }
  .advantages__description {
      color: #000;
      font-size: 20px;
  }
  .advantages__stats {
    display: grid;
    grid-template-columns: 175px 1fr;
    gap: 32px 105px;
  }
  .advantages__stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .advantages__number,
  .statistics-list__number {
    color: var(--color-blue);
    font-size: 85px;
    font-weight: 300;
  }
  .advantages__label,
  .statistics-list__label {
      color: #000;
      font-size: 20px;
  }

  /* Benefits */
  .benefits {
    padding: 140px 0 222px;
  }
  
  .benefits__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  [class*="benefits-icon-"] {
        width: 48px;
        height: 48px;
        margin: 0 0 25px;
    }
  .benefit__title {
    color: #000;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 15px;
  }
  .benefit__text {
    color: #000;
    font-size: 20px;
  }
  
  /* CTA */
  .cta {
    /* padding: 80px 0; */
    background: var(--color-blue);
    color: #fff;
  }
  .cta__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .cta__content {
    position: relative;
  }
  .arrow-orange {
    position: absolute;
    width: 112px;
    height: 264px;
    left: -133px;
    top: 43px;
  }
  .cta__title {
      font-weight: 500;
      font-size: 42px;
      margin: 0 0 25px;
  }
  .cta__description {
font-size: 20px;
margin: 0 0 84px;
max-width: 285px;
  }
  .cta__actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
  }
  .cta .button--outline {
    border-color: #fff;
    color: #fff;
  }
  .cta__media {
    margin: -20px 0 0;
  }
  
    /* About us */
    .about-us__hero {
        background-color: var(--color-blue);
        padding: 110px 100px;
        text-align: center;
        color: #fff;
    }
    .about-us__hero__title {
        font-size: 54px;
        font-weight: 600;
        line-height: 120%;
        margin: 0 0 20px;
    }
    .about-us__hero__subtitle {
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        max-width: 480px;
        margin: 0 auto;
    }

    .our-story,
    .category-header {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        padding: 74px 0 148px;
    }
    .our-story__title,
    .category-header__title {
        color: #0C0C0C;
        font-size: 42px;
        font-weight: 500;
        margin: 0 0 20px;
    }
    .our-story__description,
    .category-header__description {
        color: #000;
        font-size: 20px;
        max-width: 440px;
        line-height: 120%;
    }

    .statistics {
        margin: 0 0 180px;
    }
    .statistics-list {
        display: flex;
        justify-content: space-between;
    }
    .statistics-list__item {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .meet-our-team {
        display: flex;
        gap: 86px;
        justify-content: space-between;
        margin: 0 0 120px;
    }
    .meet-our-team__title {
        color: #0C0C0C;
        font-size: 42px;
        font-weight: 500;
    }
    .meet-our-team__title span {
        display: block;
    }
    .meet-our-team__cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 38px;
    }
    .meet-our-team__card picture {
        display: block;
        margin: 0 0 15px;
        overflow: hidden;
        border-radius: 20px;
        border: 1px solid #D9D9D9;
    }
    .meet-our-team__card img {
      width: 100%;
    }
    .meet-our-team__card-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #000;
        font-weight: 700;
        font-size: 20px;
        line-height: 120%;
        margin: 0 0 6px;
    }
    .linkedin {
        width: 16px;
        height: 16px;
        color: var(--color-blue);
    }
    .meet-our-team__card-subtitle {
        color: #000;
        font-size: 14px;
        margin: 0 0 32px;
        line-height: 120%;
    }
    .meet-our-team__bio {
        overflow: hidden;
    }
    .meet-our-team__bio-btn {
        display: flex;
        gap: 5px;
        align-items: center;
        text-transform: uppercase;
        color: var(--color-blue);
        font-size: 16px;
        font-weight: 700;
        line-height: 120%;
        padding: 0 0 16px;
        transition: all .1s ease-out;
    }
    .triangle-blue {
        width: 11px;
        height: 11px;
        transition: all .1s ease-out;
    }
    .meet-our-team__bio.active .triangle-blue {
        transition: all .1s ease-out;
        transform: rotate(180deg);
    }
    .meet-our-team__bio-text {
        color: #3C3C3C;
        font-size: 14px;
        line-height: 120%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .meet-our-team__bio-text span {
        display: block;
        margin: 0 0 14px;
    }
    .meet-our-team__bio.active .meet-our-team__bio-text {
        max-height: 1500px;
    }

    .our-values {
        padding: 80px 0 56px;
        background-color: var(--color-blue);
        color: #fff;
    }
    .our-values__title {
        font-size: 42px;
        font-weight: 500;
        margin: 0 0 62px;
    }
    .our-values__list {
        display: flex;
        gap: 24px;
        justify-content: space-between;
    }
    .our-values__list-item__number {
        color: #FFF;
        font-size: 20px;
        font-weight: 700;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 0 26px;
        background-color: rgba(255, 255, 255, 0.30);
    }
    .our-values__list-item__title {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 16px;
    }
    .our-values__list-item__subtitle {
        max-width: 285px;
        font-size: 18px;
    }


    /* Category */
    .category-header {
      padding: 108px 0 52px;
      align-items: center;
    }
    .category-header__wrap {
      position: relative;
      max-width: 375px;
    }
    .category-header__wrap .star-icon {
      position: absolute;
      right: 80px;
      top: -50px;
      width: 85px;
      height: 70px;
    }
    
    .articles {
      margin: 0 0 60px;
    }
    .articles__top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 10px;
      border-radius: 50px;
      background-color: var(--color-blue);
      margin-bottom: 30px;
    }
    .articles-categories__list {
      display: flex;
      gap: 30px;
      align-items: center;
    }
    
    .articles-categories__link {
      color: #FFF;
      font-size: 20px;
      line-height: 140%;
      display: block;
    }
    .articles-categories__link.active {
      padding: 10px 20px;
      border-radius: 100px;
      background: #FFF;
      color: #000;
    }
    .articles-search {
      position: relative;
    }
    .search .articles-search {
      margin: 0 0 40px;
    }
    .articles-search .search {
      position: absolute;
      top: 0;
    bottom: 0;
    margin: auto;
    left: 16px;
      display: block;
      width: 16px;
      height: 16px;
    }
    .articles-search__input {
      color: #fff;
      padding: 15px 30px 15px 40px;
      background-color: #8090B2;
      border-radius: 100px;
    }
    .articles-search__input::placeholder {
      color: #fff;
    }
    .featured-article {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 50px;
      background: var(--color-blue);
    }
    .featured-article__content {
      padding: 20px 0 50px 54px;
      color: #fff;
      max-width: 390px;
    }
    .featured-article__meta {
      display: flex;
      gap: 15px;
      margin: 0 0 25px;
    }
    .featured-article__meta-item {
      font-size: 12px;
      line-height: 140%;
      padding: 6px 10px;
      border-radius: 100px;
      background: #8090B2;
      color: #fff;
    }    
    .featured-article__title {
      font-weight: 500;
      font-size: 34px;
      margin: 0 0 20px;
    }
    .featured-article__excerpt {
      font-size: 16px;
      line-height: 140%;
      margin: 0 0 30px;
    }
    .featured-article__link {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 16px;
      line-height: 140%;
      font-weight: 700;
    }
    .featured-article__link .arrow-right-orange {
      display: block;
      flex-shrink: 1;
      width: 27px;
      height: 27px;
    }
    .featured-article__image picture {
      height: 100%;
      display: block;
    }
    .featured-article__image img {
      object-fit: cover;
      height: -webkit-fill-available;
    }
    
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 30px;
      margin: 0 0 64px;
    }
    .article-card {
      display: flex;
      flex-direction: column;
      height: auto;
    }
    .article-card__image {
      margin: 0 0 20px;
      display: block;
      overflow: hidden;
    }
    .article-card__image picture {
      overflow: hidden;
    }
    .article-card__image img {
      object-fit: cover;
      transition: 0.7s ease-out 1ms;
    }
    .article-card__image:hover img {
      transform: scale(1.05);
    }
    .article-card .meta {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 0 6px;
    }
    .article-card__meta {
      display: flex;
      gap: 14px;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 20px;
    }
    .article-card__meta-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .article-card__date {
      color: var(--color-blue);
      line-height: 140%;
      font-size: 12px;
    }
    .article-card__title {
      color: #000;
      font-size: 20px;
      font-weight: 700;
      line-height: 120%;
      margin: 0 0 10px;
    }
    .article-card__excerpt {
      color: #000;
      font-size: 14px;
      line-height: 120%;
      max-width: 90%;
      margin: 0 0 20px;
    }
    .article-card__author,
    .sidebar__author {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .article-card__author img,
    .sidebar__author img {
      border-radius: 50%;
    }
    .article-card__author-info,
    .sidebar__author-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .article-card__author-name {
      color: #000;
      font-weight: 500;
      font-size: 12px;
      line-height: 120%;
    }
    .sidebar__author-name {
      color: #FC671A;
      font-size: 16px;
      font-weight: 500;
    }
    .article-card__author-role {
      color: #ACACAC;
      font-size: 12px;
      line-height: 120%;
    }
    .sidebar__author-role {
      color: #C3C3C3;
      font-size: 14px;
      font-weight: 500;
    }
    .articles__more {
      text-align: center;
      margin-top: 40px;
      display: none;
    }
    .articles__more .button {
      min-width: 248px;
    }

    /* Single */
    .breadcrumbs {
      display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: #626D84;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    margin: 20px 0;
    }
    .arrow-right-rounded {
      width: 6px;
      height: 10px;
    }
    span.breadcrumbs__link {
      color: #0A1938;
    }

    .article-header {
      margin: 0 0 50px;
    }
    .single-title {
      color: #000;
      text-align: center;
      font-size: 46px;
      line-height: 120%;
      margin: 62px auto 20px;
      max-width: 70%;
    }
    .privacy-title {
      margin: 62px auto 30px;
    }
    .single-subtitle {
      color: #000;
      text-align: center;
      font-size: 20px;
      font-weight: 500;
      max-width: 680px;
      margin: 0 auto 40px;
    }

    .single__article-flex {
      display: flex;
      gap: 25px;
    }
    .sidebar {
      min-width: 300px;
    }
    .sidebar-inner {
      position: sticky;
      top: 108px;
      display: flex;
      flex-direction: column;
      /* gap: 18px; */
  }
  .sidebar__posted-by {
    margin: 0 0 30px;
  }
  .sidebar__title {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
  }
    .sidebar-theme {
      margin: 0 0 30px;
    }
    .sidebar-theme__items {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .sidebar-theme__items li {
      flex-shrink: 0;
      color: #000;
      font-weight: 500;
      font-size: 16px;
      width: fit-content;
      padding: 6px 15px;
      border-radius: 100px;
      border: 1px solid #000;
      background: #FFF;
    }
    .sidebar-sources {
      margin: 0 0 62px;
    }
    .sidebar-sources__list-item {
      margin: 0 0 10px;
    }
    .sidebar-sources__list a {
      color: #FC671A;
      text-decoration: underline;
      font-size: 14px;
      font-weight: 500;
    }
    .sidebar-meta-page {
      display: flex;
      gap: 26px;
      margin: 0 0 20px;
    }
    .sidebar-meta__item {
      display: flex;
      gap: 10px;
      align-items: center;
      color: #000;
      font-weight: 500;
      font-size: 16px;
      margin: 0 0 10px;
    }
    .sidebar-meta__item .icon {
      width: 16px;
      height: 16px;
      color: #fc671a;
    }
    .sidebar-meta__info {
      align-items: start;
      margin: 22px 0 0;
    }
    .sidebar-meta__info-text {
      display: block;
      font-weight: 400;
      margin: 0 0 8px;
    }
    .article-inner {
      flex-basis: 0;
      flex-grow: 999;
      min-width: calc(100% - 330px);
      color: #000;
    }
    .article-excerpt {
      font-size: 20px;
      margin: 0 0 40px;
    }
    .article-inner__content {
      margin: 0 0 40px;
    }
    .text {
      line-height: 130%;
    }
    .text h2 {
      font-size: 24px;
      margin: 0 0 20px;
    }
    .text h4,
    .text h3 {
      margin: 0 0 30px;
    }
    .text p {
      font-size: 16px;
      margin: 0 0 20px;
    }
    .text p > img {
      width: 100%;
      margin: 40px 0;
    }
    .text ul, .text ol {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin: -10px 0 20px;
    }
    .text ul li {
      position: relative;
      padding: 0 0 0 25px;
    }
    .text ul li::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 6px;
      display: inline-flex;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background-color: var(--color-blue);
    }
    .text ul.bullets-orange li::before {
      background-color: var(--color-orange);

    }
    .text ul.list-cross li::before {
      content: '❌';
      background-color: unset;
      font-size: 12px;
      top: 0;
    }
    .text ul.check-green li::before {
      content: '✅';
      background-color: unset;
      font-size: 12px;
      top: 0;
    }


    .block-image__wrapper {
      display: grid;
        grid-template-columns: 30% 70%;
        margin: 26px 0;
    }
    .block-image__wrapper-reverse {
        grid-template-columns: 70% 30%;
    }
    .block-image__wrapper figcaption {
      padding: 10px 10px 0;
        font-size: 13px;
        line-height: 1.5;
        color: #6c6c6c;
        text-align: center;
    }
    .block-image__wrapper img {
      max-width: 100%;
    }
    .block-image__content {
        line-height: 1.5;
      padding: 0 0 0 20px;
    }
    .block-image__wrapper-reverse .block-image__content {
        padding: 0 20px 0 0;
    }
    .block-image__wrapper-reverse figure {
        order: 2;
    }
    .block-image__wrapper-reverse img {
        width: -webkit-fill-available;
    }
    .block-image__content h3 {
      margin: 0 0 10px;
    }

    .key-takeaways {
      background-color: var(--color-blue);
      padding: 30px;
      color: #fff;
      margin: 0 0 50px;
      background-image: url(./images/key-takeaways@2x.png);
      background-repeat: no-repeat;
      background-position: 100% 100%;
      background-size: 292px;
    }
    .key-takeaways__title {
      font-size: 34px;
      font-weight: 500;
      line-height: 130%;
      margin: 0 0 30px;
    }
    ul.key-takeaways__list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px 20px;
      font-size: 14px;
      max-width: 75%;
    }

    .spoilers-section {
      margin: 0 0 40px;
    }
    .toshav-hozer__main .spoilers-section {
      margin: 80px 0;
    }
    .spoilers-section h2 {
      margin: 0 0 45px;
      color: #0C0C0C;
      text-align: center;
      font-size: 42px;
      line-height: normal;
      font-weight: 500;
    }
    .spoilers {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .spoiler {
      padding: 18px 20px 28px;
      transition: all 0.2s ease;
    }
    .spoiler:has(.question.active) {
      background-color: #FFF0E8;
    }
    .spoiler__question {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 16px;
      font-weight: 700;
      line-height: 120%;
      transition: 0.3s;
      cursor: pointer;
    }
    .spoiler .question .toggle-icon {
      display: flex;
    align-items: center;
    justify-content: center;
    max-width: 32px;
    width: 100%;
    height: 32px;
    background: var(--color-orange);
    border-radius: 100%;
    padding: 9px;
    margin: 0 0 0 auto;
    transition: all 0.3s ease;
    }
    .spoiler .question:hover .toggle-icon {
      transform: scale(1.1);
    }
    .spoiler .question .toggle-icon .icon {
      width: 100%;
      height: 100%;
      transition: 0.3s;
    }

    .spoiler .question.active .toggle-icon .icon {
      transform: rotate(45deg);
    }
    .spoiler .answer {
      position: relative;
      top: 10px;
      display: grid;
      grid-template-rows: 0fr;
      color: #5A5365;
      font-size: 16px;
      max-height: 0;
      overflow: hidden;
      padding: 0 70px 0 0;
      transition: all 0.3s ease;
    }
    .spoiler .answer.show {
      grid-template-rows: 1fr;
      max-height: 1500px;
      transition: all 0.3s ease;
    }


    .author-block {
      flex-direction: column;
      line-height: 130%;
      padding: 20px 20px 24px 20px;
      border-radius: 20px;
      border: 1px solid #D9D9D9;
      background: #FFF;
      margin: 0 0 40px;
    }
    .author-block__inner {
      display: flex;
      gap: 20px;
    }
    
    .author-block__img {
      flex-shrink: 0;
    }
    .author-block__img img {
      border-radius: 50%;
      object-fit: cover;
    }
    .author__title {
      color: #000;
      font-size: 24px;
      margin: 0 0 15px;
    }
    .author__name {
      color: #FC671A;
      font-size: 18px;
      margin-bottom: 5px;
    }
    .author__role {
      font-size: 16px;
    }
    .author__meta {
      color: #BEBEBE;
      font-size: 14px;
      margin-bottom: 20px;
    }
    .author__desc {
      margin: 0 0 16px;
    }
    a.author__link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-blue);
      font-size: 18px;
      text-decoration: none;
    }

    .need-guidance {
      padding: 30px;
      background-color: var(--color-blue);
      text-align: center;
      color: #fff;
    }
    .need-guidance__title {
      font-size: 30px;
      line-height: 120%;
      margin: 0 0 12px;
    }
    .need-guidance__subtitle {
      margin: 0 auto 20px;
      max-width: 630px;
    }

    /* Quiz page */
    .quiz-page__hero,
    .quiz-page__banner,
    .how-it-works {
      background-color: var(--color-blue);
      position: relative;
      overflow: hidden;
    }
    .quiz-page__hero-wrap,
    .quiz-page__banner-wrap {
      display: flex;
      gap: 50px;
      color: #fff;
      padding: 94px 0 66px;
    }
    .quiz-page__hero__meta,
    .quiz-page__banner-meta {
      max-width: 45%;
    }
    .quiz-page__hero h1 {
      font-size: 52px;
      font-weight: 400;
      line-height: 120%;
      margin: 0 0 35px;
    }
    .quiz-page__banner-title {
      font-size: 42px;
      font-weight: 500;
      margin: 0 0 25px;
    }
    .quiz-page__hero__meta-descr {
      font-weight: 500;
      font-size: 20px;
      margin: 0 0 72px;
    }
    .quiz-page__hero__meta-btns {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .quiz-page__hero__meta .btn-orange {
      min-width: 248px;
    }
    .quiz-page__hero .button--outline {
      color: #fff;
      padding: 14px 50px;
      border: 2px solid #FFF;
    }
    .quiz-page__banner-descr {
      font-size: 20px;
      font-weight: 400;
      margin: 0 0 60px;
    }
    .quiz-page__hero__meta-img,
    .quiz-page__banner-img.align-right {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
    }
    .quiz-page__hero__meta-img picture,
    .quiz-page__banner-img.align-right picture {
      display: block;
      height: 100%;
    }
    .quiz-page__hero__meta-img img,
    .quiz-page__banner-img.align-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: left;
    }
    .serv-consular__main .quiz-page__banner-img img,
    .serv-passport__main .quiz-page__banner-img img {
      object-fit: contain;
    }

    .quiz-form__back {
      color: #404040;
      background-color: #fff;
      border: 2px solid #404040;
    }


    .service-for,
    .check-situation {
      padding: 120px 0;
      text-align: center;
    }
    .service-for + .check-situation {
      padding: 0 0 120px;
    }
    .service-for__title,
    .check-situation__title {
      color: #0C0C0C;
      font-size: 42px;
      font-weight: 500;
      margin: 0 0 20px;
    }
    .service-for__descr,
    .check-situation__descr {
      color: #000;
      font-size: 20px;
      font-weight: 400;
      margin: 0 0 56px;
    }
    .check-situation .btn-orange:hover {
      color: var(--color-orange);
    }
    .service-for__cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 26px;
    }
    .page-template-tpl-serv-toshav-hozer .service-for__cards,
    .serv-consular__main .service-for__cards {
      grid-template-columns: repeat(4, 1fr);
    }
    .service-for__cards.flex-five {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }
    .service-for__card {
      flex-shrink: 0;
      padding: 20px 30px 34px;
      border-radius: 20px;
      border: 1px solid #D9D9D9;
      background: #FFF;
    }
    .service-for__cards.flex-five .service-for__card {
      max-width: 276px;
    }
    .service-for__card .icon {
      display: block;
      width: 48px;
      height: 48px;
      margin: 0 auto 15px;
    }
    .service-for__card-title {
      color: #000;
      font-size: 14px;
      font-weight: 400;
      margin: 0 0 10px;
    }
    .service-for__card:has(.service-for__card-subtitle) .service-for__card-title {
      font-size: 14px;
      font-weight: 700;
      margin: 0 0 10px;
    }
    .service-for__card-subtitle {
      font-size: 14px;
    }
    .restore-status {
      margin: 0 0 120px;
    }
    .restore-status h2 {
      color: #0C0C0C;
      text-align: center;
      font-size: 42px;
      font-weight: 500;
      margin: 0 0 40px;
    }
    .restore-status__cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }
    .restore-status__card {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #000;
      font-size: 14px;
      border-radius: 20px;
      background: #C1D4F1;
      padding: 14px 20px 14px 6px;
    }
    .restore-status__card .icon {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
    }
    .how-it-works {
      padding: 60px 0 75px;
      color: #fff;
      text-align: center;
    }
    .how-it-works__title {
      font-size: 42px;
      font-weight: 500;
      margin: 0 0 60px;
    }
    .how-it-works__steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 72px;
      max-width: 1024px;
      margin: auto;
    }
    .how-it-works__steps::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 33px;
      width: 72%;
      height: 2px;
      margin: auto;
      background-color: #4C374F;
    }
    .how-it-works__step {
      display: flex;
      flex-direction: column;
      z-index: 5;
    }
    .how-it-works__step__digit {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFF;
      font-size: 24px;
      font-weight: 700;
      line-height: 130%;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: 2px solid #FFF;
      background: #323057;
      margin: 0 auto 15px;
    }
    .how-it-works__step__digit::before {
      content: '';
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: -10px;
      right: 0;
      margin: auto;
      width: 80px;
      background-color: var(--color-blue);
    }
    .how-it-works__step:has(.how-it-works__step__subtitle) .how-it-works__step__title {
      font-size: 16px;
      font-weight: 700;
      line-height: 120%;
      letter-spacing: -0.45px;
      margin: 0 0 10px;
    }
    .how-it-works__note {
      text-align: center;
      color: #8F9EBC;
      font-size: 20px;
      margin: 70px 0 0;
    }


    /* Contact us */
    .contact {
        padding: 110px 0 60px;
      }
      .contact__wrap {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 100px;
        margin: 0 0 90px;
      }
      .contact__title {
        color: #0C0C0C;
        font-size: 80px;
        font-weight: 500;
        margin: 0 0 38px;
      }
      .contact__description {
        color: #000;
        font-size: 20px;
        line-height: 140%;
      }
      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      
      .contact-form__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .contact-form__label {
        display: block;
        color: #000;
        font-size: 16px;
        font-weight: 500;
        margin: 0 0 10px;
        line-height: 120%;
      }
      .contact-form__input,
      .contact-form__textarea {
        width: 100%;
        padding: 15px 16px;
        border-radius: 100px;
        border: 1px solid #DFDFDF;
        background: #FFF;
        font-size: 14px;
      }
      .contact-form__textarea {
        /* min-height: 50px; */
        font-family: var(--font-primary);
        max-height: 200px;
        line-height: 140%;
        border-radius: 25px;
        resize: vertical;
      }
      .contact-form__submit {
        margin-top: 10px;
        padding: 14px;
      }

      .wpcf7-form-control-wrap {
        position: relative;
    }
    .wpcf7-response-output,
    .screen-reader-response {
        display: none;
    }
    .wpcf7-not-valid {
        position: relative;
    }
    span.wpcf7-not-valid-tip {
        position: absolute;
        top: 0;
        bottom: 0;
        left: unset;
        display: flex;
        align-items: center;
        right: 15px;
        font-size: 24px;
        font-weight: 600;
    }
    .wpcf7 form div.wpcf7-response-output {
        font-size: 13px;
        margin: 0 0 -27px;
        padding: 10px 0 0;
        color: #6CD817;
        border: none;
    }
    .wpcf7 form.invalid .wpcf7-response-output {
        color: #CA1A1A;
    }
    .submitting button {
        color: transparent;
        pointer-events: none;
    } 
    .submitting button:hover {
        transform: none;
    }
    .submitting button:before {
        content: '';
        position: absolute;
        top: 41%;
        left: 0;
        right: 0;
        display: block;
        width: 45px;
        height: 12px;
        background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDQzLjkxOCA1Mi4wOTkgMTIuMTY0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxjaXJjbGUgY3g9IjYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjEiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+CiAgPGNpcmNsZSBjeD0iMjYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjIiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+CiAgPGNpcmNsZSBjeD0iNDYiIGN5PSI1MCIgcj0iNiIgZmlsbD0iI2NjYyI+CiAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iLjMiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiB2YWx1ZXM9IjA7MTswIi8+CiAgPC9jaXJjbGU+Cjwvc3ZnPg==') no-repeat;
        background-size: 100%;
        margin: 0 auto;
        z-index: 5;
    } 
    .form__control .wpcf7-spinner {
        display: none;
    }
      
      .contact-form .btn-blue {
        display: flex;
        gap: 10px;
        width: 100%;
        padding: 12px 20px;
        border-radius: 30px;
        color: #FFF;
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 20px;
      }
      .contact-form .btn-blue::after {
        content: '';
        display: block;
        width: 14px;
        height: 14px;
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAQAAACROWYpAAABCklEQVR42pWTURGDMBBEIyESIqESkICESMBB46B1AA6QEAlIiAQkbOE+2COTMrn9O8KbebPJOWsQ8EYG8LFhXjBm6MUmYoStGFNsWEbCfk3zPywiY79hEzwCSkua2NDC3JELXVAoTWxuYxU63KQx4FNhidgddQ6zkj5AZkNCIFSjMmlptscKHtBKOmv8Gb2kXzxewBREhDZaS/OnKJ+VQxMdZf5qlq3fHDRaSTMPDoIycqGbew4drvum9NSzhglnkvqy4kzogb2WlBky9wVfvT2IMsUekq9ptUrr17fDyy2cya4/mARJRum6NGQtbSstWqV1abtZWq+sWZql2aVZWhF4tHHctBG+dfIDZldg2o0N+hIAAAAASUVORK5CYII=");
        background-repeat: no-repeat;
        background-size: cover;
      }
      .contact-form__messengers {
        display: flex;
        gap: 20px;
      }
      .contact-form__messenger {
        flex: 1;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        text-align: center;
        padding: 12px;
        border-radius: 25px;
        color: #fff;
      }
      .contact-form__messenger--whatsapp {
        background: #25d366;
      }
      .contact-form__messenger--telegram {
        background: #0088CC;
      }
      /* bottom contact info */
      .contact-details {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        margin: 0 0 120px;
      }
      .contact-details__item {
        color: #000;
        font-size: 14px;
        line-height: 142%;
      }
      .contact-details__item .icon {
        width: 24px;
        height: 24px;
        color: #000;
      }
      .contact-details__title {
        font-size: 16px;
        font-weight: 700;
        line-height: 120%;
        margin: 0 0 6px;
      }
      .contact-details__info {
        font-size: 15px;
        line-height: 160%;
        margin: 0 0 6px;
      }

      /* Privacy policy */
      .banner-privacy {
        color: #fff;
        background-color: #026;
        background-image: url(./images/banner-privacy@2x.png);
        background-size: auto;
        background-position: 92% 50%;
        background-repeat: no-repeat;
        padding: 40px 68px;
        margin: 30px 0 0;
      }
      .banner-privacy__inner {
        max-width: 410px;
      }
      .banner-privacy__title {
        font-weight: 600;
        line-height: 120%;
        font-size: 30px;
        margin: 0 0 14px;
      }
      .banner-privacy a {
        text-decoration: none;
      }
      .banner-privacy__contacts-item {
        display: block;
        margin: 0 0 4px;
      }

      /* Thank you page */
      .thanks-page__wrapper {
        background-color: var(--color-blue);
        background-image: url(./images/cta@2x.png), url(./images/white-hatch@2x.png);
        background-repeat: no-repeat;
        background-position: 80% 100%, 85% 90%;
        background-size: 650px, 1150px;
        padding: 166px 0;
        color: #fff;
      }
      .thanks-page__content {
        max-width: 465px;
      }
      .thanks-page__title {
        color: #FFF;
        font-size: 45px;
        font-weight: 700;
        margin: 0 0 12px;
      }
      .thanks-page__subtitle {
        font-size: 32px;
        margin: 0 0 34px;
      }
      .thanks-page__link {
        display: block;
        width: fit-content;
      }

      /* 404 */
      .error-page_wrapper {
        margin: 44px 0 100px;
        text-align: center;
        color: #000;
      }
      .error-page__title {
        font-size: 46px;
        font-weight: 400;
        line-height: 120%;
        margin: 0 0 20px;
      }
      .error-page__subtitle {
        margin: 0 0 30px;
      }
      .error-page__link {
        display: block;
        width: fit-content;
        margin: 0 auto;
      }
      .error-page__404 {
        font-size: 540px;
        font-weight: 700;
        line-height: 80%;
        color: #D5DBE4; 
        font-weight: bold;
        background-image: linear-gradient(to bottom, #fff, #D5DBE4);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
      }

      /* modal forms */
.modal {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 50px;
  margin: 0;
}
.modal .container {
  padding: 0;
}
.modal-form__content {
  display: flex;
  gap: 60px;
}
.modal.column .modal-form__content {
  max-width: 895px;
  flex-direction: column;
}
.modal.row .modal-form__content {
  flex-direction: row;
}
.modal-form__close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  transition: 0.3s;
}
.fancybox-close-small {
  top: 6px;
  right: 6px;
}
.plus-icon {
  position: relative;
    width: 38px;
    height: 38px;
    /* background-color: #fff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.plus-icon::before, 
.plus-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-blue);
  border-radius: 1px;
}
.plus-icon::before {
  width: 24px;
  height: 2px;
}
.plus-icon::after {
  width: 2px;
  height: 24px;
}
.modal-form__form {
  width: 100%;
}
.modal.row .modal-form__form {
  max-width: 325px;
  margin: 0 auto;
}
.modal.column .modal-form__form form {
  display: flex;
  gap: 20px;
}
.modal-form__header {
  display: flex;
  flex-direction: column;
}
.modal-form__title {
  font-family: var(--primary-font);
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  margin: 0 0 25px;
}
.modal-form__subtitle {
  text-align: right;
  color: #FFF;
  font-family: var(--decorative-font);
  font-size: 74px;
  font-style: italic;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: 1.48px;
}
.modal.column .form__group {
  width: 100%;
}
.modal.column .form__group.notice {
  flex: 0 1 45%;
}
.modal .form__group:has( > p ) {
  padding: 0;
  margin: 0 0 40px 0;
}
.modal .form__group a {
  color: var(--font-color);
  text-decoration: none;
}
.modal .form__group a:hover {
  text-decoration: underline;
}
.modal .form__control .btn {
  display: block;
  width: 100%;
}
.modal-form__privacy-text {
  margin: auto 0 0 0;
}
.modal-form__privacy-text.mobile {
  display: none
}
.modal-form__privacy-text p {
  color: #FFF;
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}
.modal-form__privacy-text p a {
  color: #FFF;
  text-decoration: underline;
}
.modal-form__privacy-text p a:hover {
  text-decoration: none;
}


  /* callback-form */
  #callback-form {
    background-color: #f0ecea;
    max-width: 500px;
    overflow: visible;
  }
  .callback-form .form-callback__form {
    max-width: 500px;
  }
  .callback-form__title {
    color: var(--title-color);
    text-align: center;
    font-size: 1.3em;
    font-weight: 700;
    margin: 0 0 24px 0;
  }

  .callback-form .form-callback__form button,
  .callback-form .form-callback__form input {
    max-width: 500px;
  }
  .callback-form .form-callback__form > span {
    filter: drop-shadow(8px 8px 40px rgba(141, 83, 78, 0.15));
  }
  .callback-form .annotation {
    color: var(--title-color);
  }


  /* FOOTER */
  .footer-main {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    padding: 120px 0 70px;
}
.footer__logo {
    display: block;
    margin: 0 0 46px;
}
.footer-main__descr {
    max-width: 260px;
    color: #000c;
    font-size: 14px;
    line-height: 142%;
    margin: 0 0 28px;
}
.footer-contact {
    max-width: 260px;
    margin: 0 0 24px;
}
.footer-contact__item {
    margin: 0 0 16px;
}
.footer-socials__title {
    color: #000c;
font-size: 14px;
font-weight: 600;
line-height: 142%;
margin: 0 0 12px;
}
.footer-socials__icons {
    display: flex;
    gap: 16px;
}
.footer-socials__icons .icon {
    width: 20px;
    height: 20px;
}
.footer-column__title {
    color: #026;
    font-family: var(--font-decorative);
    font-size: 18px;
    font-weight: 700;
    line-height: 158%;
    letter-spacing: -0.45px;
    margin: 0 0 20px;
}
.footer-menu li {
    color: #000c;
    font-size: 14px;
    line-height: 142%;
    transition: 0.3s;
}
.footer-menu li:not(:last-of-type) {
    margin: 0 0 15px;
}
.footer-menu li:hover {
    transition: 0.3s;
}
.footer-lower {
    padding: 33px 0 90px;
    border-top: 1px solid rgba(0, 0, 0, 0.20);
}
.copyright {
    text-align: center;
    color: #0009;
    text-align: center;
    font-size: 14px;
    line-height: 142%;
}

.nowrap {
  white-space: nowrap;
}
.hidden-desktop {
  display: none;
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}