@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Bold.woff");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Semibold.woff");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Regular.woff");
    font-weight: 400;
    font-display: swap;
}

* {
    font-family: "Gilroy", sans-serif;
    font-style: normal;
    scroll-padding-top: 4rem;
}

html {
    overflow-x: hidden;
}

html.open {
    overflow: hidden;
}

body {
    background: #FDFDFD;
    overflow-x: hidden;
}

.grecaptcha-badge {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.brand-color {
    color: #ffa100;
}

.wrapper {
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .wrapper {
        min-height: 500px;
    }
}

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

@media (max-width: 991px) {
    .header + * {
        margin-top: 54px;
    }
}

a.btn,
button.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    color: #ffa100;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    display: block;
}

a.btn:hover,
button.btn:hover {
    color: #FFF;
    background: #ffa100;
}

a.btn--empty,
button.btn--empty {
    color: #0066ff;
    border: 2px solid #0066ff;
}

a.btn--empty:hover,
button.btn--empty:hover {
    color: #FFF;
    background: #0066ff;
}

.header {
    background: transparent;
    padding: 20px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    transition: .3s;
}

.header.fixed {
    background-color: #FFF;
    box-shadow: 0 4px 10px 0 rgba(255, 255, 255, 0.4);
}

.header.out {
    transform: translateY(-100%);
    box-shadow: none;
}

@media (max-width: 991px) {
    .header {
        padding: 10px 0;
    }
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    height: 40px;
}

.header__logo.active-link {
    pointer-events: none;
    cursor: default;
}

.header__logo-img {
    height: 100%;
    width: auto;
}

@media (max-width: 991px) {
    .header__logo {
        height: 34px;
    }
}

.header__burger {
    display: none;
    height: 18px;
    width: 22px;
    position: relative;
}

@media (max-width: 991px) {
    .header__burger {
        display: block;
    }
}

.header__burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #111111;
    border-radius: 1px;
    opacity: 1;
    right: 0;
    transition: 0.3s;
    transform: rotate(0deg);
}

.header__burger span:nth-child(1) {
    top: 1px;
}

.header__burger span:nth-child(2) {
    top: 8px;
}

.header__burger span:nth-child(3) {
    top: 15px;
}

.header__burger.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.header__burger.open span:nth-child(2) {
    opacity: 0;
    right: -60px;
}

.header__burger.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.header__burger.open span:nth-child(4) {
    top: 20px;
    width: 0;
    right: 50%;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 991px) {
    .header__menu {
        padding: 0 15px;
        position: fixed;
        top: 54px;
        left: 0;
        z-index: 10;
        width: 100%;
        height: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        transform: translateX(0%);
        transition: 0.3s;
    }

    .header__menu:not(.open) {
        transform: translateX(-100%);
    }
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 991px) {
    .header__nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 0 30px 10px;
        gap: 30px;
        border-top: 1.5px solid #4A4645;
        border-bottom: 1.5px solid #4A4645;
    }
}

.header__nav-item {
    font-size: 16px;
    line-height: 20px;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.header__nav-item:hover {
    border-color: #111111;
}

.header:not(.fixed) .header__btn {
    background: transparent;
    border-color: #111111;
    color: #111111;
}

.header:not(.fixed) .header__btn:hover {
    color: #FFF;
    background: #111111;
}

@media (max-width: 991px) {
    .header__btn {
        width: 100%;
        text-align: center;
    }
}

.header__languages-title {
    color: #111111;
    font-size: 16px;
    line-height: 22px;
    margin-right: 6px;
    display: none;
}

.header__languages,
.header__languages-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__languages-wrap {
    flex-direction: column;
}

.header__languages-item {
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    color: #111111;
    border-bottom: 1px solid transparent;
}

.header__languages-item:hover {
    border-color: #111111;
}

.header__languages-item.active {
    pointer-events: none;
    color: #0066ff;
    font-weight: 700;
}

.header:not(.fixed) .header__languages-item.active {
    color: #111111;
}

@media (max-width: 991px) {
    .header__languages-title {
        display: block;
    }

    .header__languages-wrap {
        flex-direction: row;
        gap: 8px;
    }

    .header__languages-item.active {
        pointer-events: none;
        color: #111111;
        font-weight: 400;
        border-color: #111111;
    }
}

.main {
    background: #ffa100;
    padding: 188px 0 160px;
}

.main .container {
    position: relative;
}

@media (max-width: 991px) {
    .main {
        padding: 60px 0 340px;
        background: #ffa100;
        margin-bottom: 120px;
    }
}

@media (min-width: 992px) {
    .main__info {
        max-width: 65%;
    }
}

.main__title {
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    margin: 0 0 20px;
    color: #111111;
}

@media (max-width: 991px) {
    .main__title {
        font-size: 34px;
        line-height: 40px;
        text-align: center;
    }
}

.main__title span {
    color: #ffffff;
}

@media (max-width: 991px) {
    .main__title span {
        display: block;
    }
}

.main__subtitle {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 30px;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .main__subtitle {
        font-size: 26px;
        line-height: 32px;
        margin: 0 0 30px;
        text-align: center;
    }
}

.main__btn {
    width: fit-content;
}

@media (max-width: 991px) {
    .main__btn {
        margin: 0 auto;
    }
}

.main__img {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -150%;
    right: 0;
    transform: translateX(100px);
    max-width: 45%;
}

@media (max-width: 991px) {
    .main__img {
        max-width: 300px;
        right: 50%;
        transform: translateX(50%);
        bottom: -470px;
    }
}

.advantages {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .advantages {
        padding: 40px 0;
    }
}

.advantages__head {
    margin-bottom: 80px;
    max-width: 60%;
}

@media (max-width: 991px) {
    .advantages__head {
        margin-bottom: 30px;
        max-width: 100%;
    }
}

.advantages__head-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 20px;
}

@media (max-width: 991px) {
    .advantages__head-title {
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }
}

.advantages__head-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}

.advantages__head-btn {
    border: 2px solid #ffa100;
    color: #ffa100;
    display: flex;
    align-items: center;
    gap: 10px;
}

.advantages__head-btn:hover {
    background: #ffa100;
    color: #fff;
}

.advantages__head-btn:hover svg path {
    stroke: #fff;
}

.advantages__content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1200px) {
    .advantages__content {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .advantages__content {
        flex-direction: column;
    }
}

.advantages__item {
    max-width: 260px;
    width: 100%;
}

@media (max-width: 991px) {
    .advantages__item {
        max-width: 100%;
    }
}

.advantages__item-head {
    display: grid;
    align-items: center;
    grid-template-columns: 32px 1fr;
    grid-gap: 15px;
}

@media (max-width: 991px) {
    .advantages__item-head {
        grid-gap: 10px;
    }
}

.advantages__item-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.advantages__item-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin: 0;
}

.advantages__item-desc {
    margin: 15px 0 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.partners {
    padding: 0 0 100px;
}

@media (max-width: 991px) {
    .partners {
        padding: 0 0 40px;
    }
}

.partners__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin: 0 0 25px;
}

.partners__slider {
    border-radius: 10px;
    border: 2px solid #ffa100;
    width: 100%;
    overflow: hidden;
}

.partners__slider .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.partners__slider .swiper-slide {
    width: 180px;
}

.partners__item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partners__logo {
    max-height: 120px;
    max-width: 180px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.line-separator {
    display: block;
    min-width: 3px;
    width: 3px;
    height: 85px;
    border-radius: 1.5px;
    background: #0066ff;
    margin: auto 0;
}

@media (max-width: 991px) {
    .line-separator {
        width: 85px;
        height: 3px;
    }
}

.services {
    padding: 0 0 100px;
}

@media (max-width: 991px) {
    .services {
        padding: 0 0 40px;
    }
}

.services__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin: 0 0 25px;
}

@media (max-width: 991px) {
    .services__title {
        font-size: 30px;
        line-height: 36px;
    }
}

.services__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

@media (max-width: 991px) {
    .services__grid {
        gap: 20px;
    }
}

.services-item {
    border-radius: 10px;
    background: #0066ff;
    padding: 30px 20px;
    max-width: 370px;
    width: 100%;
}

.services-item__name {
    padding: 15px 30px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    background: #fff;
    color: #111111;
    margin: 0 0 20px;
    border-radius: 10px;
    text-align: center;
}

.services-item__list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.services-item__point {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    position: relative;
}

.services-item__point:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.667 5L7.5 14.167 3.333 10' stroke='%23ffa100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.services-item__point b {
    padding-left: 25px;
}

.services-item__point p {
    margin: 5px 0 0;
}

.services-item__point:not(:last-child) {
    margin-bottom: 10px;
}

.services-item__price {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #fff;
}

.services-item__price span {
    color: #ffa100;
}

a.btn.services__btn {
    background: transparent;
    color: #FFF;
    text-align: center;
}

a.btn.services__btn:hover {
    background: #FFF;
    color: #0066ff;
}

.contact-form {
    background: #ffa100;
    padding: 100px 0
}

@media (max-width: 991px) {
    .contact-form {
        padding: 40px 0
    }
}

.contact-form__title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin: 0 0 25px;
    text-align: center;
}

@media (max-width: 991px) {
    .contact-form__title {
        font-size: 30px;
        line-height: 36px
    }
}

.contact-form__form {
    margin: 0 auto;
    max-width: 370px
}

.contact-form__item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px
}

.contact-form__item:last-child {
    margin-bottom: 20px
}

.contact-form__item-label {
    color: #111111;
    font-size: 18px;
    line-height: 22px
}

.contact-form__item-label--small {
    font-size: 14px;
    line-height: 20px;
}

.contact-form__item-label span {
    color: #f44336
}

.contact-form__item-input, .contact-form__item-textarea {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 30px
}

.contact-form__item-input[type="date"],
.contact-form__item-input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.contact-form__item-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

select.contact-form__item-input,
.contact-form__item-input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.contact-form__item-input {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    cursor: pointer;
}

select.contact-form__item-input option {
    background: #ffa100;
    color: #fff;
}

.contact-form__item-input::-moz-placeholder, .contact-form__item-textarea::-moz-placeholder {
    color: #fff
}

.contact-form__item-input::placeholder, .contact-form__item-textarea::placeholder {
    color: #fff
}

.contact-form__item-textarea {
    height: 90px;
    resize: none
}

.contact-form__item-textarea::-webkit-scrollbar {
    width: 2px
}

.contact-form__item-textarea::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 1px;
    margin: 20px 0;
    width: 2px
}

.contact-form__item-textarea::-webkit-scrollbar-thumb {
    background: #111111;
    border-radius: 1px;
    width: 2px
}

.contact-form__btn {
    color: #FFFFFF;
    width: 100%
}

.contact-form__btn:not(:disabled):hover {
    color: #FFFFFF;
}

.contact-form__btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.contact-form__message {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.contact-form__message--success {
    background-color: #4caf50;
    color: #fff;
    border: 2px solid #45a049;
}

.contact-form__message--error {
    background-color: #f44336;
    color: #fff;
    border: 2px solid #da190b;
}

.contact-form__error {
    color: #f44336;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.contact-form__item-input--invalid {
    border-color: #f44336 !important;
}

.contact-form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.faq {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .faq {
        padding: 40px 0;
    }
}

.faq__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin: 0 0 25px;
}

@media (max-width: 991px) {
    .faq__title {
        font-size: 30px;
        line-height: 36px;
    }
}

.faq__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.faq__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.faq__item {
    border-radius: 10px;
    border: 2px solid #111111;
    transition: border-color 0.3s;
}

.faq__item:not(:last-child) {
    margin-bottom: 15px;
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    padding: 15px 30px;
    cursor: pointer;
}

.faq__q span {
    transition: color 0.3s;
}

.active .faq__q,
.faq__q:hover span {
    color: #0066ff;
}

.active .faq__q svg path,
.faq__q:hover svg path {
    fill: #0066ff;
}

.faq__q svg {
    min-width: 15px;
    height: 12px;
}

.faq__q svg {
    fill: #292A30;
    transition: transform 0.3s;
}

.active .faq__q svg {
    transform: rotate(180deg);
}

.faq__a {
    font-size: 16px;
    line-height: 20px;
    max-height: 0;
    height: auto;
    overflow: hidden;
    transition: max-height ease 0.3s, margin 0.3s;
    padding: 0 30px;
}

.active .faq__a {
    max-height: 500px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .active .faq__a {
        margin-bottom: 15px;
    }
}

.faq__a p {
    margin: 0;
}

.faq__a p:not(:last-child) {
    margin-bottom: 10px;
}

.footer {
    margin-top: auto;
    background: #1F1F1F;
    padding: 60px 0 0;
}
@media (max-width: 991px) {
    .footer {
        padding: 40px 0 0;
    }
}

.footer .container {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr repeat(3, auto);
    gap: 25px 60px;
}

@media (max-width: 991px) {
    .footer .container {
        grid-template-columns: 1fr;
    }
}

.footer__logo {
    height: 40px;
}

.footer__logo.active-link {
    pointer-events: none;
    cursor: default;
}

.footer__logo-img {
    height: 100%;
    width: auto;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.footer__col-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #0066ff;
    margin: 0 0 15px;
}

.footer__col-link {
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    width: fit-content;
    transition: 0.3s all;
    border-bottom: 1px solid transparent;
}

.footer__col-link:hover {
    border-color: #ffffff;
}

.footer__col-link.active-link {
    border-color: #ffffff;
    pointer-events: none;
}

.footer__col-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer__col-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-gap: 18px;
}

.footer__col-item--info,
.footer__col-item--icon {
    grid-template-columns: auto;
    width: fit-content;
}

.footer__col-item--icon:hover img {
    scale: .9;
    opacity: .9;
}

.footer__col-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: .3s;
}

.footer__col-item:not(:last-child) {
    margin-bottom: 10px;
}

.footer__cp {
    margin-top: 80px;
    padding: 15px;
    background: #333333;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .footer__cp {
        margin-top: 40px;
    }
}

.information {
    padding: 120px 0 100px
}

@media (max-width: 992px) {
    .information {
        padding: 40px 0
    }
}

.information__title {
    color: #ffa100;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin: 0 0 40px
}

@media (max-width: 992px) {
    .information__title {
        font-size: 30px;
        line-height: 36px
    }
}

.information__content h2, .information__content h3, .information__content h4, .information__content h5, .information__content h6 {
    font-weight: 600;
    margin: 0 0 20px
}

.information__content h2:not(:first-child), .information__content h3:not(:first-child), .information__content h4:not(:first-child), .information__content h5:not(:first-child), .information__content h6:not(:first-child) {
    margin: 20px 0
}

@media (max-width: 992px) {
    .information__content h2, .information__content h3, .information__content h4, .information__content h5, .information__content h6 {
        font-size: 24px;
        line-height: 30px
    }
}

.information__content h2 {
    font-size: 30px;
    line-height: 36px
}

.information__content h3, .information__content h4, .information__content h5, .information__content h6 {
    font-size: 24px;
    line-height: 30px
}

.information__content p {
    margin: 0
}

.information__content p:not(:last-child) {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 15px
}

.information__content a {
    border-bottom: 1px solid #111111;
    color: #111111;
    -webkit-text-decoration: none;
    text-decoration: none
}

.information__content a:hover {
    border-color: transparent
}

.information__content ol, .information__content ul {
    margin: 15px 0;
    padding-left: 30px
}

.information__content ol li:not(:last-of-type), .information__content ul li:not(:last-of-type) {
    margin-bottom: 8px
}

.cky-table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: auto;
    margin: 20px 0;
}

.cky-cookie-audit-table {
    font-family: inherit;
    border-collapse: collapse;
    width: 100%;
}

.cky-cookie-audit-table th {
    border: 1px solid #CBCED6;
}

.cky-cookie-audit-table td {
    border: 1px solid #D5D8DF;
}

.cky-cookie-audit-table th, .cky-cookie-audit-table td {
    text-align: left;
    padding: 10px;
    color: #111111;
    word-break: normal;
}

