body {
    line-height: 1.3;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background: #f7f7f7;
}
button,
input,
select,
textarea {
    font-family: "Montserrat", sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
}
img {
    /* object-fit: cover; */
}
.container {
    width: 81.25rem;
    margin: 0 auto;
}
section {
    margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.25rem;
    padding: 0 1.25rem;
    font-weight: 600;
    border-radius: 10rem;
    transition: all 0.25s ease-in;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    gap: 0.65rem;
    position: relative;
}
.btn.btn-icon1 {
    justify-content: flex-start;
}
.btn.btn-icon1 .btn-icon {
    position: absolute;
    right: 0.35rem;
}
.btn.btn-icon2 {
    justify-content: flex-end;
    font-weight: 500;
}
.btn.btn-icon2 .btn-icon {
    position: absolute;
    left: 0.35rem;
}
.btn.red {
    background: #ed1a2b;
    font-weight: 700;
    color: #fff;
}
.btn.red:hover {
    background: #c82020;
}
.btn.blue{
    position: relative;
    color: #fff;
    background: linear-gradient(
            180deg,
            #0e8ad1 -77.5%,
            #079bd2 10.4%,
            #2c6bba 100%
    );
}
.btn.blue div, .btn.blue span{
    position: relative;
    z-index: 1;
}
.btn.blue:hover:after{
    opacity: 0;
}
.btn.blue:after{
    background: linear-gradient(
            90deg,
            #0e8ad1 -77.5%,
            #079bd2 10.4%,
            #2c6bba 100%
    );
    position: absolute;
    inset: 0;
    content: "";
    transition: all 0.35s;
}


.btn.white {
    background: #fff;
    color: #273074;
    font-weight: 500;
}
.btn.white:hover {
    background: #273074;
    color: #fff;
}
.btn.navy {
    background: #273074;
    color: #fff;
}
.btn.navy:hover {
    background: #fff;
    color: #273074;
}
.btn.lil-width {
    width: 12.5rem;
}
.brn.mid-width {
    width: 13.75rem;
}
.btn-icon {
    background: white;
    border-radius: 10rem;
    width: 2.65rem;
    height: 2.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-icon img {
    width: 1.6rem;
    height: 1.6rem;
}

/* Section title */
.section-title {
    font-size: 2.25rem;
    font-weight: 500;
    color: #273074;
    font-family: "Unbounded", sans-serif;
    line-height: 1.1;
}
.section-title.big {
    font-size: 3rem;
}
.contentMargin{
    margin-bottom: -1rem;
}
/* Header */
.site-header {
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    padding: 0.5rem 0;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    height: 5.125rem;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
}
.head-nav-link {
    position: relative;
    font-weight: 700;
    color: #1e1e1e;
    transition: all 0.25s ease-in;
    padding-bottom: 0.25rem;
}
.head-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    transition: width 0.25s ease-in;
}
.head-nav-link:hover::after,
.head-nav-link.active::after {
    width: 100%;
}
.head-nav-link.active,
.head-nav-link:hover {
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.head-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.head-lang {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    font-weight: 700;
    user-select: none;
}
.head-lang-arrow {
    transition: transform 0.25s ease;
}
.head-lang.open .head-lang-arrow {
    transform: rotate(180deg);
}
.head-lang-drop {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 45%;
    transform: translateX(-50%);
    background: #273074;
    border-radius: 0.45rem;
    display: none;
    flex-direction: column;
    z-index: 50;
}
.head-lang.open .head-lang-drop {
    display: flex;
}
.head-lang-opt {
    padding: 0.65rem;
    text-align: center;
    color: #fff;
    font-weight: 400;
    transition: all 0.2s ease;
}
.head-lang-opt:first-child{
    padding-bottom: 0.3rem;
}
.head-lang-opt:last-child{
    padding-top: 0.3rem;
}
.head-lang-opt:hover {
    font-weight: 600;
}

/* Burger */
.burger {
    display: none;
    justify-content: center;
    align-items: center;
    background: none;
    flex-shrink: 0;
    width: 1.45rem;
    height: 1.45rem;
}
.burger img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Mob menu */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}
.mob-menu.open {
    visibility: visible;
    pointer-events: all;
}
.mob-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mob-menu.open .mob-menu-overlay {
    opacity: 1;
}
.mob-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 15px;
    padding-top: 2rem;
    padding-left: 1.15rem;
    gap: 3rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mob-menu.open .mob-menu-inner {
    transform: translateX(0);
}
.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mob-close {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 1.45rem;
    height: 1.45rem;
}
.mob-close img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.mob-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}
.mob-nav a {
    font-weight: 500;
    font-size: 1.35rem;
}

/* Hero */
.hero-section {
    overflow: hidden;
    margin-bottom: 0;
    padding-top: 3rem;
}
.hero-section .container {
    position: relative;
}
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
    width: 40rem;
    flex-shrink: 0;
}
.hero-desc {
    color: #1e1e1e;
    font-size: 1.25rem;
    font-weight: 500;
}
.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.hero-btns .btn {
    width: 13.75rem;
}
.hero-right {
}
.hero-cat {
    height: 38rem;
    width: auto;
    position: relative;
}
.hero-right-back {
    position: absolute;
    width: 52rem;
    height: 38rem;
    right: -5.5rem;
}
.hero-kaspi {
    position: absolute;
    bottom: 4rem;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.625rem;
    width: 12.5rem;
    height: 11.25rem;
    z-index: 3;
}
.hero-kaspi img {
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}
.hero-kaspi:hover img {
    scale: calc(1.04);
}

/* Why */
.why-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.why-item {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
}
.why-item-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.why-item-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.why-item-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}
.why-item-title {
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    text-transform: uppercase;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-item-num {
    background: linear-gradient(180deg, #e6effe 0%, #bfd7f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.why-item-desc {
    color: rgba(30, 30, 30, 0.8);
    font-size: 0.9rem;
}

/* Promo */
.promo-section {
    position: relative;
}
.promo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 0;
    object-fit: cover;
}
.promo-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        93deg,
        #4baed8 39.52%,
        rgba(191, 215, 246, 0) 57.54%
    );
}
.promo-inner {
    position: relative;
    display: flex;
    align-items: center;
    /* min-height: 17rem; */
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 1.85rem 2.5rem;
}
.promo-content {
    width: 39rem;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.promo-title {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.25rem;
}
.promo-desc span {
    font-weight: 700;
}

/* Services */
.services-section {
    position: relative;
    padding: 2.5rem 0;
    overflow: hidden;
}
.services-inner {
    position: relative;
}
.services-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.services-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(
        0deg,
        rgba(39, 48, 116, 0.7) 0%,
        rgba(39, 48, 116, 0.7) 100%
    );
}
.services-content {
    position: relative;
    z-index: 2;
}
.crumb {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    font-weight: 500;
}
.crumb.black {
    color: #1e1e1e;
}
.crumb-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    flex-shrink: 0;
}
.services-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.services-section .section-title {
    color: #fff;
}
.services-desc {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1.25rem;
}
.service-card {
    display: flex !important;
    align-items: center;
    gap: 1.25rem;
    padding: 1.85rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #e6effe 0%, #bfd7f6 100%);
}
.service-card.rem-pad {
    padding: 0;
    gap: 0;
    overflow: hidden;
}
.service-card-content {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.service-card.rem-pad .service-card-content {
    padding: 1.85rem;
}
.service-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #273074;
    margin-bottom: 1.85rem;
}
.service-card-btns {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
}
.service-card-btns.start{
    justify-content: flex-start;
}
.service-card-btns .btn {
    width: 100%;
}
.service-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}
.service-card.rem-pad .service-card-img img {
    border-radius: 0 1.25rem 1.25rem 0;
}
.services-slider .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.15rem;
    padding: 0;
}
.services-slider .slick-dots li {
    list-style: none;
    width: 0.75rem;
    height: 0.75rem;
}
.services-slider .slick-dots li button {
    width: 0.75rem;
    height: 0.75rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffffffbb;
    font-size: 0;
    cursor: pointer;
}
.services-section.without-back .services-slider .slick-dots li button {
    background: #273074;
}
.services-slider .slick-dots li.slick-active button {
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
}
.services-section.without-back
    .services-slider
    .slick-dots
    li.slick-active
    button {
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
}

/* About */
.about-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.about-media {
    position: relative;
    flex: 0 0 47rem;
    height: 35rem;
}
.about-media-big {
    position: absolute;
    left: 11.75rem;
    top: 0;
    width: 35rem;
    height: 25rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.about-media-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-media-small {
    position: absolute;
    left: 0;
    top: 10rem;
    width: 25.5rem;
    height: 22.5rem;
    background: #f7f7f7;
    border-radius: 1.25rem;
    padding: 0.6rem;
}
.about-media-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
}
.about-badge {
    position: absolute;
    left: 26rem;
    top: 26rem;
    width: 18rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    color: #fff;
}
.about-badge-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 0.625rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-badge-icon img {
    width: 3rem;
    height: 3rem;
}
.about-badge-title {
    font-size: 1.25rem;
    font-weight: 700;
}
.about-badge-desc {
    margin-top: 0.5rem;
    opacity: 0.8;
}
.about-content {
    flex: 1;
}
.about-content .crumb {
    color: #1e1e1e;
}
.about-content .section-title {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
.about-text1 {
    margin-top: 1.25rem;
    color: #1e1e1e;
}
.about-list {
    margin-top: 1.25rem;
    list-style: none;
}
.about-list li {
    position: relative;
    color: #1e1e1e;
    padding-left: 1.35rem;
}
.about-list li:not(:first-child) {
    margin-top: 0.5rem;
}
.about-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
}
.ab-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}
.ab-btn .btn {
    width: 19.5rem;
}

/* Advantages */
.advantages-head .section-title {
    margin-top: 1.25rem;
}
.advantages-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.25rem;
    overflow: hidden;
}

.advantages-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.advantages-col-img {
    width: 100%;
}
.advantages-col-img img {
    width: 100%;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 18.4375rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    backdrop-filter: blur(25px);
}
.advantage-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.advantage-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #273074;
}
.advantage-card-icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}
.advantage-card-icon img {
    width: 1.5rem;
    height: 1.5rem;
}
.advantage-card-desc {
    color: rgba(30, 30, 30, 0.8);
}
.advantages-photo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 81.25rem;
    height: 41.375rem;
    pointer-events: none;
    z-index: -1;
}

/* Steps */
.steps-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: center;
}
.steps-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 1.85rem;
}
.steps-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.steps-content {
    position: relative;
    z-index: 1;
}
.steps-content .section-title {
    margin-top: 1.25rem;
    color: #fff;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
    margin-top: 2rem;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}
.step-title {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.step-desc {
    margin-top: 0.65rem;
    color: #fff;
    opacity: 0.8;
}
.steps-media {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.steps-media-big {
    border-radius: 1.25rem;
    overflow: hidden;
    height: 20rem;
}
.steps-media-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.steps-media-row {
    display: flex;
    gap: 1.25rem;
}
.steps-media-small {
    flex: 1;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 12.5rem;
}
.steps-media-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* News */
.news-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}
.news-head-text .section-title {
    margin-top: 1.25rem;
}
.news-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.news-arrow {
    width: 5.625rem;
    height: 3.125rem;
    border-radius: 6.25rem;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #273074;
}
.news-arrow:hover {
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    color: white;
}
.news-slider-wrap {
    margin-top: 2.25rem;
}
.news-slider .slick-list {
    /* overflow: visible; */
    margin: 0 -0.625rem;
}
.news-slider .slick-slide {
    margin: 0 0.625rem;
}
.news-card {
    position: relative;
    height: 33rem;
    background: #e5eefe;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: background-color 0.4s cubic-bezier(0.95, 1, 0.5, 1);
}
.news-card:hover {
    background: #273074;
}

.news-photo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* top: 17rem; */
    height: 16rem;
    z-index: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    transition:
        top 0.45s cubic-bezier(0.95, 1, 0.5, 1),
        height 0.45s cubic-bezier(0.95, 1, 0.5, 1);
}
.news-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.news-info {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: 1.25rem;
    z-index: 1;
    transition: top 0.45s cubic-bezier(0.95, 1, 0.5, 1);
}

.news-date {
    font-style: italic;
    font-size: 0.9rem;
    color: #273074;
    transition: color 0.3s ease-in;
}
.news-title {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #273074;
    transition: color 0.3s ease-in;
}
.news-desc {
    margin-top: 1rem;
    color: #1e1e1e;
    transition: color 0.3s ease-in;
}


.news-btn {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.25rem;
    border-radius: 10rem;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}
.news-btn-arrow {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-btn-arrow img {
    width: 1.5rem;
    height: 1.5rem;
}

/* .news-card.promotion {
    background: #273074;
}
.news-card.promotion .news-photo {
    top: 0;
    height: 11.75rem;
}
.news-card.promotion .news-info {
    top: 13rem;
}
.news-card.promotion .news-date,
.news-card.promotion .news-title,
.news-card.promotion .news-desc {
    color: #fff;
} */

/* Contact */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.contact-lead {
    color: #273074;
    font-size: 1.25rem;
    font-weight: 500;
}
.contact-form {
    margin-top: 1.75rem;
}
.contact-input {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 6.25rem;
    background: rgba(230, 239, 254, 0.5);
    color: rgba(30, 30, 30, 0.8);
    font-weight: 600;
}
.contact-input::placeholder {
    color: rgba(30, 30, 30, 0.5);
}
.contact-input + .contact-input {
    margin-top: 1.25rem;
}
.contact-textarea {
    padding: 1rem 1.25rem;
    resize: none;
    font-weight: 600;
    font-size: 1rem;
    height: 3.25rem;
}
.contact-form .result p, .result2 p {
    margin: 1rem 0 0;
    padding: 0.9rem 1.15rem;
    border: 1px solid rgba(39, 48, 116, 0.12);
    border-left: 0.25rem solid #273074;
    border-radius: 0.75rem;
    background: rgba(230, 239, 254, 0.55);
    color: #273074;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    box-shadow: 0 0.75rem 1.5rem rgba(39, 48, 116, 0.08);
    text-align: center;
}
.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 1.85rem;
}
.contact-consent{
    font-size: 0.875rem;
}
.contact-consent a {
    text-decoration: underline;
}
.contact-consent a:hover {
    text-decoration: none;
}
.contact-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}
.contact-social-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-social-icon {
    flex-shrink: 0;
    width: 5.625rem;
    height: 3.25rem;
    border-radius: 6.25rem;
    background: #273074;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.65rem;
}
a.contact-social-icon:hover {
    color: #FFFFFF;
    background: #ed1a2b;
}
.contact-social .btn {
    width: 21.15rem;
}

.contact-media-col {
    position: relative;
}
.contact-swoosh {
    position: absolute;
    right: -1rem;
    top: -3rem;
    width: 26.24131rem;
    height: 10.226rem;
    /* pointer-events: none; */
}
.contact-media-col .section-title {
    margin-top: 1.25rem;
}
.contact-photo {
    margin-top: 2rem;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 22rem;
}
.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews */
.reviews-section .container {
    position: relative;
}
.reviews-section .container:after {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 50%;
    content: "";
    background: #f7f7f7;
}

.reviews-inner {
    position: relative;
    min-height: 25rem;
}
.reviews-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 36rem;
    z-index: 2;
    /* padding-right: 3rem; */
    background: linear-gradient(
        90deg,
        #f7f7f7 78.95%,
        rgba(255, 255, 255, 0) 95.98%
    );
    pointer-events: none;
}

.reviews-sidebar .section-title {
    margin-top: 1.25rem;
}
.reviews-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 4.5rem;
    pointer-events: auto;
}
.reviews-arrow {
    width: 5.625rem;
    height: 3.125rem;
    border-radius: 6.25rem;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #273074;
}
.reviews-arrow:hover {
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    color: white;
}

.reviews-slider .slick-list {
    overflow: visible;
    margin: 0 -0.625rem;
}
.reviews-slider .slick-slide {
    margin: 0 0.625rem;
}
.review-card {
    min-height: 18rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem;
}
.review-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.review-stars img {
    width: 1.5rem;
    height: 1.5rem;
}
.review-name {
    margin-top: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #273074;
}
.review-text {
    margin-top: 0.65rem;
}

/* Contacts page hero */
.contacts-hero .section-title {
    margin-top: 0.75rem;
}
.contacts-map {
    margin-top: 2rem;
    height: 25rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.contacts-map iframe {
    width: 100%!important;
    height: 100%!important;
    border: none!important;
}
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.85rem;
    margin-top: 2rem;
}
.contacts-block + .contacts-block {
    margin-top: 1.85rem;
}
.contacts-block {
    display: flex;
    flex-direction: column;
}
.contacts-label {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #273074;
}
.contacts-text {
    margin-top: 0.65rem;
}
.contacts-text:hover {
    text-decoration: underline;
}
.contacts-text.js-txt:hover {
    text-decoration: none;
}
.contacts-block .contact-social {
    margin-top: 1.25rem;
}

/* FAQ */
.faq-section .section-title {
    margin-top: 1.25rem;
}
.faq-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #fff;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.25s;
    color: #273074;
}
.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.faq-item.open::before {
    opacity: 1;
}
.faq-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.faq-question {
    font-size: 1.25rem;
    font-weight: 700;

    /*transition: all 0.3s ease-in;*/
}
.faq-item.open {
    color: #fff;
}
.faq-toggle {
    position: relative;
    flex-shrink: 0;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #e6effe 0%, #bfd7f6 100%);
    transition: all 0.3s ease-in;
}
.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #273074;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in;
    border-radius: 0.2rem;
}
.faq-toggle::before {
    width: 1.2rem;
    height: 0.15rem;
}
.faq-toggle::after {
    width: 0.15rem;
    height: 1.2rem;
    transition:
        transform 0.35s ease-in,
        opacity 0.35s ease-in;
}
.faq-item.open .faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-body {
    position: relative;
    z-index: 1;
    display: none;
}
.faq-answer {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 58rem;
}

/* Footer */
.footer {
    padding-bottom: 2.5rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1.7fr;
    gap: 2rem;
}
.footer-logo{
    display: block;
}
.footer-logo img {
    height: 9.0625rem;
}
.footer-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #273074;
    margin-bottom: 1.25rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer-links a {
    transition: color 0.2s ease-in;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.footer-contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    margin-top: 3.5rem;
}
.footer_contacts_row{
    margin-top: 3.5rem;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
a.footer-contact-item:hover .footer-contact-right {
    text-decoration: underline;
}
.footer-contact-right a:hover{
    text-decoration: underline;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
}
.footer-btm-link {
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.page-main-link {
    padding-top: 8.5rem;
    margin-bottom: 1rem;
}
.page-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.page-link a,
.page-link span {
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.page-link p {
    font-weight: 500;
}

.about-text {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.25rem;
    align-items: center;
}
.about-right-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-weight: 500;
}

/* Gallery */
.gallery-photo-top {
    height: 23rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.gallery-photo-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-marquee {
    margin: 0.5rem 0;
    white-space: nowrap;
}
.gallery-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: gallery-marquee-scroll 27s linear infinite;
}
.gallery-marquee-item {
    font-size: 2.25rem;
    font-family: Unbounded;
    font-weight: 500;
    color: #079bd2;
    white-space: nowrap;
}
.gallery-marquee-star {
    width: 3.125rem;
    height: 3.7rem;
    flex-shrink: 0;
}
@keyframes gallery-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.gallery-photos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-photo {
    height: 16rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-section {
    position: relative;
    overflow: visible;
}
.gallery-quote {
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.gallery-quote-swoosh {
    position: absolute;
    inset: 0;
    width: 59rem;
    height: 63rem;
    z-index: 0;
    transform: rotate(316deg);
    top: -20rem;
    left: 18rem;
}
.gallery-quote-text {
    z-index: 1;
    align-self: center;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 500;
    color: #273074;
    font-family: Unbounded;
}
.quote-box {
    position: relative;
    width: 53rem;
    height: 18.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.sc-top {
    position: absolute;
    width: 3.00913rem;
    height: 2.53525rem;
    top: 0;
    right: 0;
}
.sc-bot {
    position: absolute;
    width: 3rem;
    height: 2.53525rem;
    left: 0;
    bottom: 0;
}

/* Stats */
.stats-section {
    position: relative;
    height: 18rem;
    display: flex;
    align-items: center;
}
.stats-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 1.25rem;
}
.stats-overlay {
    background: linear-gradient(
        0deg,
        rgba(39, 48, 116, 0.7) 0%,
        rgba(39, 48, 116, 0.7) 100%
    );
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 1.25rem;
}
.stats-inner {
    position: relative;
}
.stats-leaves {
    position: absolute;
    z-index: 2;
}
.stats-leaves-left {
    width: 25.10544rem;
    height: 16.73275rem;
    left: -2.65rem;
    top: -6.65rem;
}
.stats-leaves-right {
    width: 30.05744rem;
    height: 20.03325rem;
    right: -15rem;
    bottom: -7.5rem;
}
.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    align-items: center;
}
.stat-number {
    font-family: Unbounded;
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
}
.stat-label {
    margin-top: 0.65rem;
    color: #fff;
}

/* Services hero */
.services-hero-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.services-hero-content {
    width: 40rem;
}
.services-hero-desc {
    margin-top: 2rem;
}
.services-hero-media {
    position: relative;
    flex: 1;
    height: 24rem;
}
.services-hero-media-big {
    position: absolute;
    left: 0;
    top: 0;
    width: 26.25rem;
    height: 18.625rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.services-hero-media-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-hero-media-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 19.5rem;
    height: 15rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 0.5rem;
}
.services-hero-media-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.1rem;
}

.services-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pagination_bot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.85rem;
}
.pagination-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in;
}
.pagination-btn.active {
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    color: #fff;
}
.pagination-btn:hover:not(.active) {
    background: #fff;
}

/* What's included */
.whatsin-section .section-title {
    margin-top: 1.25rem;
}
.whatsin-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.whatsin-card {
    position: relative;
    height: 19.375rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.whatsin-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(39, 48, 116, 0.3) 0%,
        rgba(39, 48, 116, 0.3) 100%
    );
    z-index: 1;
}
.whatsin-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.whatsin-card-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 1.85rem;
    z-index: 2;
    padding: 0 1.25rem;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Prices */
.prices-section {
    background: #273074;
    padding: 2.5rem 0;
}
.prices-section .section-title {
    margin-top: 1.25rem;
    color: #fff;
}
.prices-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}
.prices-all-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8125rem 1rem;
    border-bottom: 3px solid #0e8ad1;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.prices-all-link:hover {
    border-color: transparent;
}
.prices-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prices-download-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.prices-download-wrap .btn {
    width: 19.375rem;
    font-weight: 600;
}
.prices-download-wrap .btn:hover {
    background: #4d5a9b;
}

/* Important info */
.important-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.important-photo {
    position: relative;
    /* height: 33.25rem; */
    border-radius: 1.25rem;
    overflow: hidden;
}
.important-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.important-photo-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.85rem;
}
.important-photo-overlay .section-title {
    margin-top: 1rem;
    color: #fff;
}
.important-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: space-between;
}
.important-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #273074;
}
.important-item-desc {
    margin-top: 0.65rem;
    opacity: 0.8;
}
.important-note {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
    color: #fff;
}

.service-card-content.with-img {
    position: relative;
}
.service-content-img {
    z-index: 2;
}
.with-back-image {
    position: absolute;
    z-index: 0;
    width: 58.44763rem;
    height: 20.96475rem;
    left: -19rem;
    bottom: -4rem;
}

.oso-img {
    /*height: 26.125rem;*/
    width: 100%;
    border-radius: 1.25rem;
}
.oso-grid {
    gap: 1.9rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}
.oso-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-section.without-back {
    padding: 0;
    color: #1e1e1e;
}
.services-section.without-back .section-title {
    color: #273074;
}

.oso-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-end;
}
.oso-right .btn {
    width: 26.25rem;
}

/* Filters */
.filters-tabs {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.65rem;
    row-gap: 1.25rem;
}
.filters-tab {
    color: rgba(39, 48, 116, 0.7);
    font-weight: 600;
    /* white-space: nowrap; */
    transition: color 0.2s ease-in;
    height: 3.125rem;
    padding: 0.8125rem 1.875rem;
    border-radius: 10.25rem;
}
.filters-tab:hover {
    color: #273074;
}
.filters-tab.active {
    display: inline-flex;
    align-items: center;
    background: #273074;
    color: #fff;
}
.filters-tab.active:hover {
    color: #fff;
}

.service-card.second {
    padding: 0;
    gap: 0;
    justify-content: space-between;
}
.second-content {
    padding: 1.85rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1.5rem;
}
.italic-txt {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
}
.second-content .btn.btn-icon1 {
    justify-content: center;
    width: 17.5rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Single news post */
.post-inner {
    width: 67rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.post-photo {
    height: 32rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.post-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-date {
    font-size: 1.25rem;
    font-style: italic;
    color: #273074;
}
.post-note {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(
        90deg,
        #0e8ad1 -77.5%,
        #079bd2 10.4%,
        #2c6bba 100%
    );
}
.post-note p {
    color: #fff;
}
.post-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.content h1{
    font-size: 1.8rem;
    font-weight: 500;
    color: #273074;
    font-family: "Unbounded", sans-serif;
    margin-bottom: 1rem;
}
.content h2{
    font-size: 1.7rem;
    font-weight: 500;
    color: #273074;
    font-family: "Unbounded", sans-serif;
    margin-bottom: 1rem;
}
.content h3{
    font-size: 1.5rem;
    font-weight: 500;
    color: #273074;
    font-family: "Unbounded", sans-serif;
    margin-bottom: 1rem;
}
.content h4{
    font-size: 1.25rem;
    font-weight: 500;
    color: #273074;
    font-family: "Unbounded", sans-serif;
    margin-bottom: 1rem;
}
.content h5{
    font-size: 1.1rem;
    font-weight: 500;
    color: #273074;
    font-family: "Unbounded", sans-serif;
    margin-bottom: 1rem;
}
.content h6{
    font-size: 1.1rem;
    font-weight: 500;
    color: #273074;
    font-family: "Unbounded", sans-serif;
    margin-bottom: 1rem;
}
.page .section-title{
    margin-bottom: 1rem;
}
.page{
    padding-bottom: 4rem;
}

.services-slider .slick-track{
    display: flex;
}
.services-slider .slick-list{
    display: flex;
    margin: 0 -10px;
}
.services-slider .slick-slide > div{
    height: 100%;
    padding: 0 10px;
}
.services-slider .service-card{
    height: 100%;
}
.ff_item{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact-right{
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
