body {
    line-height: 1.3;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background: #e9e9e9;
}
.wow{
    visibility: hidden;
}
button,
input,
select,
textarea {
    font-family: "Montserrat", sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
}
.container {
    width: 80rem;
    margin: 0 auto;
}
section {
    margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    height: 3.125rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.25s ease-in;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 13.5rem;
    gap: 0.75rem;
}
.btn.blue {
    background: #03236b;
    color: #fff;
}
.btn.blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #e53c1c -52.94%, #ef963a 102.95%);
    opacity: 0;
    transition: all 0.25s ease-in;
    z-index: -1;
}
.btn.blue:hover::before {
    opacity: 1;
}

.btn.blue2 {
    background: #03236b;
    color: #fff;
    border: 1px solid white;
}
.btn.blue2:hover {
    background: white;
    border-color: #03236b;
    color: #03236b;
}

.btn.orange {
    background: linear-gradient(180deg, #e53c1c -52.94%, #ef963a 102.95%);
    color: #fff;
    border: 1px solid white;
}
.btn.orange::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    transition: all 0.25s ease-in;
    z-index: -1;
}
.btn.orange:hover::before {
    opacity: 1;
}
.btn.orange:hover {
    color: #03236b;
}
.btn.mid-width {
    width: 19rem;
}

.btn.orange2 {
    background: linear-gradient(180deg, #e53c1c -52.94%, #ef963a 102.95%);
    color: #fff;
    border: 1px solid white;
}
.btn.orange2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #03236b;
    opacity: 0;
    transition: all 0.25s ease-in;
    z-index: -1;
}
.btn.orange2:hover::before {
    opacity: 1;
}
.btn.orange2:hover {
    color: #ffffff;
}

/* Section title */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
}

/* Header */
.site-header {
    top: 1.5rem;
    z-index: 20;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border-radius: 0.5rem;
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6.650000095367432px);
    padding: 0.45rem;
    padding-left: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: auto;
}
.logo img {
    height: 100%;
    display: block;
    width: auto;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    color: rgba(255, 255, 255);
}
.head-nav-link {
    font-size: 0.9rem;
    position: relative;
    padding: 0.2rem 0;
}
.head-nav-link:after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    background: white;
    width: 0;
    transition: all 0.35s;
}
.head-nav-link:hover:after,
.head-nav-link.active:after {
    width: 100%;
}
.head-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.head-lang {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    color: white;
}
.head-lang-btn {
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    color: white;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 0.45rem;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.burger span {
    display: block;
    width: 1.45rem;
    height: 2px;
    background: #fff;
    transition: all 0.25s ease;
}

/* 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: #e9e9e9;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.65rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: all 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;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 0.8;
    font-size: 3rem;
}
.mob-menu-inner .logo img {
    filter: none;
}
.mob-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.mob-nav a {
    padding: 1rem 0;
    font-weight: 500;
    color: #000000;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-bottom: 4.5rem;
    display: flex;
    align-items: flex-end;
    color: rgba(255, 255, 255);
}
.hero-section .container {
    position: relative;
    z-index: 1;
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slider,
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slide {
    height: 100vh;
}
.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 1.67%,
        rgba(0, 0, 0, 0.6) 100%
    );
}
.hero-slider .slick-dots {
    position: absolute;
    bottom: 2.25rem;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    list-style: none;
}

.hero-right-img {
    position: absolute;
    height: 5.4375rem;
    right: -10rem;
    top: 6rem;
    bottom: 1rem;
}

.hero-slider .slick-dots li button {
    font-size: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease-in;
}
.hero-slider .slick-dots li.slick-active button {
    background: #fff;
}

.hero-text-block {
    max-width: 53rem;
}
.hero-text {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-side {
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.hero-stat {
    border-radius: 1rem;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6.800000190734863px);
    padding: 1rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-stat.blue {
    background: #03236b;
    border: none;
}
.hero-stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.hero-stat.blue .hero-stat-title {
    margin-bottom: 0;
}
.hero-stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 8rem;
}
.hero-logo {
    height: 8.25rem;
}

/* About */
.about-section {
    position: relative;
    /* overflow-y: hidden; */
}
.back-logo {
    position: absolute;
    width: 42.48775rem;
    height: 40.18725rem;
    left: -5rem;
    top: -13rem;
    z-index: -1;
}
.about-section .container {
    position: relative;
    z-index: 1;
}
.kicker {
    font-size: 0.9rem;
    opacity: 0.6;
    flex-shrink: 0;
}
.about-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4.5rem;
}
.about-media {
    width: 28.1rem;
    /*height: 17rem;*/
    flex-shrink: 0;
}
.about-media img {
    width: 100%;
    /*height: 100%;*/
    /*object-fit: cover;*/
    display: block;
}
.about-content {
    width: 35rem;
}
.about-content .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.about-content .section-title .accent {
    color: #03236b;
}
.about-text p {
    opacity: 0.8;
    font-size: 0.9rem;
}
.big-img-section1 {
    height: 30.25rem;
    width: 100%;
}
.big-img-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services */
.services-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
}
.services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}
.services-heading .section-title {
    color: #03236b;
    margin-top: 1rem;
}
.services-head-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}
.services-dots {
    display: flex;
    align-items: center;
    gap: 0;
    width: 22rem;
    list-style: none;
}
.services-dots li {
    flex: 1;
}
.services-dots li button {
    display: block;
    width: 100%;
    height: 0.2rem;
    border-radius: 0.2rem;
    border: none;
    padding: 0;
    background: #d2d5dc;
    font-size: 0;
    cursor: pointer;
    transition: background 0.25s ease-in;
}
.services-dots li.slick-active button {
    background: #03236b;
}
.services-mark {
    width: 3.15rem;
    height: auto;
}

.services-slider-wrap {
    position: relative;
}
.services-arrow {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    padding-left: 0.1rem;
    width: 2.6875rem;
    height: 2.6875rem;
    border-radius: 50%;
    background: #03236b;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease-in;
}
.services-arrow img {
    width: 0.5rem;
}
.services-arrow:hover {
    opacity: unset;
    background: #061640;
}

.services-slide {
    display: flex !important;
    align-items: stretch;
    gap: 1.25rem;
    background: #d2d5dc;
    border-radius: 1.25rem;
    padding: 1.25rem;

}
.services-media {
    width: 24rem;
    flex-shrink: 0;
    /* border-radius: 1rem; */
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}
.ser_after{
    position: absolute;
    left: 0;
    top: 0;
    width: 3.8rem;
}
.services-photo {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    display: block;
}
.services-text {
    width: 25rem;
}
.services-text p {
    color: #2c2c2c;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.services-list {
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.services-list li {
    position: relative;
    padding-left: 1.25rem;
    color: #2c2c2c;
    font-size: 0.9rem;
}
.services-list li::marker {
    display: none;
}
.services-list li::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: #000000;
}

.services-side {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.services-side .section-title {
    color: #03236b;
    font-size: 1.5rem;
}
.services-side .btn {
    width: 100%;
}

.products-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    color: white;
}
.products-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        #03236b 21.81%,
        rgba(3, 35, 107, 0) 60.8%
    );
}
.products-section .container {
    position: relative;
    z-index: 2;
}
.products-inner {
    max-width: 34rem;
}
.products-kicker {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}
.products-text {
    color: rgba(255, 255, 255);
    font-size: 0.9rem;
    margin: 2rem 0;
}

/* Why */
.why-inner {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
}
.why-media {
    width: 32rem;
    flex-shrink: 0;
    border-radius: 1.25rem;
    overflow: hidden;
}
.why-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.why-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.why-content .kicker {
    margin-bottom: 0.75rem;
}
.why-content > .section-title {
    color: #03236b;
    margin-bottom: 1.5rem;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}
.why-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 11rem;
    gap: 2rem;
}
.why-card .section-title {
    color: #03236b;
    font-size: 1.5rem;
}
.why-card p {
    color: #6b6b6b;
    font-size: 0.9rem;
}

/* Partners */
.partners-slider .slick-track {
    display: flex !important;
    gap: 1rem;
    align-items: center;
}
.partners-slider .slick-list{
    overflow: unset;
}
.partners-slide {
    background: #fff;
    border-radius: 1rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1.25rem;
}
.partners-slide img {
    width: 100%;
    height: 100%;
}

/* Contact */
.contact-section {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0;
    margin-bottom: 0;
}
.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-section .container {
    position: relative;
    z-index: 1;
}
.contact-card {
    width: 39rem;
    max-width: 100%;
    border-radius: 1.25rem;
    border: 1px solid #ffffff50;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(22.75px);
    padding: 2.25rem;
    color: #fff;
}
.contact-card .section-title {
    text-align: center;
    margin-bottom: 1.25rem;
}
.contact-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.form-field {
    margin-bottom: 1.5rem;
}
.form-field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0 0 0.6rem 0;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}
.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.contact-agree {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}
.contact-agree input {
    margin-top: 0.3rem;
}
.contact-agree span {
    color: rgba(255, 255, 255);
    font-size: 0.9rem;
}
.contact-agree a {
    color: #fff;
    text-decoration: underline;
}
.contact-agree a:hover {
    text-decoration: none;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(92deg, #03236b -18.87%, #0f70f9 137.05%);
    padding: 2.5rem 0;
    color: #fff;
    margin-bottom: 0;
}
.footer-img {
    position: absolute;
    z-index: 0;
    width: 29.95344rem;
    height: 30.32819rem;
    transform: rotate(-21.109deg);
    opacity: 0.1;
    right: -4rem;
    top: -5rem;
}
.site-footer .container {
    position: relative;
    z-index: 1;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.footer-logo img {
    height: 4.5rem;
    width: auto;
    margin-bottom: 1.5rem;
}
.footer-label {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.625rem;
}
.footer-label.menu {
    font-size: 1.25rem;
    font-weight: 600;
}
.footer-label-mail {
    margin-top: 1.5rem;
}
.footer-block {
    margin-bottom: 1.85rem;
}
.footer-block:last-child {
    margin-bottom: 0;
}
.footer-block p {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}
.footer-menu {
    padding-top: 0.25rem;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
    margin-top: 1.25rem;
}
.footer-nav a {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}
.footer-contacts {
    padding-top: 0.25rem;
}
.footer-phone,
.footer-mail {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 2.25rem;
}
.footer-privacy {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1.75rem;
}
.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: 1.5rem;
    align-self: flex-end;
}

.top-section {
    position: relative;
    height: 12rem;
    display: flex;
    align-items: end;
}
.top-img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    z-index: 0;
    object-fit: cover;
}
.top-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        270deg,
        rgba(0, 0, 0, 0) 1.67%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}
.top-inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: white;
    padding-bottom: 1.85rem;
}
.top-inner a {
    font-size: 0.9rem;
    z-index: 2;
    font-weight: 700;
}
.top-inner p {
    z-index: 2;
    font-size: 0.9rem;
}

/* Page head */
.page-head {
    position: relative;
}
.page-head-photo {
    position: absolute;
    z-index: -1;
    width: 42.48775rem;
    height: 42.88681rem;
    top: -7rem;
    left: -6rem;
    opacity: 0.7;
}
.page-head-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.page-head-left {
    width: 26rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-head-left .kicker,
.page-head-left .section-title {
    position: relative;
    z-index: 1;
}
.page-head-left .kicker {
    margin-bottom: 1rem;
}
.page-head-left .section-title {
    color: #03236b;
}

.page-head-text {
    flex: 1;
}
.page-head-text p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.page-head-text .services-list {
    margin-bottom: 1rem;
}
.page-head-text .services-list:last-child {
    margin-bottom: 0;
}
.page-head-text .services-list li {
    font-size: 0.9rem;
}

.ab-img-section {
    height: 39.8125rem;
    width: 100%;
    margin-bottom: 2rem;
}
.ab-img-section img {
    height: 100%;
    width: 100%;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.stats-item .section-title {
    color: #03236b;
    margin-bottom: 1rem;
}
.stats-item p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Quote */
.quote-inner {
    display: flex;
    align-items: stretch;
    gap: 8rem;
}
.quote-text-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}
.quote-script {
    width: 3.43063rem;
    height: 3.4375rem;
}
.quote-box {
    display: flex;
    justify-content: flex-end;
}
.quote-text {
    font-style: italic;
    font-size: 1.25rem;
}
.quote-media {
    width: 32.625rem;
    flex-shrink: 0;
    border-radius: 1.25rem;
    overflow: hidden;
}
.quote-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Why */
.why-section2 {
    position: relative;
}
.why-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    padding: 2.5rem;
    /*height: 41.4375rem;*/
    display: flex;
}
.why-panel-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-overlay {
    position: absolute;
    opacity: 0.7;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(92deg, #03236b -18.87%, #0f70f9 137.05%);
}
.why-panel-head {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    color: #fff;
}
.why-panel-head .kicker {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}
.why-section2 .why-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: flex-end;
}
.why-section2 .why-card {
    min-height: 12.625rem;
}
.why-in {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.why-fire {
    position: absolute;
    width: 24.5rem;
    height: 47.875rem;
    left: 50%;
    transform: translateX(-50%);
}

/* Certs */
.certs-slider-wrap {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}
.certs-slider {
    flex: 1;
    overflow: hidden;
}
.certs-slide {
    padding: 0 0.5rem;
    height: 17rem;
    border-radius: 1rem;
    overflow: hidden;
}
.certs-slide img {
    border-radius: 1rem;
    height: 100%;
    width: 100%;
    display: block;
}
.certs-arrow {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: white !important;
    background-color: unset;
    color: black;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in;
}
.certs-arrow svg {
    width: 0.6rem;
    height: auto;
}
.certs-arrow:hover {
    background: #03236b !important;
    color: white;
    opacity: unset;
}

/* Audience */
.audience-section .section-title {
    color: #03236b;
    margin-bottom: 2rem;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.audience-card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
}
.audience-photo {
    width: 100%;
    height: 14rem;
    border-radius: 1.25rem;
    object-fit: cover;
    display: block;
}
.audience-label {
    padding: 0.85rem;
    color: #000;
    font-weight: 600;
    font-size: 1.25rem;
}

/* Partnership */
.partnership-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.partnership-media {
    flex-shrink: 0;
    border-radius: 1.25rem;
    overflow: hidden;
}
.partnership-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.partnership-card {
    flex: 1;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.85rem 1.25rem;
}
.partnership-card .kicker {
    margin-bottom: 0.75rem;
}
.partnership-card .section-title {
    color: #03236b;
    margin-bottom: 1.85rem;
}
.partnership-card p {
    font-size: 0.9rem;
    margin-bottom: 1.15rem;
}
.partnership-card p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-section .kicker {
    margin-bottom: 0.5rem;
}
.faq-section .section-title {
    color: #03236b;
    font-size: 2rem;
    margin-bottom: 1.75rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border-radius: 1.25rem;
    background:
        linear-gradient(
            292deg,
            rgba(255, 255, 255, 0.4) -0.58%,
            rgba(255, 255, 255, 0) 53.76%
        ),
        linear-gradient(
            118deg,
            rgba(255, 255, 255, 0.4) 0.3%,
            rgba(255, 255, 255, 0) 79.41%
        );
    padding: 1.5rem 1.875rem;
}
.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    cursor: pointer;
}
.faq-question {
    font-weight: 700;
    font-size: 1.5rem;
}
.faq-toggle {
    position: relative;
    flex-shrink: 0;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease-in;
}
.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    background: #03236b;
    transition: all 0.3s ease-in;
}
.faq-toggle::before {
    transform: translate(-50%, -50%) rotate(0deg);
}
.faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-toggle {
    background: #03236b;
}
.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after {
    background: #fff;
}
.faq-item.open .faq-toggle::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.faq-item.open .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.faq-body {
    display: none;
}
.faq-body p {
    opacity: 0.7;
    padding-top: 0.75rem;
}

/* Products head */
.products-head .section-title {
    color: #03236b;
    margin-bottom: 1.5rem;
}
.products-head-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 60rem;
}
.products-head-text p {
    font-size: 0.9rem;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1.25rem;
    height: 25.5rem;
}
.category-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s ease-in;
}
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        0deg,
        #03236b -28.82%,
        rgba(3, 35, 107, 0) 64.5%
    );
}
.category-card:hover .category-photo {
    transform: scale(1.03);
}
.category-label {
    position: absolute;
    left: 1.75rem;
    bottom: 1.75rem;
    z-index: 2;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
}
.category-arrow {
    position: absolute;
    right: 1.75rem;
    bottom: 1.75rem;
    z-index: 2;
    width: 5.5rem;
    height: 3.125rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-arrow img {
    width: 1.3rem;
    height: auto;
    transition: transform 0.3s ease-in;
    transform: rotate(-45deg);
}
.category-card:hover .category-arrow img {
    transform: rotate(0deg);
}

/* Category head */
.category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7rem;
    position: relative;
    height: 22rem;
}
.category-head-text {
    width: 38rem;
    flex-shrink: 0;
}
.category-head-text .section-title {
    color: #03236b;
    margin-bottom: 1.5rem;
}
.content{
    margin-bottom: -1rem;
}
.category-head-text p {
    font-size: 0.9rem;
}
.category-head-media {
    position: absolute;
    right: 0;
    width: 37.5625rem;
    overflow: hidden;
    height: 100%;
}
.category-head-photo {
    border-radius: 1.25rem 0 0 1.25rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Solutions */
.solutions-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    padding: 1.85rem;
    display: flex;
    justify-content: end;
}
.solutions-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.solutions-logo-decor {
    position: absolute;
    z-index: 1;
    width: 186.84263rem;
    height: 149.3255rem;
    pointer-events: none;
    right: -28rem;
    top: -70%;
    transform: rotate(-25.245deg);
}
.solutions-right {
    width: 60%;
}

.solutions-head {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}
.solutions-head .kicker {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}
.solutions-head .section-title {
    color: #fff;
}
.solutions-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.solutions-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mob_full .solutions-card{
    height: 100%;
}
.solutions-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.solutions-number {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 1px solid #03236b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03236b;
    font-size: 1.5rem;
    font-weight: 600;
}
.solutions-thumb {
    width: 5.6875rem;
    height: 3.125rem;
    border-radius: 0.5rem;
    object-fit: cover;
}
.solutions-card .section-title {
    color: #03236b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.solutions-card p {
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-bottom: 1.85rem;
}
.solutions-card .btn {
    width: 100%;
}

.blue-section {
    position: relative;
    padding: 1.85rem 0;
    padding-bottom: 0.35rem;
    color: white;
    overflow: hidden;
}
.blue-back {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    z-index: 0;
}
.blue-section .container {
    z-index: 2;
}

.blue-big-logo {
    width: 186.84263rem;
    height: 149.3255rem;
    transform: rotate(-25.245deg);
    position: absolute;
    bottom: -70%;
    left: -17%;
    opacity: 0.6;
}

/* Purpose */
.purpose-section .kicker {
    margin-bottom: 0.5rem;
}
.purpose-section .section-title {
    color: #03236b;
    margin-bottom: 2rem;
}
.purpose-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.purpose-media {
    width: 100%;
    flex-shrink: 0;
    /*position: sticky !important;*/
    /*top: 7rem;*/
}
.purpose-photo {
    width: 100%;
    height: auto;
    display: block;
}
.purpose-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.purpose-item {
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 1.875rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 9.5rem;
    align-items: center;
}
.purpose-item p {
    font-weight: 600;
    font-size: 1.5rem;
}
.purpose-item img {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
}

/* Shelf life */
.shelf-life-media {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    min-height: 38rem;
    display: flex;
    align-items: flex-end;
}
.shelf-life-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shelf-life-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.65rem;
    width: 32rem;
}
.shelf-life-card .section-title {
    color: #03236b;
    margin-bottom: 1rem;
}
.shelf-life-intro {
    margin-bottom: 1rem;
}
.shelf-life-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Attested */
.attested-section .kicker {
    margin-bottom: 0.5rem;
}
.attested-section > .container > .section-title {
    color: #03236b;
    margin-bottom: 2rem;
}
.attested-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.attested-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
}
.attested-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
}
.attested-card .section-title {
    color: #03236b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.attested-card p {
    opacity: 0.7;
    font-size: 0.9rem;
}
.attested-media {
    border-radius: 1rem;
    overflow: hidden;
}
.attested-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Request form */
.request-section .kicker {
    margin-bottom: 0.5rem;
}
.request-section .form-field input {
    padding: 0.75rem 0;
}
.request-section > .container > .section-title {
    color: #03236b;
    margin-bottom: 2rem;
}
.request-form {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.request-col-left {
    flex: 1;
}
.request-col-right {
    flex: 1;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.request-block {
    background: #03236b;
    border-radius: 1.25rem;
    padding: 1.85rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.request-block2{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.request-block:last-child {
    margin-bottom: 0;
}
.request-block .section-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    /* margin-bottom: 1.5rem; */
}
.request-radio-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.request-radio-label {
    color: #fff;
    font-weight: 600;
    font-style: italic;
    font-size: 0.9rem;
}
.request-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
}
.request-section .form-field {
    margin-bottom: 0;
}
.request-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.85rem;
}
.request-card .section-title {
    color: #03236b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.request-card .form-field.dark {
    margin-bottom: 1.25rem;
}
.form-field.dark input {
    border-bottom-color: rgba(0, 0, 0, 0.25);
    color: #1a1a1a;
}
.form-field.dark input::placeholder {
    color: #8a8a8a;
}
.request-hint {
    font-size: 0.9rem;
    color: white;
    margin-top: 0.5rem;
}
.request-media {
    margin-top: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}
.request-media img {
    width: 100%;
    height: auto;
    display: block;
}
.request-card .request-hint {
    color: black;
    margin-bottom: 1.25rem;
}
.request-btn {
    display: flex;
    justify-content: end;
}

/* Product detail */
.product-detail-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.product-detail-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.product-detail-title {
    color: #03236b;
    margin-bottom: 1rem;
}
.product-detail-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.gap-00{
    gap: 0;
}
.product-detail-text .content {
    font-size: 0.9rem;
}
.product-detail-media {
    width: 32.625rem;
    height: 26.5625rem;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
}
.product-detail-photo {
    width: 100%;
    height: 100%;
    display: block;
}

/* Tabs */
.tabs-panel {
    position: relative;
}
.tabs-decor {
    position: absolute;
    top: -15rem;
    right: -10rem;
    z-index: -1;
    width: 47.0625rem;
    height: 51.87031rem;
    pointer-events: none;
}
.tabs-nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.tabs-btn {
    background: transparent;
    border: 1px solid #03236b;
    color: #000000;
    border-radius: 0.5rem;
    height: 3.125rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease-in;
}
.tabs-btn.active {
    background: #03236b;
    color: #fff;
}
.tabs-content {
    position: relative;
    z-index: 1;
}
.tabs-pane {
    display: none;
}
.tabs-pane.active {
    display: block;
}
.tabs-pane .section-title {
    color: #03236b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.tabs-subtitle {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.tabs-pane .services-list {
    margin-bottom: 0;
}
.tabs-line {
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* PGS */
.pgs-section {
    position: relative;
}

.pgs-section .kicker {
    margin-bottom: 0.5rem;
}
.pgs-section .section-title {
    color: #03236b;
    margin-bottom: 2rem;
}
.pgs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.pgs_hover{
    position: relative;
    z-index: 2;
}
.pgs-card {
    border-radius: 1.25rem;
    padding: 1.25rem;
}
.pgs-card.hidden{
    position: relative;
    left: -50%;
    top: 0;
    transition: all 0.5s;
    pointer-events: none;
    opacity: 0;
}
.pgs-card.hidden.active{
    left: 0;
    opacity: 1;
}
.pgs-card.navy {
    background: #03236b;
}
.pgs-card.white {
    background: #fff;
}
.pgs-card.orange {
    background: linear-gradient(180deg, #e53c1c -52.94%, #ef963a 102.95%);
}
.pgs-title-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pgs-number {
    margin-bottom: 1.15rem;
}
.pgs-card.navy .pgs-number {
    color: #fff;
}
.pgs-card.white .pgs-number {
    color: #03236b;
}
.pgs-title-card .section-title {
    font-size: 1.5rem;
}
.pgs-card.navy .section-title,
.pgs-card.orange .section-title {
    color: #fff;
}
.pgs-card.white .section-title {
    color: #03236b;
}
.pgs-download {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: #fff;
    margin-top: auto;
}
.pgs-card.white .pgs-download {
    color: #000000;
}
.pgs-download img:first-child {
    width: 1.05rem;
    height: 1.25rem;
    opacity: 0.5;
}
.pgs-download-icon {
    width: 1rem;
    height: auto;
    margin-left: auto;
}
.pgs-desc-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255);
}
.pgs-card.white.pgs-desc-card p {
    color: #000;
}

/* Related */
.related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.related-head .kicker {
    margin-bottom: 0.5rem;
}
.related-head .section-title {
    color: #03236b;
    font-size: 2rem;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.related-photo {
    width: 19.0625rem;
    height: 11.25rem;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
    margin-bottom: 1.25rem;
}
.related-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.related-card .section-title {
    color: #03236b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.related-card p {
    color: #4a4a4a;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.related-card .btn {
    width: 19.0625rem;
}
.bold-lil-text {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Service detail */
.service-detail .kicker {
    margin-bottom: 0.5rem;
}
.service-detail > .container > .section-title {
    color: #03236b;
    margin-bottom: 2rem;
}
.service-panel {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    background: linear-gradient(90deg, #0d2864 0%, #125fcc 100%);
    border-radius: 1.25rem;
    padding: 2rem;
    height: 39.375rem;
}
.service-panel-media {
    width: 32rem;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
}
.service-panel-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-panel-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.service-panel-list::-webkit-scrollbar {
    display: none;
}
.service-item {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem 1.875rem;
    flex-shrink: 0;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
}
.service-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.service-item-top .section-title {
    font-weight: 600;
    font-size: 1.5rem;
}
.service-item-icon {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
}
.service-item p {
    opacity: 0.5;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Advantages */
.advantages-section .kicker {
    margin-bottom: 0.5rem;
}
.advantages-section > .container > .section-title {
    color: #03236b;
    margin-bottom: 2rem;
}
.advantages-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.advantage-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}
.advantage-card-photo {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
    margin-bottom: .75rem;
}
.advantage-card .section-title {
    color: #03236b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.advantage-card p {
    color: #6b6b6b;
    font-size: 0.9rem;
}

/* Contacts map */
.contacts-map-wrap {
    position: relative;
    height: 31.5rem;
    overflow: hidden;
}
.contacts-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(100%) contrast(0.9);
}
.contacts-map iframe{
    width: 100%!important;
    height: 100%!important;
}
.contacts-map-head {
    position: absolute;
    top: 2rem;
    left: 5rem;
    z-index: 1;
}
.contacts-map-head .section-title {
    color: #03236B;
    margin-bottom: 1rem;
}
.contacts-map-zoom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 2.75rem;
}
.contacts-zoom-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(3, 35, 107, 0.15);
    background: #fff;
    color: #000000;
    font-size: 1.85rem;
    font-weight: 300;
    cursor: pointer;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
}

/* Contacts info */
.contacts-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.contacts-info-block {
    margin-bottom: 1.75rem;
}
.contacts-info-block:last-child {
    margin-bottom: 0;
}
.contacts-info-block .kicker {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}
.contacts-info-block p {
    color: #03236B;
    font-weight: 700;
    font-size: 1.25rem;
}
.contacts-info-block p a {
    color: #03236B;
}
.contacts-info-block p a:hover {
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 7%;
    text-underline-offset: 16.5%;
}
.contacts-info-note {
    opacity: .6;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
}


footer a:hover, footer a.active{
    opacity: 0.7;
}

.result {
    text-align: center;
    width: 100%;
    display: none;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(208, 52, 44, 0.18);
    background: #fff5f2;
    color: #b3261e;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 0.5rem;
    box-shadow: 0 0.55rem 1.2rem rgba(208, 52, 44, 0.08);
}

.content h1{
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
.content h2{
    margin-bottom: 1rem;
    font-size: 1.65rem;
}
.content h3{
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.content h4{
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.content h5{
    margin-bottom: 1rem;
    font-size: 1.15rem;
}
.content h6{
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.request-hint a{
    text-decoration: underline;
}
.request-hint a:hover{
    text-decoration: none;
}

.page_content h1, .page_content h2, .page_content h3, .page_content h4, .page_content h5, .page_content h6{
    color: #03236b;
}
.page_content{
    padding-bottom: 1.5rem;
}


.head-lang {
    position: relative;
}
.head-lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-weight: 700;
}
.head-lang-toggle svg {
    transition: transform 0.25s ease-in;
}
.head-lang.open .head-lang-toggle svg {
    transform: rotate(180deg);
}
.head-lang-dropdown {
    position: absolute;
    top: calc(100% + 2rem);
    left: -0.5rem;
    min-width: 4rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 50;
    transition: all 0.35s;
    opacity: 0;
    pointer-events: none;
}
.head-lang.open .head-lang-dropdown {
    top: calc(100% + 0.75rem);
    pointer-events: painted;
    opacity: 1;
}
.head-lang-option {
    background: none;
    border: none;
    text-align: left;
    padding: 0.4rem 0.6rem;
    border-radius: 0.35rem;
    cursor: pointer;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
}
.head-lang-option:hover,
.head-lang-option.active {
    background: rgba(3, 35, 107, 0.08);
    color: #03236B;
}

.gaz_anim{
    position: absolute;
    right: 3rem;
    top: 4rem;
    width: 18.75rem;
}
.gaz_line{
    position: absolute;
    height: 2.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 3000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gaz_line span{
    height: 1px;
    background: #ffffff47;
    display: block;
    width: 100%;
    transform-origin: center;
    animation: gazLineWidth 5s ease-in-out infinite alternate;
}
.gaz_line1{
    transform: translate(-50%, -50%) rotate(21deg);
}

.gaz_line2{
    transform: translate(-49.9%, -50%) rotate(108.9deg);
}

.gaz_line3{
    transform: translate(-49.9%, -50%) rotate(64.1deg);
}

.gaz_line4{
    transform: translate(-49.9%, -50%) rotate(154.9deg);
}


.rotate {
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}





/* Әр span әртүрлі ойнайды */
.gaz_line1 span, .gaz_line2 span {
    animation-duration: 2.2s;
    animation-delay: -0.5s;
}

.gaz_line3 span, .gaz_line4 span {
    animation-duration: 2.8s;
    animation-delay: -1.8s;
}




.gaz_line span:nth-child(1) {
    transform-origin: left center;
}

.gaz_line span:nth-child(2) {
    transform-origin: right center;
}

@keyframes gazLineWidth {
    0% {
        /*transform: scaleX(0.25);*/
        opacity: 0;
    }

    40% {
        /*transform: scaleX(0.75);*/
        opacity: 0.6;
    }

    70% {
        /*transform: scaleX(0.45);*/
        opacity: 0.35;
    }

    100% {
        /*transform: scaleX(1);*/
        opacity: 1;
    }
}






.purpose-smoke{
    position: absolute;
    left: 50%;
    top: 1.75rem;
    width: 4.8rem;
    height: 60%;
    transform: translateX(-50%);
    z-index: 12;
    opacity: 0;
    pointer-events: none;
    overflow: visible;
    transition: opacity 0.16s linear, height 0.16s linear;
}
.purpose-smoke span{
    position: absolute;
    left: 50%;
    top: 0;
    width: 1.6rem;
    height: 55%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 50% 18%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.78) 28%, rgba(255,255,255,0.22) 62%, rgba(255,255,255,0) 100%);
    filter: blur(0.12rem);
    transform-origin: 50% 0;
    animation: smoke-stream 2.8s ease-in-out infinite;
}
.purpose-smoke span:nth-child(1){
    transform: translateX(-56%) rotate(-9deg);
    opacity: 0.72;
}
.purpose-smoke span:nth-child(2){
    width: 2rem;
    height: 68%;
    transform: translateX(-50%) rotate(3deg);
    opacity: 0.86;
    animation-delay: -0.9s;
}
.purpose-smoke span:nth-child(3){
    transform: translateX(-42%) rotate(10deg);
    opacity: 0.56;
    animation-delay: -1.7s;
}

.anim.rel{
    isolation: isolate;
}

.anim.rel .full{
    position: relative;
    z-index: 4;
    /*filter: drop-shadow(0 1.4rem 2.4rem rgba(0, 0, 0, 0.24));*/
}

.s1{
    position: absolute;
    bottom: -1rem;
    left: 8.2rem;
    transform: rotate(24deg);
    width: 16rem;
    z-index: 3;
    filter: blur(0);
}

.sec2-target{
    width: 15rem;
    margin: 0 auto;
    position: relative;
}

@keyframes smoke-stream {
    0%, 100% {
        clip-path: polygon(42% 0, 58% 0, 66% 100%, 34% 100%);
        transform: translateX(-50%) rotate(-4deg) scaleX(0.82);
    }
    50% {
        clip-path: polygon(36% 0, 64% 0, 76% 100%, 24% 100%);
        transform: translateX(-50%) rotate(5deg) scaleX(1.08);
    }
}

@keyframes liquid-surface-flow {
    0% {
        transform: translateX(-56%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(-44%) translateY(0.16rem) rotate(2deg);
    }
    100% {
        transform: translateX(-56%) translateY(0) rotate(0deg);
    }
}

@keyframes bubble-rise {
    0% {
        transform: translateY(8rem) scale(0.6);
        opacity: 0;
    }
    22% {
        opacity: 0.42;
    }
    100% {
        transform: translateY(-2rem) scale(1);
        opacity: 0;
    }
}

.new_vawe{
    --fill-cut: 100%;
    position: absolute;
    left: 50.2%;
    bottom: 0.7rem;
    width: 6.75rem;
    height: 79% !important;
    -webkit-clip-path: polygon(0 var(--fill-cut), 100% var(--fill-cut), 100% 100%, 0% 100%);
    clip-path: polygon(0 var(--fill-cut), 100% var(--fill-cut), 100% 100%, 0% 100%);
    transform: translateX(-50%) translateZ(0);
    border-bottom-left-radius: 3.3rem;
    border-bottom-right-radius: 3.3rem;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: linear-gradient(#fff, #fff);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    contain: paint;
    z-index: 6;
    background:
        radial-gradient(80% 30% at 50% 98%, rgba(112, 226, 255, 0.42), rgba(112, 226, 255, 0) 72%),
        linear-gradient(90deg, rgba(0, 78, 151, 0.98) 0%, rgba(9, 166, 232, 0.98) 24%, rgba(53, 210, 255, 0.96) 50%, rgba(7, 138, 219, 0.98) 78%, rgba(0, 60, 132, 0.98) 100%);
    box-shadow:
        inset 0.85rem 0 1.1rem rgba(255, 255, 255, 0.14),
        inset -0.95rem 0 1.2rem rgba(0, 30, 82, 0.34),
        inset 0 -1.2rem 1.8rem rgba(0, 95, 190, 0.36);
    transition: -webkit-clip-path 0.12s linear, clip-path 0.12s linear;
}

.liquid-surface{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2.65rem;
    z-index: 8;
    overflow: hidden;
    border-radius: 50%;
    will-change: transform;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.liquid-surface span{
    position: absolute;
    inset: auto auto 0 50%;
    width: 6.85rem;
    height: 1.95rem;
    border-radius: 50%;
    transform: translateX(-50%);
    background: rgba(153, 235, 255, 0.58);
    box-shadow: 0 -0.3rem 0.9rem rgba(255, 255, 255, 0.22) inset;
    animation: liquid-surface-flow 3.9s ease-in-out infinite;
}
.liquid-surface span:nth-child(2){
    left: 45%;
    bottom: -0.18rem;
    opacity: 0.48;
    background: rgba(56, 194, 247, 0.52);
}
.liquid-surface span:nth-child(3){
    left: 56%;
    bottom: 0.12rem;
    opacity: 0.34;
    background: rgba(5, 113, 221, 0.46);
}

.liquid-bubbles{
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    overflow: hidden;
}
.liquid-bubbles span{
    position: absolute;
    bottom: 5rem;
    width: 1.38rem;
    height: 1.38rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    filter: blur(0.01rem);
    animation: bubble-rise 5.2s ease-in infinite;
}
.liquid-bubbles span:nth-child(1){ left: 30%; animation-delay: -1.2s; }
.liquid-bubbles span:nth-child(2){ left: 52%; width: 2.28rem; height: 2.28rem; animation-delay: -2.7s; }
.liquid-bubbles span:nth-child(3){ left: 70%; width: 3.32rem; height: 3.32rem; animation-delay: -4s; }

.new_vawe::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 9;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 22%, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.15) 78%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(32% 74% at 50% 56%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 72%);
    mix-blend-mode: screen;
}