*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    background-color: #FAF9F6;
}

.t1 {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    max-width: 400px;
    color: #05347B;
}

.t2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #05347B;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.h1 {
    font-family: 'Oblata Display', serif;
    font-size: 85px;
    font-weight: 500;
    color: #05347B;
}

.h2 {
    font-family: 'Oblata Display', serif;
    font-size: 64px;
    font-weight: 500;
    color: #05347B;
}

.h3 {
    font-family: 'Oblata Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #05347B;
}

.h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    max-width: 400px;
    color: #05347B;
}

.h5 {
    font-family: 'Oblata Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #05347B;
}

.white {
    color: #FAF9F6;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FAF9F6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 10px 60px;
    z-index: 2000;
    box-shadow: 0 8px 24px rgba (0, 0, 0, 0.1);
}

.logo {
    height: 50px;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.menu-btn {
    height: 46px;
    background-color: #F98A24;
    color: #05347B;
    border: none;
    border-radius: 15px;
    color: #FAF9F6;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    padding: 0 20px;
    transition: background-color 0.25s ease, text-decoration 0.25s ease;
}

.menu-btn:hover {
    background-color: #E67C1E;
    text-decoration: underline;
}

.menu-btn2 {
    height: 46px;
    background-color: #FAF9F6;
    border: 2px #F98A24 solid;
    border-radius: 15px;
    color: #05347B;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    padding: 0 20px;
    transition: background-color 0.25s ease, border-color 0.25s ease, text-decoration 0.25s ease;
}

.menu-btn2:hover {
    border-color: #E67C1E;
    background-color: #F6F4EF;
    text-decoration: underline;
}

.burger {
    height: 46px;
    background: none;
    border: 2px #F98A24 solid;
    border-radius: 15px;
    color: #05347B;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 2200;
    cursor: pointer;
     transition: background-color 0.25s ease, border-color 0.25s ease;
}

.burger:hover {
    border-color: #E67C1E;
    background-color: #F6F4EF;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #05347B;
    transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #FAF9F6;
    padding: 120px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease;
    z-index: 1000;
}

.side-menu.active {
    right: 0;
}

.side-menu-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}


.hero {
    width: 100%;
    background-color: #19316E;
    height: 100vh;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hero svg {
    margin-top: 80px;
    width: 500px;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}


.btn {
    height: 55px;
    background-color: #F98A24;
    border: none;
    border-radius: 15px;
    color: #FAF9F6;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    padding: 0 20px;
    transition: background-color 0.25s ease, text-decoration 0.25s ease;
}


.btn:hover {
    background-color: #E67C1E;
    text-decoration: underline;
}

.btn2 {
    height: 55px;
    background-color: #FAF9F6;
    border: 2px #E38B3A solid;
    border-radius: 15px;
    color: #2E3A59;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    padding: 0 20px;
    transition: background-color 0.25s ease, border-color 0.25s ease, text-decoration 0.25s ease;
}

.btn2:hover {
    border-color: #CF7426;
    background-color: #F6F4EF;
    text-decoration: underline;
}

.block1 {
    padding: 80px 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.card {
    min-width: 100%;
    height: 85vh;
    background-color: #E6F3FB;
    display: flex;
    justify-content: center;
    background-image: url("/photo/card1.png");
    background-size: cover;
    background-position: center;
}

.card2 {
    min-width: 100%;
    height: 85vh;
    background-color:#19316E;
    display: flex;
    justify-content: center;
}

.card3 {
    min-width: 100%;
    height: 85vh;
    background-color:#E6F3FB;
    display: flex;
    justify-content: center;
    background-image: url("/photo/card3.png");
    background-size: cover;
    background-position: center;
}

.card-inner {
    max-width: 1200px;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
}

.card-tcont {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    z-index: 1000;
}

.card-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.card-cont svg {
    width: 450px;
    z-index: 0;
}

.kk {
    width: 250px;
    margin-left: 40px;
}

.tc {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}


.tggl-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.toggles-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.toggle {
    background-color: #FAF9F6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 30px;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.controls {
    display: flex;
    gap: 40px;
    align-self: flex-end;
}

.arrow {
    width: 60px;
    height: 60px;
    background-color: #FAF9F6;
    border: 2px #F98A24 solid;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow:hover {
    border-color: #E67C1E;
    background-color: #F6F4EF;
}

.arrow svg {
    width: 40px;
}

.card-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    gap: 40px;
}

.card-sm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 40px;
    background-color: #E6F3FB;
    padding: 20px 20px;
    height: 200px;
}

.card-sm-blank {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 40px;
    background-color: #FAF9F6;
    padding: 20px 20px;
    height: 200px;
}

.card-blue {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    background-color: #19316E;
    padding: 24px 20px;
    height: 200px;
}

.card-blue svg {
    width: 80px;
    align-self: flex-end;
}

footer {
    width: 100%;
    padding: 40px 60px;
    background-color: #19316E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
}


.footer-logo {
    align-self: center;
    width: auto;
    height: 60px;
}

.footer-content {
    width: 100vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 600px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 500px;
}

.footer-column .t1 {
    width: 500px;
}

.media-bttns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.media-bttn {
    width: 40px;
    height: 40px;
    background-color:#2E3A59;
    border: 2px solid #FAF9F6;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

@media (min-width: 2881px) {
    .h1 {
        font-size: 200px;
    }

    .t1 {
        font-size: 36px;
        font-weight: 400;
        max-width: 1000px;
        line-height: 1.2;
    }

    .t2 {
        font-size: 32px;
        font-weight: 400;
        max-width: 1000px;
        line-height: 1.2;
    }

    .h2 {
        font-size: 160px;
        font-weight: 500;
        max-width: 2400px; 
    }
    .ck {
       max-width: 1200px; 
    }

    .h3 {
        font-size: 75px;
        font-weight: 400;
    }

    .h4 {
        font-size: 32px;
        font-weight: 600;
        max-width: 400px;
    }

    .h5 {
        font-size: 46px;
        font-weight: 400;
    }

    .white {
        color: #FAF9F6;
    }

    .menu {
        height: 160px;
        padding: 30px 420px;
    }

    .logo {
        height: 120px;
    }

    .btns {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .menu-btn {
        height: 100px;
        font-size: 36px;
        padding: 0 40px;
    }

    .menu-btn2 {
        height: 100px;
        font-size: 36px;
        padding: 0 40px;
    }

    .burger {
        height: 80px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        z-index: 2200;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 32px;
        height: 2px;
        border-radius: 2px;
        background: #2E3A59;
        transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
    }

    .side-menu {
        position: fixed;
        top: 0;
        right: -1200px;
        width: 1200px;
        height: 100vh;
        padding: 360px 100px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .side-menu-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
    }

    .hero {
        width: 100%;
        height: 100vh;
        padding: 280px 420px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }
      
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 140px;
    }

    .hero svg {
        width: 1100px;
        margin-left: 600px;
    }


    .block1 {
        padding: 160px 420px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
    }

    .block {
        padding: 160px 420px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
    }

    .btn {
        height: 120px;
        border: none;
        border-radius: 20px;
        font-size: 36px;
        padding: 0 60px;
    }

    .card {
        min-width: 100%;
        height: 75vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card1.png");
        background-size: cover;
        background-position: center;
    }

    .card2 {
        min-width: 100%;
        height: 75vh;
        display: flex;
        justify-content: center;
    }

    .card3 {
        min-width: 100%;
        height: 75vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card3.png");
        background-size: cover;
        background-position: center;
    }

    .card-inner {
        max-width: 3000px;
        width: 100%;
        padding: 120px 120px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 120px;
    }

    .tggl-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 60px;
        margin-top: 80px;
    }

    .toggles-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 35px;
        border-radius: 50px;
    }

    .tc {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 80px;
    }

    .card2 svg {
        width: 1000px; 
        margin-left: 350px;
    }

    .kk {
        justify-self: flex-end;
        margin-left: 350px;
    }

    .arrow {
        width: 100px;
        height: 100px;
        border-radius: 15px;
    }

    .arrow svg {
        width: 60px;
    }

    .card-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 100px;
    }

    .card-sm {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 60px 60px;
        height: 480px;
    }

    .card-sm-blank {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 40px;
        height: 420px;
    }

    .card-blue {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        padding: 60px 60px;
        height: 550px;
    }

    .card-blue svg {
        width: 160px;
        align-self: flex-end;
    }

    .btn {
        height: 100px;
        border: none;
        border-radius: 20px;
        font-size: 32px;
        padding: 0 40px;
    }

    .footer {
        margin-top: 80px;
        width: 100%;
        padding: 80px 420px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 160px;
    }

    .footer-logo {
        align-self: center;
        width: auto;
        height: 120px;
    }

    .footer-content {
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 2050px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
        width: 500px;
    }

    .media-bttns {
        gap: 40px;
    }

    .media-bttn {
        width: 80px;
        height: 80px;
        border: 3px solid #FAF9F6;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .media-bttn svg {
        width: 40px;
    }

}

@media (max-width: 2880px) {
    .t1 {
        font-size: 32px;
        font-weight: 400;
        max-width: 800px;
        line-height: 1.2;
    }

    .t2 {
        font-size: 28px;
        font-weight: 400;
        line-height: 1.2;
    }

    .h1 {
        font-size: 200px;
        font-weight: 500;
    }

    .h2 {
        font-size: 140px;
        font-weight: 500;
    }

    .ck {
       max-width: 1200px; 
    }

    .h3 {
        font-size: 65px;
        font-weight: 400;
        max-width: 2000px;
    }

    .h4 {
        font-size: 32px;
        font-weight: 600;
        max-width: 400px;
    }

    .h5 {
        font-size: 32px;
        font-weight: 400;
    }

    .number {
        font-size: 150px;
        font-weight: 500;
    }

    .white {
        color: #FAF9F6;
    }

    .menu {
        height: 140px;
        padding: 30px 320px;
    }

    .logo {
        height: 100px;
    }

    .btns {
        gap: 40px;
    }

    .menu-btn {
        height: 80px;
        font-size: 32px;
        padding: 0 40px;
    }

    .menu-btn2 {
        height: 80px;
        font-size: 32px;
        padding: 0 40px;
    }

    .burger {
        height: 80px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        z-index: 2200;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 32px;
        height: 2px;
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
    }

    .side-menu {
        position: fixed;
        top: 0;
        right: -820px;
        width: 820px;
        height: 100vh;
        padding: 160px 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .side-menu-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
    }

    .hero {
        width: 100%;
        height: 100vh;
        padding: 250px 320px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }
      
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 100px;
    }

    .hero svg {
        width: 900px;
        margin-left: 400px;
    }


    .line-container {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 220px 320px 10px;
        height: 60px;
        z-index: 1000;
    }

    .block1 {
        padding: 100px 320px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
    }

    .block {
        padding: 100px 320px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
    }

    .card {
        min-width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card1.png");
        background-size: cover;
        background-position: center;
    }

    .card2 {
        min-width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
    }

    .card3 {
        min-width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card3.png");
        background-size: cover;
        background-position: center;
    }

    .card-inner {
        max-width: 2600px;
        width: 100%;
        padding: 100px 100px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 80px;
    }

    .tggl-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 60px;
        margin-top: 60px;
    }

    .toggles-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 25px;
        border-radius: 40px;
    }

    .tc {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 60px;
    }

    .card2 svg {
        width: 850px; 
        margin-left: 80px;
    }

    .kk {
        justify-self: flex-end;
        margin-left: 350px;
    }

    .arrow {
        width: 100px;
        height: 100px;
        border-radius: 15px;
    }

    .arrow svg {
        width: 60px;
    }

    .card-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 100px;
    }

    .card-sm {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 60px 60px;
        height: 420px;
    }

    .card-sm-blank {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 40px;
        height: 420px;
    }

    .card-blue {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        padding: 60px 60px;
        height: 450px;
    }

    .card-blue svg {
        width: 140px;
        align-self: flex-end;
    }

    .btn {
        height: 100px;
        border: none;
        border-radius: 20px;
        font-size: 32px;
        padding: 0 40px;
    }

    .footer {
        margin-top: 80px;
        width: 100%;
        padding: 80px 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 160px;
    }

    .footer-logo {
        align-self: center;
        width: auto;
        height: 100px;
    }

    .footer-content {
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1450px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
        width: 500px;
    }

    .media-bttns {
        gap: 40px;
    }

    .media-bttn {
        width: 80px;
        height: 80px;
        border: 3px solid #FAF9F6;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .media-bttn svg {
        width: 40px;
    }
}

@media (max-width: 2560px) {
    .t1 {
        font-size: 28px;
        font-weight: 400;
        max-width: 800px;
        line-height: 1.2;
    }

    .t2 {
        font-size: 24px;
        font-weight: 400;
        max-width: 800px;
        line-height: 1.2;
    }

    .h1 {
        font-size: 160px;
        font-weight: 500;
    }

    .h2 {
        font-size: 120px;
        font-weight: 500;
    }

    .ck {
       max-width: 1200px; 
    }

    .cc {
        max-width: 1400px;
    }

    .h3 {
        font-size: 56px;
        font-weight: 400;
    }

    .h4 {
        font-size: 28px;
        font-weight: 600;
        max-width: 400px;
    }

    .h5 {
        font-size: 32px;
        font-weight: 400;
    }

    .white {
        color: #FAF9F6;
    }

    .menu {
        height: 120px;
        padding: 30px 240px;
    }

    .logo {
        height: 80px;
    }

    .btns {
        gap: 40px;
    }

    .menu-btn {
        height: 70px;
        font-size: 28px;
        padding: 0 40px;
    }

    .menu-btn2 {
        height: 70px;
        font-size: 28px;
        padding: 0 40px;
    }

    .burger {
        height: 60px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        z-index: 2200;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
    }

    .side-menu {
        position: fixed;
        top: 0;
        right: -620px;
        width: 620px;
        height: 100vh;
        padding: 160px 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .side-menu-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
    }

    .hero {
        width: 100%;
        height: 100vh;
        padding: 250px 240px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

        
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 60px;
    }

    .hero svg {
        width: 800px;
        margin-left: 400px;
    }


    .block1 {
        padding: 100px 240px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
    }

    .block {
        padding: 100px 240px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
    }

    .card-inner {
        max-width: 2000px;
        width: 100%;
        padding: 60px 60px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 100px;
    }

    .tggl-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
        margin-top: 30px;
    }

    .toggles-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 25px;
        border-radius: 40px;
    }

    .tc {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 60px;
    }

    .card2 svg {
        width: 750px; 
        margin-left: 100px;
    }

    .kk {
        justify-self: flex-end;
        margin-left: 350px;
    }

    .arrow {
        width: 80px;
        height: 80px;
        border-radius: 15px;
    }

    .arrow svg {
        width: 40px;
    }

    .card-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 80px;
    }

    .card-sm {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 40px;
        height: 320px;
    }

    .card-sm-blank {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 40px;
        height: 260px;
    }

    .card-blue {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 40px;
        height: 350px;
    }

    .card-blue svg {
        width: 120px;
        align-self: flex-end;
    }

    .btn {
        height: 80px;
        border: none;
        border-radius: 20px;
        font-size: 28px;
        padding: 0 40px;
    }

    .footer {
        margin-top: 80px;
        width: 100%;
        padding: 80px 240px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 160px;
    }

    .footer-logo {
        align-self: center;
        width: auto;
        height: 100px;
    }

    .footer-content {
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1200px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
        width: 500px;
    }

    .media-bttns {
        gap: 40px;
    }

    .media-bttn {
        width: 80px;
        height: 80px;
        border: 3px solid #FAF9F6;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .media-bttn svg {
        width: 40px;
    }
}

@media (max-width: 1920px) {
    .t1 {
        font-size: 24px;
        font-weight: 400;
        max-width: 600px;
        line-height: 1.2;
    }

    .t2 {
        font-size: 20px;
        font-weight: 400;
        max-width: 600px;
        line-height: 1.2;
    }

    .h1 {
        font-size: 120px;
        font-weight: 500;
    }

    .h2 {
        font-size: 95px;
        font-weight: 500;
    }

    .ck {
        max-width: 1000px;
    }

    .h3 {
        font-size: 46px;
        font-weight: 400;
    }

    .h4 {
        font-size: 24px;
        font-weight: 600;
        max-width: 400px;
    }

    .h5 {
        font-size: 28px;
        font-weight: 400;
    }

    .number {
        font-size: 120px;
        font-weight: 500;
    }

    .white {
        color: #FAF9F6;
    }

    .menu {
        height: 100px;
        padding: 30px 120px;
    }

    .logo {
        height: 70px;
    }

    .menu-btn {
        height: 60px;
        font-size: 24px;
        padding: 0 30px;
    }

    .menu-btn2 {
        height: 60px;
        font-size: 24px;
        padding: 0 30px;
    }

    .burger {
        height: 60px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        z-index: 2200;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
    }

    .side-menu {
        position: fixed;
        top: 0;
        right: -420px;
        width: 420px;
        height: 100vh;
        padding: 160px 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .side-menu-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
    }

    .hero {
        width: 100%;
        height: 100vh;
        padding: 160px 120px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

        
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 60px;
    }

    .hero svg {
        width: 600px;
        margin-left: 300px;
    }

    .block1 {
        padding: 100px 120px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
    }

    .block {
        padding: 100px 120px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
    }

    .card {
        min-width: 100%;
        height: 85vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card1.png");
        background-size: cover;
        background-position: center;
    }

    .card2 {
        min-width: 100%;
        height: 85vh;
        display: flex;
        justify-content: center;
    }

    .card3 {
        min-width: 100%;
        height: 85vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card3.png");
        background-size: cover;
        background-position: center;
    }


    .card2 svg {
        width: 550px; 
        margin-left: 100px;
    }

    .kk {
        justify-self: flex-end;
        margin-left: 350px;
    }

    .card-inner {
        max-width: 1600px;
        width: 100%;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 60px;
    }

    .tggl-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
        margin-top: 20px;
    }

    .toggles-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 25px;
        border-radius: 30px;
    }

    .tc {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
    }

    .card-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 80px;
    }

    .card-sm {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 40px;
        height: 260px;
    }

    .card-sm-blank {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 40px;
        height: 260px;
    }

    .card-blue {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 40px;
        height: 300px;
    }

    .card-blue svg {
        width: 100px;
        align-self: flex-end;
    }

    .arrow {
        width: 80px;
        height: 80px;
        border-radius: 15px;
    }

    .arrow svg {
        width: 40px;
    }

    .footer {
        margin-top: 80px;
        width: 100%;
        padding: 40px 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 120px;
    }

    .footer-logo {
        align-self: center;
        width: auto;
        height: 80px;
    }

    .footer-content {
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 700px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        width: 500px;
    }

    .media-bttns {
        gap: 30px;
    }

    .media-bttn {
        width: 60px;
        height: 60px;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .media-bttn svg {
        width: 25px;
    }
}

@media (max-width: 1440px) {
    .t1 {
        font-size: 20px;
        font-weight: 400;
        max-width: 500px;
    }

    .t2 {
        font-size: 16px;
        font-weight: 400;
        max-width: 1000px;
        white-space: nowrap;
    }

    .h1 {
        font-size: 90px;
        font-weight: 500;
    }

    .h2 {
        font-size: 76px;
        font-weight: 500;
        max-width: 1200px;
    }

    .ck {
        max-width: 860px;
    }

    .h3 {
        font-size: 36px;
        font-weight: 400;
    }

    .h4 {
        font-size: 20px;
        font-weight: 600;
        max-width: 400px;
    }

    .h5 {
        font-size: 20px;
        font-weight: 400;
    }

    .number {
        font-size: 120px;
        font-weight: 500;
    }

    .white {
        color: #FAF9F6;
    }

    .menu {
        height: 80px;
        padding: 20px 80px;
    }

    .logo {
        height: 60px;
    }

    .menu-btn {
        height: 50px;
        border: none;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
    }

    .menu-btn2 {
        height: 50px;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
    }

    .burger {
        height: 50px;
        font-size: 20px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        z-index: 2200;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .side-menu {
        position: fixed;
        top: 0;
        right: -380px;
        width: 380px;
        height: 100vh;
        background: white;
        padding: 120px 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .side-menu.active {
        right: 0;
    }

    .side-menu-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
    }

    .hero {
        width: 100%;
        height: 100vh;
        padding: 140px 100px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

        
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 60px;
    }

    .hero svg {
        width: 500px;
        margin-left: 150px;
    }

    .block1 {
        padding: 80px 100px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
    }

    .block {
        padding: 80px 100px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .card {
        min-width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card1.png");
        background-size: cover;
        background-position: center;
    }

    .card2 {
        min-width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
    }

    .card3 {
        min-width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card3.png");
        background-size: cover;
        background-position: center;
    }

    .card-inner {
        max-width: 1200px;
        width: 100%;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
    }

    .card-cont svg {
        width: 400px;
        margin-left: 50px;
        z-index: 0;
    }

    .tc {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }


    .tggl-container {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .toggles-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        border-radius: 30px;
    }

    .arrow {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .arrow svg {
        width: 40px;
    }

    .card-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 40px;
    }

    .card-sm {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 20px 20px;
        height: 200px;
    }

    .card-sm-blank {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 20px 30px;
        height: 200px;
    }

    .card-blue {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        padding: 30px 30px;
        height: 250px;
    }

    .card-blue svg {
        width: 80px;
        align-self: flex-end;
    }

    .footer {
        width: 100%;
        padding: 40px 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 80px;
    }


    .footer-logo {
        align-self: center;
        width: auto;
        height: 70px;
    }

    .footer-content {
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 400px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        width: 500px;
    }

    .footer-column .t1 {
        width: 500px;
    }

    .media-bttns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .media-bttn {
        width: 50px;
        height: 50px;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    } 

    .media-bttn svg {
        width: 22px;
    }

    .btn {
        height: 55px;
        border: none;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
        transition: background-color 0.25s ease, text-decoration 0.25s ease;
    }

}

@media (max-width: 1280px) {
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html, body {
        height: 100%;
        overflow-x: hidden;
    }

    .t1 {
        font-size: 16px;
        font-weight: 400;
        max-width: 400px;
    }

    .t2 {
        font-family: 'Work Sans', sans-serif;
        font-size: 14px;
        font-weight: 400;
    }

    a {
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    .h1 {
        font-size: 85px;
        font-weight: 500;
    }

    .h2 {
        font-size: 64px;
        font-weight: 500;
        max-width: 1200px;
    }

    .h3 {
        font-size: 32px;
        font-weight: 400;
    }

    .h4 {
        font-size: 20px;
        font-weight: 600;
        max-width: 400px;
    }

    .h5 {
        font-size: 20px;
        font-weight: 400;
    }


    .white {
        color: #FAF9F6;
    }



    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        padding: 10px 60px;
        z-index: 2000;
        box-shadow: 0 8px 24px rgba (0, 0, 0, 0.1);
    }

    .logo {
        height: 50px;
    }

    .btns {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .menu-btn {
        height: 46px;
        border: none;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
        transition: background-color 0.25s ease, text-decoration 0.25s ease;
    }

    .menu-btn2 {
        height: 46px;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
        transition: background-color 0.25s ease, border-color 0.25s ease, text-decoration 0.25s ease;
    }

    .burger {
        height: 46px;
        background: none;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        z-index: 2200;
        cursor: pointer;
        transition: background-color 0.25s ease, border-color 0.25s ease;
    }

    .burger span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .side-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        padding: 120px 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .side-menu.active {
        right: 0;
    }

    .side-menu-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }


    .hero {
        width: 100%;
        height: 100vh;
        padding: 0 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .hero svg {
        margin-top: 80px;
        width: 500px;
    }

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

    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
    }


    .btn {
        height: 55px;
        border: none;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
        transition: background-color 0.25s ease, text-decoration 0.25s ease;
    }


    .btn2 {
        height: 55px;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
        transition: background-color 0.25s ease, border-color 0.25s ease, text-decoration 0.25s ease;
    }

    .block1 {
        padding: 80px 60px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .card {
        min-width: 100%;
        height: 85vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card1.png");
        background-size: cover;
        background-position: center;
    }

    .card2 {
        min-width: 100%;
        height: 85vh;
        display: flex;
        justify-content: center;
    }

    .card3 {
        min-width: 100%;
        height: 85vh;
        display: flex;
        justify-content: center;
        background-image: url("/photo/card3.png");
        background-size: cover;
        background-position: center;
    }

    .card-inner {
        max-width: 1200px;
        width: 100%;
        padding: 30px 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }

    .card-tcont {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
        z-index: 1000;
    }

    .card-cont {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 100px;
    }

    .card-cont svg {
        width: 400px;
        margin-left: 50px;
        z-index: 0;
    }

    .kk {
        width: 250px;
        margin-left: 40px;
    }

    .tc {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }


    .tggl-container {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .toggles-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        border-radius: 30px;
    }

    .slider-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .slider {
        display: flex;
        transition: transform 0.5s ease;
    }

    .controls {
        display: flex;
        gap: 40px;
        align-self: flex-end;
    }

    .arrow {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .arrow svg {
        width: 40px;
    }

    .card-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 40px;
    }

    .card-sm {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 20px 20px;
        height: 200px;
    }

    .card-sm-blank {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 20px 20px;
        height: 200px;
    }

    .card-blue {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        padding: 24px 20px;
        height: 200px;
    }

    .card-blue svg {
        width: 80px;
        align-self: flex-end;
    }

    footer {
        width: 100%;
        padding: 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 40px;
    }


    .footer-logo {
        align-self: center;
        width: auto;
        height: 60px;
    }

    .footer-content {
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 550px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        width: 500px;
    }

    .footer-column .t1 {
        width: 500px;
    }

    .media-bttns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .media-bttn {
        width: 40px;
        height: 40px;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

@media (max-width: 480px) {
    .t1 {
        font-size: 16px;
        font-weight: 400;
        max-width: 400px;
    }

    .t2 {
        font-size: 14px;
        font-weight: 400;
        max-width: 400px;
        max-width: 250px;
        white-space: wrap;
    }

    a {
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    .h2 {
        font-size: 50px;
        font-weight: 500;
    }

    .h3 {
        font-size: 28px;
        font-weight: 400;
    }

    .h4 {
        font-size: 20px;
        font-weight: 600;
        max-width: 400px;
    }

    .h5 {
        font-size: 20px;
        font-weight: 400;
    }

    .number {
        font-size: 80px;
        font-weight: 500;
    }

    .white {
        color: #FAF9F6;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        padding: 10px 20px;
        z-index: 2000;
        box-shadow: 0 8px 24px rgba (0, 0, 0, 0.1);
    }

    .logo {
        height: 50px;
    }

    .btns-mob {
        display: flex;
        flex-direction: column;
        gap: 40px;
        visibility: visible;
        opacity: 1;
    }

    .btns {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .btns .h4 {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .menu-btn {
        display: none;
        visibility: hidden;
        opacity: 0;
    }


    .menu-btn2 {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .menu-btn-mob {
        height: 46px;
        background-color: #F98A24;
        border: none;
        border-radius: 15px;
        color: #FAF9F6;
        font-family: 'Work Sans', sans-serif;
        font-size: 20px;
        padding: 0 20px;
    }

    .menu-btn2-mob {
        height: 46px;
        background-color: #FAF9F6;
        border: 2px #F98A24 solid;
        border-radius: 15px;
        color: #2E3A59;
        font-size: 20px;
        padding: 0 20px;
    }



    .burger {
        height: 46px;
        background: none;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        z-index: 2200;
        cursor: pointer;
        transition: background-color 0.25s ease, border-color 0.25s ease;
    }

    .burger span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .side-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        padding: 120px 20px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .side-menu.active {
        right: 0;
    }

    .side-menu-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .hero {
        width: 100%;
        height: 100vh;
        padding: 100px 20px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .hero svg {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

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

    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .line-container {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .btns { 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
    }

    .btn {
        margin-top: 80px;
        height: 55px;
        width: 100%;
        border: none;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
    }

    .btn2 {
        height: 55px;
        width: 100%;
        border-radius: 15px;
        font-size: 20px;
        padding: 0 20px;
    }

    .block1 {
        padding: 80px 20px 0!important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .block1 .btn {
        margin: 0;
    }

    .block {
        padding: 80px 20px 0!important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .card-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 40px;
    }

    .card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        height: 120vh;
    }

    .card2 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        height: 120vh;
    }

    .card3 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        height: 120vh;
        background-image: none;
    }

    .card3 .t1, .h3 {
        max-width: 300px;
    }


    .card2 .t1, .h3 {
        max-width: 300px;
    }

    .card2 svg {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .card-inner {
        max-width: 1200px;
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .card-tcont {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
        z-index: 1000;
    }

    .tggl-container {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .toggles-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
    }

    .toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 15px;
        border-radius: 30px;
    }

    .tc {
        gap: 15px;
    }

    .card-sm {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 40px;
        padding: 20px 20px;
        height: 160px;
    }

    .card-sm-blank {
        display: none;
        visibility: hidden;
        opacity: 0;
    }   
    
    .footer {
        width: 100%;
        padding: 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }


    .footer-logo {
        align-self: flex-start;
        width: auto;
        height: 60px;
    }

    .footer-content {
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
    }
}



