*,
*::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;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.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;
}

.number {
    font-family: 'Ivy Ora Display', serif;
    src: url(/font/IvyOraDisplay.woff2) fotmat('woff2');
    font-size: 100px;
    font-weight: 500;
    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;
    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: #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;
}

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

.burger {
    height: 46px;
    background: none;
    border: 2px #F98A24 solid;
    border-radius: 15px;
    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);
}

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

.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: calc(100vh - 100px);
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hero svg {
    width: 591px;
}

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

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

.line-container {
    background-color: #19316E;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 60px 10px;
    height: 60px;
    z-index: 1000;
}

.line {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}


.circle {
    width: 8px;
    height: 8px;
    background-color: #FAF9F6;
    border-radius: 30px;
}

.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 #F98A24 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 {
    padding: 80px 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.card-container {
    width: 100%;
    display: flex;
    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: 40px;
    background-color: #E6F3FB;
    padding: 20px 20px;
    height: 600px;
}

.card-list {
    padding-left: 20px;
}

.card-list li {
    color: #05347B;
    padding-bottom: 20px;
}

.bttn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card2 {
    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;
}

.card2 svg {
    align-self: flex-end;
}

.card3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    background-color: #E6F3FB;
    padding: 20px 20px;
    height: 300px;
}

.slider-wrapper {
    overflow: hidden;
}


.slider {
    display: flex;
    gap: 40px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.slider::-webkit-scrollbar {
    display: none;
}

.card4 {
    flex: 0 0 calc((100vw - 120px - 80px) / 3);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    background-color: #19316E;
    padding: 0 20px;
    height: 310px;
}

.card4 .t1 {
    padding-top: 20px;
}

.card4 .h5 {
    padding-bottom: 10px;
}

.review {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.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;
}

.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) {
    .t1 {
        font-size: 36px;
        font-weight: 400;
        max-width: 1000px;
        line-height: 1.2;
    }

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

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

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

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

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

    .white {
        color: #FAF9F6
    }

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

    .logo {
        height: 120px;
    }

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

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

    .burger {
        height: 90px;
        padding: 0 30px;
        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: -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: calc(100vh - 140px);
        padding: 300px 420px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .hero svg {
        align-self: center;
        margin-left: 300px;
        width: 1000px;
    }

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

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

    .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;
    }

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

    .card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 80px;
        padding: 50px 70px;
        height: 1300px;
        width: 100%;
    }

    .card-list li {
        padding-bottom: 30px;
    }

    .card svg {
        width: 100px;
    }

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

    .btn {
        height: 120px;
        border: none;
        border-radius: 20px;
        color: white;
        font-family: 'Work Sans', sans-serif;
        font-size: 36px;
        padding: 0 60px;
    }

    .btn2 {
        height: 120px;
        border-radius: 20px;
        color: #2E3A59;
        font-family: 'Work Sans', sans-serif;
        font-size: 36px;
        padding: 0 60px;
    }

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

    .card2 svg {
        width: 160px;
    }

    .card3 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
        padding: 70px 70px;
        height: 640px;
    }

    .card4 {
        flex: 0 0 calc((100vw - 120px - 80px) / 3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 70 70px;
        height: 700px;
    }

    .review {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
        margin-right: 20px;
    }

    .card4 .t1 {
        padding: 70px 70px 0;
    }

    .card4 .h5 {
        padding: 70px 70px 40px;
    }

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

    .arrow svg {
        width: 60px;
    }

    .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 white;
        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;
    }

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

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

    .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;
    }

    .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: -960px;
        width: 960px;
        height: 100vh;
        padding: 260px 80px 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: 80px;
    }

    .hero {
        width: 100%;
        height: calc(100vh - 230px);
        padding: 200px 320px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .hero svg {
        align-self: center;
        margin-left: 100px;
        width: 800px;
    }

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

    .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-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 60px;
    }

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

    .card-list li {
        padding-bottom: 30px;
    }

    .card svg {
        width: 80px;
    }

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

    .btn {
        height: 100px;
        border: none;
        border-radius: 20px;
        color: white;
        font-family: 'Work Sans', sans-serif;
        font-size: 32px;
        padding: 0 40px;
    }

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

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

    .card2 svg {
        width: 120px;
    }

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

    .card4 {
        flex: 0 0 calc((100vw - 120px - 80px) / 3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 40 40px;
        height: 520px;
    }

    .review {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
        margin-right: 20px;
    }

    .card4 .t1 {
        padding: 40px 20px 0;
    }

    .card4 .h5 {
        padding: 20px;
    }

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

    .arrow svg {
        width: 50px;
    }

    .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;
    }

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

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

    .h4 {
        font-size: 28px;
        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: 120px;
        padding: 30px 240px;
    }

    .logo {
        height: 80px;
    }

    .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: calc(100vh - 210px);
        padding: 160px 240px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .hero svg {
        align-self: center;
        margin-left: 100px;
        width: 700px;
    }

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

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

    .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-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 60px;
    }

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

    .card-list li {
        padding-bottom: 30px;
    }

    .card svg {
        width: 80px;
    }

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

    .btn {
        height: 80px;
        border: none;
        border-radius: 20px;
        font-family: 'Work Sans', sans-serif;
        font-size: 28px;
        padding: 0 40px;
    }

    .btn2 {
        height: 80px;
        border-radius: 20px;
        font-family: 'Work Sans', sans-serif;
        font-size: 28px;
        padding: 0 40px;
    }

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

    .card2 svg {
        width: 120px;
    }

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

    .card4 {
        flex: 0 0 calc((100vw - 120px - 80px) / 3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 0 40px 40px;
        height: 520px;
    }

    .review {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
        margin-right: 20px;
    }

    .card4 .t1 {
        padding: 40px 20px 0;
    }

    .card4 .h5 {
        padding: 20px;
    }

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

    .arrow svg {
        width: 50px;
    }

    .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;
    }

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

    .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: calc(100vh - 170px);
        padding: 100px 120px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .hero svg {
        align-self: center;
        margin-left: 100px;
        width: 600px;
    }

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

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

    .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 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 60px;
        padding: 30px 40px;
        height: 910px;
        width: 100%;
    }

    .card svg {
        width: 60px;
    }

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

    .btn {
        height: 60px;
        border: none;
        border-radius: 15px;
        font-family: 'Work Sans', sans-serif;
        font-size: 24px;
        padding: 0 40px;
    }

    .btn2 {
        height: 60px;
        border-radius: 15px;
        font-size: 24px;
        padding: 0 40px;
    }

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

    .card2 svg {
        width: 100px;
    }

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

    .card4 {
        flex: 0 0 calc((100vw - 120px - 80px) / 3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 0 40px 40px;
        height: 540px;
    }

    .review {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
        margin-right: 20px;
    }

    .card4 .t1 {
        padding: 40px 20px 0;
    }

    .card4 .h5 {
        padding: 20px;
    }

    .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;
    }

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

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

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

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

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

    .white {
        color: #FAF9F6;
    }

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

    .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;
        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: calc(100vh - 150px);
        padding: 60px 100px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .hero svg {
        align-self: center;
    }

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


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

    .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-container {
        width: 100%;
        display: flex;
        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: 40px;
        padding: 20px 30px;
        height: 770px;
        width: 100%;
    }

    .card svg {
        width: 40px;
    }

    .card-list {
        padding-left: 20px;
    }

    .card-list li {
        padding-bottom: 20px;
    }

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

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

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

    .card2 svg {
        width: 80px;
    }

    .card3 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 30px;
        height: 400px;
    }

    .card4 {
        flex: 0 0 calc((100vw - 120px - 80px) / 3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 0 20px 20px;
        height: 470px;
    }

    .card4 .t1 {
        padding: 20px 0 0 0;
    }

    .card4 .h5 {
        padding-bottom: 10px;
    }

    .review {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
    }

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

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

    .arrow svg {
        width: 30px;
    }

    .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;
    }

}

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

    a {
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    .h2 {
        font-size: 72px;
        font-weight: 500;
        line-height: 1.1;
    }

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

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

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

    .number {
        font-size: 100px;
        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 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;
    }

    .menu-btn2 {
        height: 46px;
        border-radius: 15px;
        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;
    }

    .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: calc(100vh - 100px);
        padding: 40px 60px 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
    }

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

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

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

    .line {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        z-index: 1000;
    }

    .circle {
        width: 8px;
        height: 8px;
        border-radius: 30px;
    }

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

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

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

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

    .card-container {
        width: 100%;
        display: flex;
        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: 40px;
        padding: 20px 20px;
        height: 600px;
    }

    .card svg {
        width: 40px;
    }

    .card-list {
        padding-left: 20px;
    }

    .card-list li {
        padding-bottom: 20px;
    }

    .bttn-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

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

    .card2 svg {
        align-self: flex-end;
    }

    .card3 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 20px;
        height: 300px;
    }

    .slider-wrapper {
        overflow: hidden;
    }

    .slider {
        display: flex;
        gap: 40px;
        transition: transform 0.4s ease;
        will-change: transform;
    }

    .slider::-webkit-scrollbar {
        display: none;
    }

    .card4 {
        flex: 0 0 calc((100vw - 120px - 80px) / 3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 0 20px;
        height: 360px;
    }

    .card4 .t1 {
        padding-top: 20px;
    }

    .card4 .h5 {
        padding-bottom: 10px;
    }

    .review {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

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

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

    .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: 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;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    } 
}

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

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

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

    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: 40px;
        padding: 20px 20px;
        height: 100%;
    }

    .card svg {
        width: 40px;
    }

    .card-list {
        padding-left: 20px;
    }

    .card-list li {
        padding-bottom: 20px;
    }

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

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

    .card3 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 20px;
        height: 100%;
    }

    .card4 {
        min-width: 320px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 0 20px 20px;
        height: 100%;
    }

    .card4 .t1 {
        padding-top: 20px;
    }

    .card4 .h5 {
        padding-bottom: 0;
    }

    .review {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
    }

    .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;
    }
}



