*,
*::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;
    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;
    color: #2E3A59;
    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: #CF7426;
    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: 70vh;
    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;
}

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

footer {
    margin-top: 60px;
    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-bttn svg {
    width: 20px;
}

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

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

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


    .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;
        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: 70vh;
        padding: 350px 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: 100px;
    }


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

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


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

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

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

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


    .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: -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: 70vh;
        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: 80px;
    }


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

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


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

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

    .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: 70vh;
        padding: 200px 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;
    }


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

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

    .btn {
        height: 80px;
        border: none;
        border-radius: 20px;
        font-size: 28px;
        padding: 0 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;
        max-width: 1250px;
    }

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

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


    .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: 70vh;
        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 {
        margin-top: 120px;
        width: 700px;
    }

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

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

    .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: 70vh;
        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;
    }


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

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

.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;
    transition: background-color 0.25s ease, text-decoration 0.25s ease;
}


.menu-btn2 {
    height: 46px;
    border-radius: 15px;
    color: #2E3A59;
    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;
    background: #2E3A59;
    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: 70vh;
    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;
}

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

footer {
    margin-top: 60px;
    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-bttn svg {
    width: 20px;
}
}

@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;
        background: #2E3A59;
        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: 70vh;
        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;
    }

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

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

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



