:root {
    --base-color: rgb(35 165 185);
    --color-p: #1f7498;
    --color-s: #542e0c;
    --color-text: #0f466e;
    --color-text: #1f7498;
    --color-title: #12476b;
    --transition: 0.3s;
    --font-1: "Nunito", sans-serif;
    --font-2: "Noto Sans", sans-serif;
    --font-3: "Nunito Sans", sans-serif;
    /*remove*/
    --text-bold: bold;
}

html {
    scroll-behavior: smooth;
}

html {
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important;
}

html, body {
    /* height: 100%; */
}

body {
    color: #090909;
    font-family: var(--font-1);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pos-rel {
    position: relative;
    z-index: 1;
}

.trans {
    transition: var(--trans, all 0.2s ease)
}

.center {
    text-align: center;
}

p.last {
    margin-bottom: 0;
}

[hidden] {
    display: none;
}

ul, ol {
    padding: 0;
    margin: 0;
    list-style: none
}

.fix-ltr {
    direction: ltr;
    text-align: initial;
}

.set-rtl {
}

.text-middle {
    text-align: center !important;
}

a {
    text-decoration: none;
    outline: none;
}

img {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-p);
}

p {
    color: var(--color-text);
    font-size: 22px;
}

.sec-title {
    font-size: 37px;
    font-weight: 700;
}

.sec-title.md {
    font-size: 23px;
}

.sec-title.lg {
    font-size: 26px;
}

.sec-title.xl {
    font-size: 36px;
}

.sec-title.light, .text-light {
    color: #1aa6b6 !important;
}

.text-base {
    color: var(--color-text) !important;
}

.sec-subtitle {
    font-size: clamp(20px, 1.3vw, 30px);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.35px;
    /* font-size: 0.74em; */
}

.content .p {
    color: var(--color-text);
}

.bg-pattern {
    background: url('../images/bg/bg-pattern.webp');
}

.desc-content p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.0px;
    padding: 0 0px;
    color: var(--color-p);
}

.desc-content.lg p {
    font-size: 25px;
    line-height: 1.6;
}

/* header */
.header--sticky {
}

.header--navold {
    position: fixed;
    padding: 21px 0;
    width: 100%;
    z-index: 11;
    top: 0;
    background-color: #fff;
    transition: all 0.2s ease
}

.body-scrolled .header--navold {
    padding: 15px 0;
    box-shadow: 0px 10px 10px #00000014
}

.header-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin: 11px 0px;
    transition: all 0.12s ease;
    flex-wrap: wrap;
    gap: 10px 42px;
    /* display: none; */
    /* height: 0px; */
}

.nav-menu.nav-show .header-nav li a {
    color: #0b3355;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: var(--font-1);
}

.nav-menu.nav-show .header-nav li a.active {
    color: var(--base-color)
}

.nav-action {
    display: flex;
    gap: 10px 10px;
    align-items: center;
}

.nav-action__book {
    /* min-width: 148px; */
    margin-right: 25px;
    padding: 14px 39px;
}

.nav-toggle__btn {
    position: relative;
    width: 46px;
    height: 46px;
    background: #20a5b842;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.08);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    border: none;
}

.nav-toggle__btn span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: var(--base-color);
    border-radius: 4px;
    transition: 0.5s;
    left: 10px;
}

.nav-toggle__btn span:nth-child(1) {
    transform: translateY(-13px);
    width: 13px;
    left: 10px;
}

.nav-toggle__btn.active span:nth-child(1) {
    width: 30px;
    transform: translateY(0px) rotate(45deg);
    transition-delay: 0.125s;
    left: 9px;
}

.nav-toggle__btn span:nth-child(2) {
    transform: translateY(13px);
    width: 13px;
    left: 10px;
}

.nav-toggle__btn.active span:nth-child(2) {
    width: 30px;
    transform: translateY(0px) rotate(-45deg);
    left: 9px;
}

.nav-toggle__btn.active span:nth-child(3) {
    transform: translateX(60px);
}

.mob-hidden {
    display: none;
}

.mob-nav {
    background-color: #ffffffe6;
    border-radius: 6px;
    padding: 11px 18px;
    margin-top: 16px;
}

.nav-mobile {
}

.mob-nav__ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 11px;
}

.mob-nav__ul li {
}

.mob-nav__ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
    padding: 8px 0px;
    display: block;
}

/* buttons*/
.site-btn--primary {
    --btn-color: var(--base-color);
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    background: var(--btn-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 57px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--btn-color);
    transition: all 0.2s ease;
    /* min-width: 208px; */
    text-align: center;
    white-space: nowrap;
}

.site-btn--primary:not(:disabled):hover {
    --btn-color: var(--color-p);
}

.site-btn--primary:disabled {
    opacity: 0.5
}

/* hero */
.section-hero img {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 9;
}

.hero-content {
}

.hero-content h2 {
    font-size: clamp(25px, 4vw,60px);
    color: #fff;
    font-family: var(--font-3);
    font-weight: 700;
    margin-bottom: 25px;
}

.site-btn--large {
    padding: 17px 50px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.35px;
}

/* intro */
.section-intro {
    padding: 40px 0 20px;
}

.intro-content {
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 20px;
}

.intro-content p {
    margin: 0 auto;
    margin-bottom: 100px;
    max-width: 1000px;
}

/* benf */
.section-benf {
    /* background-color: #dcedfa; */
    padding: 70px 0 80px;
    position: relative;
}

.benf-overlay, .footer-overlay {
    width: 100%;
    position: absolute;
    top: -30%;
    height: 130%;
    z-index: -1;
    opacity: 30%;
    overflow: hidden;
    display: flex;
    pointer-events: none;
}

.benf-overlay {
    opacity: 20%
}

:where(.benf-overlay, .footer-overlay) img {
    width: 100%;
    height: 100%;
    z-index: -1;
    mix-blend-mode: multiply;
    object-fit: cover;
    object-position: top;
}

.benf-title {
    margin-bottom: 25px;
}

.benf-subtitle {
    /* line-height: 1.4; */
    font-size: clamp(20px, 1.3vw, 30px);
    max-width: 890px;
    margin-bottom: 100px;
}

.sec-title {
}

.sec-title h2 {
}

.sec-title p {
}

.benf-content {
}

.benf-content .title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-p);
    margin-bottom: 10px;
}

.benf-content .text {
    line-height: 1.4;
    font-size: clamp(20px, 1.2vw, 30px);
    max-width: 810px;
    margin-bottom: 40px;
}

/* PATH */
.section-pathway {
    padding: 50px 0 60px;
}

/*
.pathway-subtext {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5f6a73;
    max-width: 720px;
}

.pathway-step {
    text-align: center;
    padding: 0 1rem;
}

.pathway-step h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.pathway-step p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

.arrow {
    position: absolute;
    top: 40%;
    right: -22px;
    width: 35px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23007ea5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.pathway-cta {
    font-size: 1.05rem;
    color: #007fa8;
}

.pathway-btn {
    background-color: #00a4cc;
    border: none;
    transition: all 0.3s ease;
}

.pathway-btn:hover {
    background-color: #0089aa;
}*/
.pathway-step h2 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pathway-step p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.0px;
    padding: 0 0px;
    color: var(--color-p);
}

.pathway-arrow img {
    max-width: 100%;
    margin-top: -70px;
}

/* solution */
.section-solution {
    padding: 60px 0px 60px
}

.solution-content {
    font-size: 30px;
}

.solution-content :is(h1, h2, h3, h4, h5):not(.title) {
    color: #161616;
}

.solution-content h2 {
}

.solution-content :is(h3, h4):not(.title) {
    font-size: 0.75em;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.25px;
}

.solution-content h2 {
    font-size: 1em;
    font-weight: 700;
}

.solution-content .descr {
    font-size: 0.74em;
    color: #303030;
    line-height: 1.5;
    margin-bottom: 11px;
    /* font-size: clamp(20px, 1.3vw, 30px); */
}

.solution-content .descr p {
    color: #212121
}

.solution-content .highlight ul {
    background-color: #dcedfa;
    padding: 20px 20px;
    border-radius: 6px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 500px;
}

.solution-content .highlight p:first-child {
    color: #212121;
    font-size: 0.73em;
    font-weight: 700;
    margin-bottom: 14px;
    margin-top: 10px;
}

.solution-content ul li {
    font-size: 19px;
    color: #303030;
    line-height: 1.5;
    margin-bottom: 11px;
    display: flex;
    /* align-items: center; */
    padding-left: 21px;
    position: relative;
    font-weight: 700;
}

.solution-content ul li:last-child {
    margin-bottom: 0px;
}

.solution-content ul li:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--color-text);
    display: block;
    border-radius: 50px;
    margin-right: 17px;
    left: 0;
    top: 8px;
}

.solution-img {
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.site-footer {
    color: var(--color-title);
    /* background-color: #dcedfa; */
    position: relative;
    padding-top: 20px;
}

.footer-left__img {
    max-width: 300px;
    margin-bottom: 25px;
}

.footer-contact :is(.text, .link) {
    font-size: 22px;
    color: inherit;
    font-weight: 600;
    font-size: 22px;
    font-family: var(--font-2);
    line-height: 1.5;
}

ul.footer-menu {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

ul.footer-menu {
}

.site-footer .title , ul.footer-menu li a {
    font-size: 22px;
    color: inherit;
    font-weight: 400;
    font-size: 22px;
    font-family: var(--font-2);
    line-height: 1.5;
    display: inline-block;
    margin-bottom: 17px;
}

.site-footer .title {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.9px;
}

.footer-copy {
    padding-bottom: 20px;
    background-color: transparent;
    padding-top: 30px;
}

.footer-copy :is(p, .link) {
    font-size: 17px;
    font-weight: 600;
    color: #212121;
}

.section-aboutintro {
    padding-bottom: 22px;
    padding-top: 50px;
    background: linear-gradient(to bottom, #29a6b812, transparent);
}

.aboutintro-content p {
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 0px;
    font-size: clamp(20px, 1.3vw, 30px);
}

.aboutintro-img {
    text-align: center;
}

.aboutintro-img img {
    max-width: 286px;
    border-radius: 12px;
}

.intro-vm {
    background-color: #dcedfa;
    padding: 35px 45px;
    max-width: 400px;
    border-radius: 45px;
    line-height: 1.6;
    margin: 0 auto;
}

.intro-vm .head {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 12px;
}

.intro-vm .title {
    font-size: 30px;
    color: var(--color-p);
    font-weight: 700;
}

.intro-vm .icon img {
    width: 120px;
}

.intro-vm .list {
    font-size: 21px;
    color: var(--color-text);
    line-height: 1.5;
}

.intro-vm .list .icon:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--color-text);
    display: inline-block;
    border-radius: 50px;
    margin-right: 14px;
}

.sec-img {
    max-width: 420px;
}

.section-whychoose {
    padding: 10px 0px 50px;
}

.why-card p {
    line-height: 1.5;
    font-size: 22px;
    color: #000000;
    margin-bottom: 0;
}

.why-card {
    background-color: #29a6b81a;
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.platform-title {
    color: var(--color-title);
}

.platform-card {
    text-align: center
}

.platform-card p {
    color: #212121;
    font-size: 22px;
    max-width: 400px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

.collaborator-imgs {
    display: flex;
    /* align-items: center; */
    gap: 10px 10px;
    flex-wrap: wrap;
    margin: 60px 0 100px;
    justify-content: center;
}

.collaborator-imgs .collab-box {
    max-width: 300px;
    border: 1px solid #ffffff;
    padding: 8px 10px;
    display: flex;
    align-items: center;
}

.section-case {
    padding-top: 140px;
    position: relative;
    padding-bottom: 50px;
    /* background-color: #dcedf9; */
    /* overflow: hidden; */
}

.section-case {
}

.section-case h2 {
    position: relative;
    z-index: 1
}

.case-overlay {
    position: absolute;
    /* height: 100%; */
    inset: 0;
    z-index: 0;
    pointer-events: none;
    top: 50%;
    opacity: 1;
    transform: scaleX(-1);
    /* overflow: hidden; */
    transition: all 0.2s ease;
}

.case-overlay svg {
    width: 100%;
    height: 100%;
}

.case-overlay img {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
}

.section-casecard {
    padding: 50px 0px 90px;
}

.case-card {
    margin-bottom: 35px;
}

.case-card__img {
    text-align: center;
    max-width: 410px;
    aspect-ratio: 1;
    background-color: #eee;
}

.case-card__img img {
    max-width: 410px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.case-card__info {
}

.case-card__info h2 {
    text-align: center;
    margin: 24px 0px 10px;
    font-size: 25px;
    font-weight: 700;
    color: var(--base-color);
}

.skeleton {
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 0;
}

.skeleton::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(to right, transparent 0%, #ffffff33 50%, transparent 100%);
    animation: loading 1.2s infinite;
    z-index: -1;
}

@keyframes loading {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}

.form-section .talkform {
    background: #e6f3fb;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.form-title {
    color: #138fae;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 26px;
    margin-top: 0px;
}

.form-control {
    border-radius: 30px;
    padding: 12px 25px;
    border: 1px solid #ccc;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    outline: 0;
}

.form-control.error {
    border-color: #e54444;
}

.challenge-btn {
    background: #d9d9d9;
    border: none;
    border-radius: 25px;
    padding: 6px 18px;
    font-size: 14px;
    margin: 5px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.challenge-btn:hover, .challenge-btn.active {
    background: #138fae;
    color: #fff;
}

.form-check-label {
    font-size: 17px;
    line-height: 1.4;
}

.btn-submit {
}

.btn-submit:hover {
}

.form-radio {
    user-select: none;
}

.attach-btn {
    border: 2px solid #000;
    background: transparent;
    border-radius: 25px;
    padding: 14px 37px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
    letter-spacing: 0.25px;
}

.attach-btn:hover {
    background: #138fae;
    color: #fff;
    border-color: #138fae;
}

.form-btn {
    padding: 17px 7vw;
}

.info-section {
    /* padding-left: 40px; */
}

.info-section p {
    line-height: 1.5;
}

.info-section h4 {
    color: #138fae;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-section a {
    color: #138fae;
    text-decoration: underline;
}

.card-input-element:hover + .card {
    background-color: #eee;
}

.card-input-element:checked + .card {
    border: 2px solid var(--base-color);
    -webkit-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s;
    background-color: var(--base-color);
    color: #fff;
}

.card-input-element + .card {
    margin: 10px;
    justify-content: center;
    color: rgb(50 50 50);
    border: 2px solid transparent;
    text-align: center;
    -webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
    background: #d9d9d9;
    border-radius: 35px;
    padding: 12px 23px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-family: var(--font-2);
}

.card {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.65rem;
}

.contactform-grp label.error {
    color: #f11e1e !important;
    font-size: 14px;
    font-family: var(--font-2);
    font-weight: 400;
    letter-spacing: .25px;
    line-height: 1.1;
    margin-top: 10px;
    padding-left: 12px;
}

.validation-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.validation-icon:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.input-error + .validation-icon::before {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m12 12.727l-3.244 3.252q-.161.16-.358.15t-.358-.17t-.16-.363t.16-.363L11.274 12L8.04 8.782q-.16-.161-.16-.367t.16-.368t.364-.16q.204 0 .363.16L12 11.298l3.219-3.252q.161-.16.358-.16t.358.16q.165.166.165.367t-.165.36L12.702 12l3.252 3.244q.16.161.16.358t-.16.358q-.166.165-.367.165t-.36-.165z'/%3E%3C/svg%3E");
    color: red;
    animation: shake 0.3s ease;
    opacity: 1;
}

.input-valid + .validation-icon::before {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦";
    color: green;
    animation: bounce 0.3s ease;
    opacity: 1;
}

@keyframes shake {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }

    25% {
        transform: translateY(-50%) translateX(-5px);
    }

    75% {
        transform: translateY(-50%) translateX(5px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

.contactfrm-grp {
    position: relative
}

.custom-checkbox {
    display: block;
    margin-bottom: 15px;
}

.custom-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.custom-checkbox label {
    position: relative;
    cursor: pointer;
}

.custom-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #0079bf;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.custom-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.swal-text {
    text-align: center;
}

.swal-footer {
    text-align: center;
}

#file-alert {
    margin-top: 10px;
}

#file-alert p {
    font-size: 16px;
    margin-bottom: 9px;
}

.btn-remove {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    margin-left: 10px;
    padding: 11px 13px;
    font-size: 14px;
}

.sec-title__sub {
    line-height: 1.6;
}

.social-media {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 5px;
}

.social-media svg {
    width: 55px;
}

.page {
    padding: 10px 0px 60px;
    font-size: 16px;
}

.page h1 {
    margin-top: 0;
    font-size: 1.8rem;
    /* color: #0f172a; */
}

.page h2 {
    margin-top: 1em;
    font-size: 1.3em;
    color: #0b1220;
    font-weight: 700;
    margin-bottom: .21em;
}

#how-we-use {
    font-weight: 600
}

.page p, .page li {
    margin: 0.6rem 0;
    font-size: 1.00em;
    line-height: 1.6;
    font-family: var(--font-2);
    color: var(--color-title);
}

.page li {
    color: #212121;
    /* font-size: 0.89em; */
}

.page ul {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    font-family: var(--font-3);
    color: #303030;
    list-style: disc;
    margin-left: 28px;
}

.page .meta {
    color: #6a6e76;
    font-size: 0.95em;
    margin-bottom: 1rem;
}

.page a {
    color: #0b6efd;
    text-decoration: none;
}

.page a:hover {
    text-decoration: underline;
}

.whymain-img {
    text-align: center
}

img.why-img {
    max-width: 360px;
}

.why-card__img {
    max-width: 80%
}

#cookieConsentPopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 630px;
    margin: auto;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    background-color: var(--color-title);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    color: #ffffffcf;
    font-size: 18px;
    letter-spacing: 0.15px;
    font-weight: 500;
    line-height: 1.7;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn.allow {
    background-color: #28a745;
}

.btn.allow:hover {
    background-color: #218838;
    color: #fdff;
}

.btn.deny {
    background-color: #6c757d;
}

.btn.deny:hover {
    background-color: #5a6268;
    color: #fff;
}

/* zz */
@media screen and (max-width: 1400px) {
    .section-hero img {
        aspect-ratio: 2 / 1.2;
    }
}

@media screen and (max-width: 1200px) {
    .section-hero img {
        aspect-ratio: 2/1.2;
    }

    .intro-content p {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .header--navold {
        padding: 4px 0;
    }

    .body-scrolled .header--navold {
        padding: 3px 0;
        box-shadow: 0px 10px 10px #00000014;
    }

    .section-hero img {
        aspect-ratio: 1;
    }

    .site-btn--large {
        padding: 16px 30px;
        font-size: 16px;
    }

    .intro-content p {
        margin-bottom: 20px;
    }

    .benf-subtitle {
        margin-bottom: 20px;
    }

    .pathway-step p {
        font-size: 17px;
        font-weight: 600;
    }

    .sec-title {
        font-size: 27px;
        margin-bottom: 30px;
    }

    .sec-title.xl {
        font-size: 26px;
    }

    .intro-vm {
        padding: 15px 25px;
        border-radius: 35px;
        margin-bottom: 20px;
    }

    .section-case {
        padding-top: 100px;
        padding-bottom: 90px;
    }

    .case-overlay img {
        object-position: right;
    }

    .section-casecard {
        padding: 10px 0px 40px;
    }
}

@media screen and (max-width: 1200px) {
    .form-section .talkform {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 568px) {
    .form-section .talkform {
        padding: 30px 10px;
        margin-bottom: 10px;
    }

    .form-radio {
        text-align: left !important
    }

    .card-input-element + .card {
        margin: 10px 5px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .section-benf {
        padding: 20px 0 80px
    }
}

@media screen and (max-width: 991px) {
    .benf-content .text {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .nav-logo {
        max-width: 240px;
    }

    .collaborator-imgs .collab-box {
        max-width: 220px;
    }
}

@media screen and (min-width: 1200px) {
    .nav-logo {
        max-width: 260px;
        transition: all 0.2s ease;
    }

    .body-scrolled .nav-logo {
        max-width: 220px;
    }

    .body-scrolled .header-nav .nav-logo {
        max-width: 80px;
    }

    .header-nav li a {
        font-size: 16.2px;
    }

    .herobanner-img {
        max-height: 860px;
        min-height: 760px;
    }

    .innerbanner-info__text {
        font-size: 41px;
    }

    .nav-menu.nav-show .header-nav {
        gap: 10px 61px;
    }
}

@media screen and (min-width: 1400px) {
    .case-overlay {
        top: 41%;
    }

    .collaborator-imgs img {
        max-width: 300px;
    }
}
