:root {
    --primary-color: #4155B0;
    --black-color: #1B1B1B;
}

@keyframes fadeIn {
    99% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

@keyframes fadeIn {
    99% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: auto;
    line-height: 1;
}

body {
    font-family: "Noto Sans";
    font-style: normal;
    margin: 0;
    color: #000000;
    min-height: 100%;
}

body.no-scroll {
    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
}

section {
    display: flex;
    justify-content: center;
}

h1,
h2 {
    margin: 0;
}

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

.btn {
    display: block;
    cursor: pointer;
    text-align: center;
    padding: 15px 50px;
    transition: all 0.5s ease;
    border: none;
    width: fit-content;
    color: #181A26;
    font-family: "Noto Sans";
    border-radius: 15px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    background: #FFF;
    box-shadow: 0 6px 26.667px 0 rgba(11, 22, 67, 0.07);

}

@media (max-width: 768px) {
    .btn {
        padding: 5px 18px;
        border-radius: 5.847px;
    }
}

.d-none {
    display: none !important;
}

.btn:hover {
    background: #fff;
    color: #4155B0;
    outline: 1px solid #4155B0;
}

.modal {
    display: none;
}

.modal.is-open {
    display: block;
}

a {
    -webkit-transition: color 500sms ease;
    -ms-transition: color 500ms ease;
    transition: color 500ms ease;
    color: #1B1B1B;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

a:hover {
    opacity: 0.7;
}

p {
    color: #181A26;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.space-100 {
    height: 100px;
}

@media (max-width: 2600px) {
    .inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 998px) {
    main {
        padding-top: 60px;
    }

    .inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (max-width: 479px) {
    .inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .space-100 {
        height: 60px;
    }
}


.breadcrumbs {
    font-size: 16px;
    margin-bottom: 24px;
    color: #7a7d85;
}

.breadcrumbs__link {
    color: #7a7d85;
    text-decoration: none;
}

.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs__current {
    color: #181A26;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/* Micromodal */
/* Overlay */
.modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Container */
.modal__container {
    background: #fff;
    padding: 30px;
    max-width: 800px;
    max-height: 100vh;
    width: 100%;
    border-radius: 12px;
    overflow-y: auto;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Title */

.modal__title {
    color: #1B1B1B;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    padding-bottom: 24px;
}

.modal__title span {
    color: #4155B0
}

/* Close button */
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.modal__close::before {
    content: "\2715";
    font-size: 18px;
    color: #000;
}

/* Content */
.modal__content {
    margin: 2rem 0;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Button */
.modal__btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    background-color: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.25s ease-out;
}

.modal__btn:hover,
.modal__btn:focus {
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}

/* Micromodal Animation Classes */
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10%);
    }
}

/* Micromodal slide behavior */
.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn 0.3s cubic-bezier(0.0, 0.0, 0.2, 1);
    opacity: 1;
    pointer-events: auto;
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* Performance */
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform, opacity;
}

/* /Micromodal */


.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container--header-top {
    padding: 10px 0 !important;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__logo-link {
    display: block;
}

.header__logo-img {
    width: 95px;
}

.header--home .container--header-bottom {
    background: #DFE8FF;
}

.header__line {
    width: 100%;
    height: 5px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}

.container--header-bottom {
    max-width: 100% !important;
}

.container--header-bottom .header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
}

.header__logo-name {
    font-weight: bold;
    display: block;
    font-family: "Noto Sans", sans-serif;
    text-transform: uppercase;
    font-size: 32px;
}

.header__logo-name:hover {
    color: #000000;
}

.header__menu-wrapper {
    display: flex;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
}

.header__menu {
    display: flex;
    list-style: none;
    padding: 0;
}

.header__menu-item {
    font-family: "Noto Sans";
    padding: 0 60px 0 0;
    color: #181A26;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 37.333px;
}

.header__menu-link {
    color: #1B1B1B;
    opacity: 0.8;
}

.header__menu-link:hover {
    opacity: 1;
}

.header__menu-btn-wrapper {
    display: flex;
    align-items: center;
}

.header__menu-burger {
    display: none;
}


.header-socials {
    display: flex;
}

.header-socials__item {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    background-size: contain;
}


.header-socials__item.header-socials__item--harb {
    background-image: url("/wp-content/themes/afm-theme/assets/images/habr-icon.svg");
}

.header-socials__item.header-socials__item--tg {
    background-image: url("/wp-content/themes/afm-theme/assets/images/tg-icon.svg");
}


@media (max-width: 1200px) {
    .header__menu-item {
        font-size: 18px;
    }
}

@media (max-width: 998px) {
    .header {
        z-index: 99;
        transition: all 0.3s ease;
        position: fixed;
        background: #fff;
        box-shadow: 0 5.511px 33.072px 0 rgba(14, 37, 95, 0.07);
        padding: 0;
        height: 60px;
    }

    .header--fixed {

        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        background-image: url('/wp-content/themes/edme/assets/images/8fc4a896-f878-4691-920c-59c7b22f483f.png');
        background-repeat: repeat;
        background-size: contain;
        background-position: top center;

    }

    .header__logo-img {
        width: auto;
    }

    .header__logo-name {
        font-size: 28px;
    }

    .header-socials__item {
        margin-left: 15px;
    }

    .header__menu {
        margin: 0;
        display: flex;
        flex-direction: column;
        padding: 20px 0 0 0;

        display: none;
    }

    .header__menu-item {
        font-size: 16px;
        border-bottom: 1px solid #808080;
    }

    .header__menu-item:nth-last-of-type(1) {
        border-bottom: none;
    }

    .header__menu-btn-wrapper {
        display: none;
    }

    .header__menu-link {
        width: 100%;
        display: block;
        text-align: start;
        padding: 15px 0;
    }

    .header__menu-wrapper {
        z-index: 1;
        top: 60px;
        left: 0;
        height: 0;
        opacity: 0;
        position: absolute;
        transition: all 0.5s ease;
        flex-direction: column;
        width: 100%;
        top: 46px;
    }

    .header__menu-wrapper.active {
        opacity: 1;
        padding: 0 20px;
        background: #fff;
        z-index: 99;
        height: auto;
    }

    .header__menu-burger {
        display: block;
        width: 100px;
        height: 62px;
        background-image: url(/wp-content/themes/afm-theme/assets/images/burger.svg);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .header__logo-img {
        height: 30px;
    }

    .header__logo-name {
        font-size: 20px;
    }

    .header__menu-burger {
        width: 25px;
        height: 25px;
        margin-left: 15px;
    }

    .header-socials__item {
        width: 25px;
        height: 25px;
        background-size: contain;
    }


}


@keyframes fadeIn {
    99% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}


.header-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #4D5667;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.header-mobile.header--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-mobile__close {
    width: 62px;
    height: 62px;
    background: url('/wp-content/themes/afm-theme/assets/images/close.svg') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    align-self: flex-end;
    padding-top: 20px;
}

.header-mobile__contact {
    font-size: 14px;
    color: #fff;
}

.header-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 200px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.header-mobile-menu__item {
    /* если нужно стилизовать <li> */
}

.header-mobile-menu__link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-family: "Noto Sans", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 56px */
}

.header-mobile-menu__link:hover {
    opacity: 0.7;
}

.header-mobile__footer {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-mobile__request-text {
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header-mobile__request-btn {
    margin-top: 10px;
    background: #FFF;
    color: #4155B0;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: auto;
}

.header-mobile__contacts {
    display: flex;
    justify-content: space-between;
}

.header-mobile__contact {
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: start;
}

.header-mobile__contact.header-mobile__contact--tg {
    display: flex;
    align-items: center;
}

.header-mobile__contact.header-mobile__contact--tg::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url('/wp-content/themes/edme/assets/images/icons/menu-tg.svg') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    display: block;
    padding-right: 8px;
}


@media (max-width: 479px) {
    .header-mobile__close {
        width: 23px;
        height: 23px;
        margin-top: -10px;
    }

    .header-mobile-menu {
        padding: 50px 0 0 0;
    }

    .header-mobile-menu__link {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 33.6px */
    }

    .header-mobile__request-text {
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        width: 307px;
    }

    .header-mobile__contacts {
        flex-direction: column;
        padding-top: 50px;
    }

    .header-mobile__contact {
        padding-bottom: 16px;
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}


.promo-home {
    margin: 0 auto;
    position: relative;
    padding-top: 40px;
    padding-bottom: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    background: #DFE8FF;
}


.promo-home__bg {
    position: absolute;
    height: 371px;
    right: -70px;
    bottom: -35px;
    z-index: 0;
}

/*.promo-home__inner {*/
/*    background-image: url("/wp-content/themes/afm-theme/assets/images/promo-bg.svg");*/
/*    background-repeat: no-repeat;*/
/*    background-position: right;*/
/*    background-size: contain;*/
/*}*/


.promo-home__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: relative;
    z-index: 1;
}

.promo-home__desc {
    color: #181A26;
    padding-top: 15px;
    font-family: "Noto Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 1;
}

.promo-home__btn {
    margin-top: 25px;
    position: relative;
    z-index: 1;
}


@media (max-width: 998px) {

    .promo-home {

        background-size: 430px;
        background-position-y: bottom;
        background-position-x: 3em;
    }

    .promo-home__inner {
        padding-top: 0px;
        padding-bottom: 100px;
    }

    .promo-home__title {
        font-size: 45px;
        font-weight: 600;
    }

    .promo-home__desc {
        font-size: 17px;
        max-width: 280px;
        padding-top: 5px;
    }

    .promo-home__btn {
        width: fit-content;
        font-size: 14px;
    }

    .promo-home__bg {
        height: 95%;
        right: 0;
    }
}

@media (max-width: 768px) {

}


.companies {
    margin: 0 auto;
    position: relative;
    padding-top: 45px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #81879E;
    padding-bottom: 50px;
}

.companies__wrapper {
    display: flex;
    flex-direction: column;
}

.companies__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}

.companies__title span {
    color: #4155B0;
}

.companies__items {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3%;
    justify-items: center;
    align-items: center;
}

.companies-item {
    max-width: 100%;
    max-height: 100px;
    height: auto;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {

    .companies {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .companies__items {
        padding-top: 40px;
    }


    .companies__title {
        font-size: 26px;
    }

    .companies__items {
        flex-wrap: nowrap; /* в один ряд */
        justify-content: flex-start; /* без space-between */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 24px; /* расстояние между логотипами */
        grid-template-columns: repeat(2, 1fr);
    }

    .companies-item {
        flex: 0 0 auto;
        max-width: none;
        max-height: 70px;
        width: 100%;
    }
}


.services {
    margin: 0 auto;
    position: relative;
    padding: 45px 0;
    text-align: center;
    display: flex;
    border-bottom: 1px solid #81879E;
}

.services__wrapper {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.services__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.services__items {
    padding-top: 45px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-item {
    box-sizing: border-box;

    flex-direction: column;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 5.33px 35px 0 rgba(14, 37, 95, 0.07);
    display: flex;
    padding: 50px 35px;
    align-items: flex-start;
    width: 32%;
}

.services .slick-slide {
    margin: 0 15px;
    box-sizing: border-box;
}

.services .slick-list {
    margin: 0 -15px;
    padding: 20px 25px;
}

.services .slick-slide.slick-active {
    box-shadow: 0 5.33px 35px 0 rgba(14, 37, 95, 0.07);
}

.services .slick-slide {
    box-shadow: none;
}


.services .slick-slide {
    box-shadow: none;
    transition: box-shadow 2s ease;
}

.services .slick-slide.slick-active {
    box-shadow: 0 5.33px 35px 0 rgba(14, 37, 95, 0.07) !important;
}

.services {
    position: relative;
}

.services__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    pointer-events: none;
}


.services-prev,
.services-next {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    z-index: 10;
}


.services-prev {
    left: 0;
}

.services-next {
    right: 0;
}


.services-prev::before,
.services-next::before {
    content: none;
}

.services-prev::after,
.services-next::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border-bottom: 3px solid #254AA5;
    border-right: 3px solid #254AA5;
}

.services-prev::after {
    transform: rotate(135deg);
}

.services-next::after {
    transform: rotate(-45deg);
}


.service-item__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 24px;
    padding-top: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: start;
    height: 100px;
}

.service-item__desc {
    overflow: hidden;
    color: #181A26;
    padding-top: 20px;
    text-overflow: ellipsis;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: start;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.service-item__link {
    color: #81879E;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 34.667px; /* 192.593% */
    letter-spacing: 1.333px;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 50px;
}

.service-item__link-arrow {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/afm-theme/assets/images/arrow-icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 10px;
}


.services-item__name br {
    display: none;
}

.services-item--open .services-item__name {
    opacity: 0;
}

.service-item__img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}


.service-item__img {
    display: block;
    width: 105px;
}


.services-item__title {
    color: var(--primary-color);
    font-family: "Noto Sans", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: start;
}


.services-item__desc {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.8;
    padding-bottom: 5px;
    text-align: start;
    margin-top: 16px;
}


@media (max-width: 998px) {

    .services__nav {
        display: none;
    }


    .services-item__right {
        padding-left: 30px;
    }

    .services-item__title {
        font-size: 35px;
    }
}

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

    .services__title {
        font-size: 26px;
    }

    .services__items {
        padding-top: 40px;
    }

    .service-item {
        width: 100%;
        border-radius: 8.268px;
        background: #FFF;
        box-shadow: 0 5.511px 33.072px 0 rgba(14, 37, 95, 0.07);
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .service-item__title {
        font-size: 20px;
        height: auto;
        padding-top: 5px;
        max-width: 80%;
    }


    .service-item__desc {
        font-size: 16px;
        padding-top: 30px;
    }


    .service-item__link {
        font-size: 14px;
        padding-top: 30px;
    }

    .service-item__link-arrow {
        width: 16px;
        height: 16px;
    }


    .service-item__img-wrapper {
        position: relative;
    }

    .services-item__number {
        font-size: 35px;
    }

    .services-item__name {
        font-size: 23px;
    }

    .service-item__img {
        width: 50px;
        position: absolute;
        right: 0;
    }

    .services-item--open .services-item__name {
        opacity: 0;
    }


    .services-item__body {
        flex-direction: column;
    }

    .services-item__title--mobile {
        display: block;
    }

    .services-item__title--desktop {
        display: none;
    }
}


.news {
    margin: 0 auto;
    position: relative;
    padding-top: 45px;
    S
    display: flex;
    flex-direction: column;
    padding-bottom: 65px;
}

.news__wrapper {
    display: flex;
    flex-direction: column;
}

.news__title {
    color: #181A26;
    padding-bottom: 35px;
    font-family: "Noto Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}

.news span {
    color: #4155B0;
}

.news__items {
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.news-item {

}

.news__cols {
    display: flex;
    justify-content: space-between;
}

.news__col {
    width: 50%;
}


.news__tags {
    color: #254AA5;
    max-width: 686px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.news__tag {
    color: #254AA5;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 15px;
    display: block;

}


.news-item {
    padding-bottom: 55px;
}

.news-item__top {
    display: flex;
    padding-bottom: 20px;
}

.news-item__tag {
    color: #254AA5;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

.news-item__date {
    color: #81879E;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    padding-left: 40px;
}


.news-item__date--bottom {
    padding-left: 0;
}


.news-item__title {
    display: block;
    text-align: start;
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 20px;
}

.news__col--left, .news__col--right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.news__col--left .news-item {
    padding-bottom: 0;
}


.news__link {
    color: #254AA5;
    font-family: "Noto Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.news__link-arrow {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/afm-theme/assets/images/arrow-icon-primary.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
}


@media (max-width: 998px) {
    .news {
        padding-top: 40px;
    }

    .news__col {
        width: 100%;
    }

    .news__tags {
        gap: 5px;
        padding-bottom: 40px;
    }

    .news__title {
        font-size: 26px;
        padding-bottom: 40px;
    }

    .news__cols {
        flex-direction: column;
    }

    .news__tag {
        font-size: 16px;
    }

    .news-item__tag {
        font-size: 16px;
    }

    .news-item__date {
        font-size: 16px;
    }

    .news-item__title {
        font-size: 18px;
        font-weight: 700;
    }

    .news__col--left .news-item {
        padding-bottom: 40px;
        S
    }

    .news__link {
        justify-content: end;
        text-align: end;
        width: 100%;
        font-size: 16px;
    }

    .news__link-arrow {
        width: 17px;
        height: 17px;
    }

    .news {
        padding-bottom: 40px;
    }

    .news-item {
        padding-bottom: 40px;
    }

}


.page-info {
    margin: 0 auto;
    position: relative;
    padding-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-info__wrapper {
    display: flex;
    flex-direction: column;
}

.page-info__title {
    color: #1B1B1B;
    font-family: "Noto Sans", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: start;
}

.page-info__title span {
    color: #4155B0;
}

.page-info__desc p {
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.8;
    padding-top: 16px;
    text-align: start;
}

@media (max-width: 998px) {
}

@media (max-width: 767px) {
    .page-info__title {
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }

    .page-info__desc p {
        font-size: 20px;
    }
}

@media (max-width: 479px) {
    .page-info__title {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }

    .page-info__desc p {
        font-size: 17px;
    }
}


/* Модификация для страницы услуг */
.page-info.page-info--desc {
    padding-top: 0;
}

.page-info.page-info--desc .page-info__desc p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.8;
    padding-top: 0;
}

@media (max-width: 479px) {
    .page-info.page-info--desc .page-info__desc p {
        font-size: 16px;
    }
}

/* //Модификация для страницы услуг */


.service-steps {
    margin: 0 auto;
    position: relative;
    padding-top: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-steps__wrapper {
    display: flex;
    flex-direction: column;
}

.service-steps__title {
    color: #1B1B1B;
    font-family: "Noto Sans", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: start;
    max-width: 980px;
}

.service-steps__title span {
    color: #4155B0;
}

.service-steps__list {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}

.service-step {
    width: 100%;
    min-height: 215px;
    height: auto;
    flex-shrink: 0;
    position: relative;
    border-radius: 25px;
    margin-bottom: 15px;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.service-step__title {
    margin: 25px 25px 0 25px;
    color: #EBEFFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: start;
}

.service-step__desc {
    margin: 8px 25px 0 25px;
    color: #EBEFFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    text-align: start;
    opacity: 0.8;
    padding-bottom: 24px;
    max-width: 816px;
}

.service-step__number {
    color: #EBEFFF;
    font-family: "Noto Sans", sans-serif;
    font-size: 441px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 573.3px */
    opacity: 0.3;
    position: absolute;
    top: 50%;
    transform: translateY(-42%);
    right: 0;
}

@media (max-width: 998px) {
    .service-step__number {
        opacity: 0.1;
        top: -24px;
        transform: none;
        font-size: 233px;
    }
}

@media (max-width: 767px) {
    .service-steps {
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }

    .service-step {
        min-height: 215px;
        flex-shrink: 0;
        border-radius: 25px;
        background-size: contain;
        background-position: right;
        background-repeat: no-repeat;
        background-blend-mode: overlay;
    }
}

@media (max-width: 479px) {
    .service-step__desc {
        margin: 5px 25px 0 5px;
    }

    .service-steps {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }

    .service-step {
        width: 100%;
    }
}


.default-block {
    margin: 0 auto;
    position: relative;
    padding-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.default-block__wrapper {
    display: flex;
}

.default-block__left {
    min-width: 450px;
    padding-right: 50px;
}

.default-block__title {
    color: #1B1B1B;
    font-family: "Noto Sans", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: start;
    max-width: 980px;
}

.default-block__title span {
    color: #4155B0;
}

.default-block__desc {
    padding-top: 24px;
}

.default-block__desc ul {
    margin: 0;
    padding: 0;
}

.default-block__desc li {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.8;
    text-align: start;
}

.default-block__desc li::marker {
    font-size: 25px;
    color: var(--primary-color);
}

@media (max-width: 998px) {
    .default-block__wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .default-block__right {
        padding-top: 0;

    }

    .default-block__left {
        min-width: auto;
        padding-right: 0;
    }

    .default-block__title {
        font-size: 40px;
    }

    .default-block__desc ul {
        margin: 0;
        padding: 0 0 0 25px;
    }

}

@media (max-width: 479px) {
    .default-block__title {
        font-size: 24px;
    }
}


.request-modal {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 320px;
}

.request-modal__row {
    display: flex;
    justify-content: center;
}

.request-modal__col {
    display: flex;
    flex-direction: column;
}

.request-modal .form__item {
    width: 100%;
}

.request-modal__btn {
    margin-top: 16px;
    width: 100%;
}

.request-modal__item-padding {
    padding-top: 50px;
}

@media (max-width: 998px) {

    .request-modal__row {
        flex-direction: column;
    }

    .request-modal__col {
        flex-direction: row;
    }

    .request-modal .form__item {
        margin-right: 10px;
    }

    .request-modal__btn {
        width: 100%;
        padding: 15px 30px;
    }

}

@media (max-width: 479px) {

}


@keyframes default-anime-left {
    to {
        background-position-x: -150px;
    }
}

@keyframes default-anime-right {
    to {
        background-position-x: 150px;
    }
}


.footer {
    background: #4D5667;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
}

.footer__logo {
    padding-bottom: 60px;
    display: flex;
    justify-content: start;
}

.footer__logo-img {
    width: 130px;
    height: 68px;
}

.footer-request__btn {
    margin-top: 16px;
    background: #FFF;
    color: var(--primary-color);
    display: block;
    width: fit-content;
}

.footer__wrapper {
    display: flex;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer__left {
    width: 50%;
    padding-bottom: 80px;
    border-bottom: 1px solid #FFF;
}

.footer__right {
    width: 50%;
    padding-bottom: 80px;
    border-bottom: 1px solid #FFF;
}

.container--footer-top {
    padding-bottom: 24px;
}


.footer__contact {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 16px;
    text-align: start;
}

.footer__copyright {
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer__menu {
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
    height: 68px;
    align-items: center;
}

.footer__menu-item {
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}


.footer__socials {
    display: flex;
    flex-direction: column;
}

.footer__social {
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-align: start;
    padding-bottom: 24px;
}

.footer__mobile {
    display: none;
}

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

    .footer__logo-img {
        height: 50px;
        width: auto;
    }

    .footer__left {
        width: 100%;
        border-bottom: none;
        padding-bottom: 40px;
    }

    .footer__right {
        width: 100%;
        border-bottom: none;
        padding-bottom: 40px;
    }

    .footer__contact {
        font-size: 16px;
    }

    .footer__menu {
        flex-direction: column;
        align-items: start;
        height: auto;
        padding-bottom: 40px;
    }

    .footer__menu-item {
        padding-bottom: 20px;
    }

    .footer__social {
        font-size: 16px;
    }

    .footer__copyright {
        font-size: 14px;
    }
}


.breadcrumbs {
    margin: 0 auto;
    position: relative;
    display: flex;
    padding: 20px 0;
}

.breadcrumbs__wrapper {
    display: flex;
}


.page-title {
    margin: 0 auto;
    position: relative;
    display: flex;
    padding: 20px 0;
}

.page-title__wrapper {
    display: flex;
}

.page-title__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
}


@media (max-width: 998px) {
    .page-title__title {
        font-size: 26px;
    }
}


.page-contacts {
    padding-top: 50px;
}


.contacts-full {
    margin: 0 auto;
    position: relative;
    display: flex;
    padding: 20px 0;
}

.contacts-full__wrapper {
    display: flex;
    justify-content: space-between;
}

.contacts-full__col {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.contacts-full__title {
    padding-top: 40px;
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
}

.contacts-full__address {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1.333px;
    text-transform: uppercase;
    line-height: 34.667px;
    padding-top: 20px;
}

.contacts-full__phone {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 20px;
}

.contacts-full__phone span {
    padding-right: 5px;
    color: #81879E;
}

.contacts-full__email {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    padding-top: 20px;
}

.contacts-full__email span {
    padding-right: 5px;
    color: #81879E;
}

.contacts-full__web {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-top: 20px;
}

.contacts-full__web span {
    padding-right: 5px;
    color: #81879E;
}


@media (max-width: 998px) {
    .contacts-full__wrapper {
        flex-direction: column;
    }

    .contacts-full__title {
        font-size: 26px;
    }

    .contacts-full__address {
        font-size: 16px;
    }

    .contacts-full__phone {
        font-size: 16px;
    }

    .contacts-full__email {
        font-size: 16px;
    }

    .contacts-full__web {
        font-size: 16px;
    }

}


.contacts-socials {
    margin: 0 auto;
    position: relative;
    display: flex;
    padding: 90px 0 90px 0;
}

.contacts-socials__wrapper {
    display: flex;
    justify-content: space-between;
}

.contacts-socials__left {
    width: 50%;
}

.contacts-socials__right {
    width: 50%;
}

.contacts-socials__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
}

.contacts-socials__list {
    display: flex;
    flex-direction: column;
    align-items: start
}

.contacts-socials__item {
    color: #000;
    font-family: "Noto Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.contacts-socials__item::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 20px;

}

.contacts-socials__item--tg::before {
    background-image: url(/wp-content/themes/afm-theme/assets/images/tg-icon.svg);
}

.contacts-socials__item--habr::before {
    background-image: url(/wp-content/themes/afm-theme/assets/images/habr-icon.svg);
}


@media (max-width: 998px) {

    .contacts-socials {
        padding: 40px 0 40px 0;
    }

    .contacts-socials__wrapper {
        flex-direction: column;
    }

    .contacts-socials__title {
        font-size: 26px;
    }

    .contacts-socials__left {
        width: 100%;
    }

    .contacts-socials__right {
        width: 100%;
    }

    .contacts-socials__list {
        padding-top: 25px;
    }

    .contacts-socials__item {
        font-size: 20px;
    }

    .contacts-socials__item::before {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

}


.news-list {
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    padding-bottom: 65px;
}

.news-list__wrapper {
    display: flex;
    flex-direction: column;
}

.news-list__title {
    color: #181A26;
    padding-bottom: 35px;
    font-family: "Noto Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}


.news-list__tags {
    display: flex;
}

.news-tags__item  {
    color: #254AA5;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 10px;
}

.news-list__list {
    padding-top: 45px;
}


.news-list__item {
    margin-top: 35px;
}

.news-list__item-tag {
    color: #254AA5;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-list__item-date {
    color: #81879E;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 600;
}

.news-list__item-title {
    margin-top: 25px;
    color: #181A26;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}



.news-list__item-content {
    font-size: 16px;
    line-height: 1.5;
    padding-top: 0;
    padding-bottom: 20px;
    color: #181A26;
}


.news-list__item-content p {
    margin-top: 0;
    margin-bottom: 1rem;
}


.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}




.news-list__item-body {

    height: 70px;
    overflow: hidden;
    position: relative;

    margin-top: 20px;

}

.news-list__item-body p{
    color: #181A26;
    font-size: 16px;
    font-weight: 500;
}


.news-list__item:not(.news-list__item--active) .news-list__item-body::after {
    display: none !important;
}


.news-list__item--active .news-list__item-body {
    height: auto;
}

.news-list__item-control {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}


.news-pagination {
    margin: 65px 0 0 0;
    display: flex;
    justify-content: end;
}


.news-pagination * {
    font-size: 18px;
    margin: 0 10px;
}


@media (max-width: 998px) {
    .news-list__item-title {
        font-size: 20px;
    }

}


.contacts-form {
    margin: 0 auto;
    position: relative;
    display: flex;
    padding: 90px 0 0 0;
}

.contacts-form__wrapper {
    display: flex;
    justify-content: space-between;
}

.contacts-form__left {
    width: 50%;
}

.contacts-form__right {
    width: 50%;
}

.contacts-form__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.requestForm__btn {
    border-radius: 15px;
    background: #3E5CB3;
    width: fit-content;
    color: #fff;
    padding: 15px 30px;
}


@media (max-width: 998px) {

    .contacts-form {
        padding: 40px 0 0 0;
    }

    .contacts-form__wrapper {
        flex-direction: column;
    }

    .contacts-form__left {
        width: 100%;
    }

    .contacts-form__right {
        width: 100%;
    }

    .contacts-form__title {
        font-size: 24px;
        padding-bottom: 15px;
    }

    .contacts-form__title br {
        display: none;
    }


    .requestForm__btn {
        font-size: 18px;
        width: 100%;
    }
}


@media (max-width: 480px) {
    @keyframes anime-left {
        from {
            left: -40%;
        }
        to {
            left: -70%;
        }
    }
    @keyframes anime-right {
        from {
            right: -60%;
        }
        to {
            right: -90%;
        }
    }
    .default-block__anime-left {
        background-position-x: -350px;
    }

    .default-block__anime-right {
        background-position-x: 300px;
    }

    @keyframes default-anime-left {
        to {
            background-position-x: -400px;
        }
    }
    @keyframes default-anime-right {
        to {
            background-position-x: 350px;
        }
    }
}

.contact-form {
    width: 390px;
    background: #ffffff;
    position: relative;
}

.contact-form__title {
    color: #000;
    font-size: 22px;
    font-weight: 700;
}

.form__input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    width: 100%;
    color: #1B1B1B;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 15px;
    border: 1px solid #81879E;
}

.form__input::placeholder {
    color: #808080;
}

.form__input:focus {
    border: 1px solid black;
}

.form__input--success {
    border: 1px solid green;
}

.form__input--error {
    border: 1px solid red;
}

.form__select {
    padding: 12px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #d6d6d6;
    margin-bottom: 15px;
}

.form__item {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.form__item p {
    margin: 0;
    width: 100%;
}


.form label {
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.form__btn {
    background: none;
    width: 100%;
}

.form__checkbox-wrapper {
    color: #d9d9d9;
    margin: 16px 0;
}

.modal-form {
    width: 100%;
}

.wpcf7-response-output {
    border-color: #3399FF !important;
    border-width: 1px !important;
    padding: 10px 0 !important;
    font-size: 16px;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item-label {
    color: #1B1B1B;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
    opacity: 0.8;
}

.wpcf7-form.invalid .wpcf7-validates-as-required {
    border: 1px solid #ff0000;
}

.wpcf7-response-output {
    text-align: center;
}

@media (max-width: 1600px) {
    .modal-form {
        font-size: 14px;
    }

    .modal-form__input {
        font-size: 14px;
        padding: 10px;
        margin-top: 10px;
    }

    .modal-form__btn {
        font-size: 16px;
        padding: 15px 0;
    }
}

@media (max-width: 790px) {
    .form {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .request__left {
        padding-right: 0;
    }

    .contact-form {
        padding-top: 25px;
    }

    .modal-form .form__input {
        font-size: 14px;
    }

    .form__input {
        font-size: 16px;
    }
}








.promo-company {
    margin: 0 auto;
    position: relative;
    padding: 45px 0;
    text-align: center;
    display: flex;
}

.promo-company__wrapper {
    display: flex;
}
.promo-company__left {
    width: 50%;
}
.promo-company__right {
    width: 50%;
}


.promo-company__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-style: normal;
    line-height: normal;
    margin-top: 20px;
    font-weight: 700;
    font-size: 50px;
    text-align: start;
}


.page-template-page-company .container--header-bottom{
    background: #DFE8FF;
}

.promo-company {
    background: #DFE8FF;
}

.promo-company__desc {
    color: #181A26;
    text-align: start;
    font-size: 18px;
    margin-top: 45px;
}


.promo-company__point {
    display: flex;
    margin-top: 30px;
    align-items: center;
}

.promo-company__point-desc {
    text-align: start;
    font-size: 18px;
    margin-left: 25px;
}


.promo-company__point-icon {
    width: 50px;
}



@media (max-width: 998px) {
    .promo-company__left {
        width: 100%;
    }
    .promo-company__right {
        width: 100%;
    }

    .promo-company__title {
        font-size: 35px;
    }
    .promo-company__wrapper {
        flex-direction: column;
    }
    .promo-company__desc {
        font-size: 16px;
    }
    .promo-company__point-desc {
        font-size: 16px;
    }

}



.company-partners {
    margin: 0 auto;
    position: relative;
    padding: 45px 0 0 0;
    text-align: center;
    display: flex;
    position: relative;
}

.company-partners__wrapper {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.company-partners__title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.company-partners .icon-block {
    margin-top: 45px;
}



@media (max-width: 767px) {
    .company-partners__title {
        font-size: 26px;
    }
    .company-partners {
        padding: 30px 0 0 0;
    }
}







.company-control {
    margin: 0 auto;
    position: relative;
    padding: 45px 0 0 0;
    text-align: center;
    display: flex;
    position: relative;
}

.company-control__wrapper {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.company-control__title {
    color: #181A26;

    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}



.company-control .icon-block {
    margin-top: 45px;
}



.company-control .default-slider__item-title {
    color: #3E5CB3;
}



@media (max-width: 767px) {
    .company-control__title {
        font-size: 26px;
    }

    .company-control {
        padding: 30px 0 0 0;
    }

}








.company-solutions {
    margin: 0 auto;
    position: relative;
    padding: 45px 0 0 0;
    text-align: center;
    display: flex;
    position: relative;
}

.company-solutions__wrapper {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.company-solutions__title {
    color: #181A26;

    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.company-solutions__desc,
.company-solutions__desc p{
    margin-top: 0px;
    color: #181A26;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 99.835%; /* 29.95px */
    text-align: left;
}



.company-solutions__desc li{

    line-height: 2em; /* 29.95px */
}



@media (max-width: 767px) {
    .company-solutions__title {
        font-size: 26px;
    }

    .company-solutions__desc,
    .company-solutions__desc p{
        font-size: 16px;
    }
    .company-solutions__desc li {
        line-height: normal;
        margin-bottom: 15px;
    }

    .company-solutions {
        padding: 30px 0 30px 0;
    }
}










.company-gaurantee {
    margin: 0 auto;
    position: relative;
    padding: 45px 0;
    display: flex;
    position: relative;
    text-align: start;
}

.company-gaurantee__wrapper {
    display: flex;
}

.company-gaurantee__left {
    width: 50%;
}
.company-gaurantee__right {
    width: 50%;
}


.company-gaurantee__title {
    color: #181A26;
    font-weight: 600;
    font-size: 30px;
    font-style: normal;
    line-height: normal;
}



.company-gaurantee__desc {
    text-align: start;
    font-size: 18px;
    line-height: normal;
}

.company-gaurantee .icon-block {
    margin-top: 40px;
}

@media (max-width: 998px) {
    .company-gaurantee__left {
        width: 100%;
    }
    .company-gaurantee__right {
        width: 100%;
    }

    .company-gaurantee__title {
        font-size: 40px;
    }
    .company-gaurantee__wrapper {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .company-gaurantee {
        display: none;
    }
    .company-gaurantee__title {
        font-size: 26px;
    }
    .company-gaurantee {
        padding: 30px 0;
    }


}













.default-slider {
    max-width: 100%;
}

.default-slider__items {
    padding-top: 45px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.default-slider .slick-slide {
    margin: 0 15px;
    box-sizing: border-box;
}

.default-slider .slick-list {
    margin: 0 -15px;
    padding: 20px 25px;
}

.default-slider .slick-slide.slick-active {
    box-shadow: 0 5.33px 35px 0 rgba(14, 37, 95, 0.07);
}

.default-slider .slick-slide {
    box-shadow: none;
}


.default-slider .slick-slide {
    box-shadow: none;
    transition: box-shadow 2s ease;
}

.default-slider .slick-slide.slick-active {
    box-shadow: 0 5.33px 35px 0 rgba(14, 37, 95, 0.07) !important;
}


.default-slider__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    pointer-events: none;
}


.default-slider__prev,
.default-slider__next {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    z-index: 10;
}


.default-slider__prev {
    left: 0;
}

.default-slider__next {
    right: 0;
}


.default-slider__prev::before,
.default-slider__next::before {
    content: none;
}

.default-slider__prev::after,
.default-slider__next::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border-bottom: 3px solid #254AA5;
    border-right: 3px solid #254AA5;
}

.default-slider__prev::after {
    transform: rotate(135deg);
}

.default-slider__next::after {
    transform: rotate(-45deg);
}


.default-slider__item {
    min-height: 350px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    box-shadow: 0 5.33px 35px 0 rgba(14, 37, 95, 0.07);
}

.default-slider__item-desc {
    margin-top: 30px;
    text-align: start;
    width: 100%;

    overflow: hidden;
    color: #181A26;
    text-overflow: ellipsis;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: start;
}

.default-slider__item-title {
    color: #181A26;
    font-family: "Noto Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: start;
    width: 100%;

}




@media (max-width: 767px) {

    .default-slider__item {
        min-height: 130px !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        margin-bottom: 10px;
    }
    .default-slider .slick-slide {
        margin: 0 5px;
    }

    .default-slider__prev {
        left: 10px;
    }

    .default-slider__next {
        right: 10px;
    }

    .default-slider__item-desc {
        font-size: 14px;
    }
    .default-slider__item-title {
        font-size: 22px;
    }

    .default-slider__items {
        padding-top: 30px;
    }

    .default-slider__nav {
        display: none;
    }

}






.icon-block {
    display: flex;
    align-items: center;
}

.icon-block__icon {
    width: 50px;
    height: auto;
}

.icon-block__desc {
    text-align: start;
    font-size: 18px;
    margin-left: 25px;

    color: #000;

    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width: 767px) {
    .icon-block {
        align-items: self-start;
    }
    .icon-block__desc {
        font-size: 16px;
    }
}






#cookie_note {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 40%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 99999;
}

#cookie_note .btn {
    width: auto;
}

#cookie_note p {
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
    padding-right: 15px;
}

#cookie_note a {
    color: var(--primary-color);
}

@media (min-width: 576px) {
    #cookie_note.show {
        display: flex;
    }
}

@media (max-width: 575px) {
    #cookie_note.show {
        display: block;
        text-align: left;
    }
}

/*# sourceMappingURL=style.css.map */
