@font-face {
    font-family: 'EBGaramond';
    src: url('../fonts/EBGaramond-VariableFont_wght.ttf');
}



:root{
    --bg-color: #996EEE;
    --main-color: #df7447;
    --card-bg: #704fb0;
}


body{
    background-color: var(--bg-color);
    font-family: "EBGaramond" !important;
}
*{
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.container-1{
    max-width: 944px;
    margin: 0 auto;
    width: 100%;
}

.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}
.logo{
    background: var(--main-color);
    border-radius: 50px;
    padding: 10px;
}
.logo img{
    width: 200px;
    /*height: 200px*/
}
.current{
    color: var(--main-color);
}
.navigation-menu ul {
    display: flex;
    align-items: center;
    border-radius: 60px;
    padding: 14px 24px;
}
.navigation-menu ul li{
    padding-right: 32px;

    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #EBEBEB;
}
.home{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;

}

.banner-txt{
    width: 50%;
    padding-right: 56px;
}
.header-banner{
    display: flex;
    height: 450px;
}

.banner-txt span{
     
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    color: var(--main-color);
}
.banner-txt h1{
     
    font-size: 55px;
    font-weight: 700;
    line-height: 80px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 16px;
}
.banner-txt h2{
     
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
    color: #EBEBEB;
    padding-top: 16px;
}
.banner-txt p{
     
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #EBEBEB;
    padding-top: 16px;
}
.banner-img{
    width: 50%;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.banner-img img{
    object-fit: cover;
    width: 350px;
    height: 240px;
    box-shadow: 0px 24px 80px 0px #000000CC;
    border-radius: 8px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.download-form{
    background: #FFFFFF1A;
    border: 2px solid var(--main-color);
    backdrop-filter: blur(80px);
    border-radius: 8px;
    width: 100%;
    height: 252px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.download-form h3{
     
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    color: var(--main-color);
    padding-top: 40px;
}
.downloadBtn button{
    background-color: var(--main-color);
    padding: 8px 40px;
    border-radius: 8px;
    
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #0E0E0E;
    margin-top: 30px;
    transition: 0.2s;
}
.downloadBtn button:hover{
    transform: scale(1.05);
}
.arrow::before{
    position: absolute;
    content: url("/img/Vector 5.png");
    top: 570px;
    left: 470px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7410%) hue-rotate(296deg) brightness(93%) contrast(110%);
}
.introduction-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px 56px;
    gap: 40px;
}
.introduction-container img{
    width: 400px;
    border-radius: 8px;
    box-shadow: 0px 24px 80px 0px #000000CC;
}
.introduction-container p{
     
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
}
.introduction{
    margin-top: 100px;
}
.introduction h2{
     
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 40px;
}
.benefits-txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.benefits-txt h2{
     
    font-size: 35px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
}
.benefits-txt img{
    width: 100%;
    box-shadow: 0px 24px 80px 0px #000000CC;
    border-radius: 8px;
}
.benefits{
    display: grid;
    grid-template-columns: 467px 1fr;
    gap: 85px;
    margin-top: 80px;

}
.reverse {
    grid-template-columns: 1fr 467px;
}
.benefits-container{
    position: relative;
}
.benefits-card{
    background-color: var(--card-bg);
    box-shadow: 0px 24px 80px 0px #0000004D;
    display: flex;
    align-items: center;
    
    border-radius: 8px;
    margin-top: 50px;
    padding: 16px;
}
.benefits-card img{
    padding-right: 16px;
}
.benefits-card p{
     
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #EBEBEB;
}

.footer-logo img{
    width: 100px;
}
.footer-logo{
    background-color: var(--main-color);
    width: fit-content;
    height: fit-content;
    border-radius: 50px;
    padding: 15px;
}
.footer-top{
    display: grid;
    grid-template-columns: 200px 1fr;
}
.disclaimer div{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.disclaimer img{
    width: 50px;
    background-color: #FFFFFF;
    border-radius: 50%;
    margin-left: 20px;
}
.disclaimer h3{
     
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #FFFFFFE5;
}
.disclaimer p {
     
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFFE5;
}
footer{
    margin-top: 100px;
}
.footer-bottom{
    border-top: 1px solid var(--main-color);
    display: flex;
     
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    justify-content: space-between;
    padding: 28px 0;
    margin-top: 24px;
}
.footer-menu ul{
    display: flex;
}
.footer-menu ul li{
    padding-right: 40px;
}
.banner-header h1{
     
    font-size: 64px;
    font-weight: 700;
    line-height: 80px;
    text-align: center;
    color: #FFFFFF;
}
.banner-header h2{
     
    font-size: 40px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 16px;
}
.banner-header p{
     
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    color: #EBEBEB;
    padding-top: 16px;
}
.main-content{
    margin-top: 80px;
}
.main-content h2 {
     
    font-size: 45px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
    color: #FFFFFF;
}
.main-content h3{
     
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
    color: #FFFFFF;
}
.main-content h4{
     
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    color: #FFFFFF;
}
.main-content h5{
     
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: #FFFFFF;
}
.main-content img{
    width: 100%;
    height: 400px;
    margin-top: 40px;
}
.main-content p, .main-content ul li{
     
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    color: #EBEBEB;
}
.main-content ul li {
    list-style: disc;
    margin-left: 20px;
}
table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    border: 1px solid #ddd;
}
th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}
th {
    background-color: var(--main-color);
    color: white;
}
tr {
    background-color: #f2f2f2;
}
.table {
    margin-top: 40px;
}
.table h2{
     
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
}
.banner-box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.banner-box-card{
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    height: 136px;
    align-items: center;
}
.banner-box-card div{
    display: flex;
    flex-direction: column;
    padding-left: 16px;
}
.banner-box-card span{
     
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    color: #FFFFFF;
}
.banner-box-card a{
     
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #EBEBEB;
}
.contact{
    margin-top: 40px;
    width: 664px;
}
.contact h3{
     
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
}
.contact p{
     
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    color: #EBEBEB;
    padding-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"]{
    width: 100%;
    background-color: inherit;
    padding: 16px 16px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    margin-bottom: 16px;
}
.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder{
     
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    color: #FFFFFFB2;
}
.textarea{
    height: 112px;
}
label{
     
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #EBEBEB;
}
.form-btn{
    display: flex;
    justify-content: center;
}
.form-btn button{
    padding: 8px 40px;
     
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    background-color: var(--main-color);
    border-radius: 8px;
    margin-top: 8px;
}
h1 {
    word-wrap: break-word; /* Переносить довгі слова */
    white-space: normal; /* Дозволяє переноси на новий рядок */
}
.main-text{
     
    color: white;
}
.main-text ul li{
    list-style: disc; /* Повертає крапочки для елементів списку */
    margin-left: 20px;
     
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #FFFFFFE5;

}
@media (max-width: 767px) {
    /* Стилі для іконки гамбургер-меню */
    .hamburger-menu {
        display: block;
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
        z-index: 1001; /* Щоб іконка була зверху меню */
    }

    .hamburger-menu span {
        background-color: #ffffff;
        display: block;
        height: 3px;
        margin: 6px 0;
        width: 100%;
        transition: all 0.3s ease;
    }

    /* Відображення іконки хрестика при відкритті меню */
    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Основне навігаційне меню */
    .navigation-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bg-color);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navigation-menu ul {
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        align-items: flex-start;
    }

    .navigation-menu ul li {
        list-style: none;
        margin: 20px 0;
    }

    .navigation-menu ul li a {
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        text-align: left;

    }

    /* Відкриття меню на весь екран */
    .navigation-menu.open {
        display: flex;
    }

    .header {
        padding: 20px 16px;
    }
    .header-banner{
        flex-direction: column;
        padding: 0 16px;
        height: auto;
    }
    .banner-txt{
        width: 100%;
        padding-right: 0;
    }
    .banner-img {
        width: 100%;
        position: relative;
        display: flex;
        align-items: flex-end;
    }
    .banner-img img {
        width: 280px;
        height: 260px;
        box-shadow: 0px 24px 80px 0px #000000CC;
        border-radius: 8px;
        position: absolute;
        z-index: 1;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .arrow{
        display: none;
    }
    .banner-txt h1 {
         
        font-size: 40px;
        line-height: 56px;
        text-align: center;
        color: #FFFFFF;
        padding-top: 16px;
    }
    .banner-txt h2{
    text-align: center;
    }
    .banner-txt span{
        display: none;
    }
    .banner-txt p {
         
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        text-align: left;
        color: #EBEBEB;
        padding-top: 16px;
    }
    .download-form{
        margin-top: 220px;
    }
    .introduction-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        background-color: var(--card-bg);
        border-radius: 16px;
        padding: 24px 16px;
        gap: 32px;
    }
    .introduction-container img{
        width: 100%;
    }
    .introduction h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 48px;
        text-align: center;

    }
    .introduction{
        padding: 0 16px;
    }
    .benefits{
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        padding: 0 16px;
        margin-top: 56px;
    }
    .benefits-card {
        background-color: var(--card-bg);
        box-shadow: 0px 24px 80px 0px #0000004D;
        display: flex;
        align-items: center;
        width: 100%;
        border-radius: 8px;
        position: inherit;
        padding: 16px;
        margin-bottom: 16px;
    }
    .benefits-1{
        top: 0;
        left: 0;
    }
    .benefits-2{
        top: 0;
        left: 0;
    }
    .benefits-3{
        bottom: 0;
        left: 0;
    }
    .footer-top {
        display: grid;
        grid-template-columns: repeat(1 ,1fr);
    }
    .footer-bottom{
        flex-direction: column-reverse;
    }
    .footer-menu ul{
        flex-direction: column;
    }
    .footer-menu ul li{
        padding-bottom: 16px;
    }
    footer{
        margin-top: 56px;
        padding: 0 32px;
    }
    .banner-header h1{
        font-size: 40px;
        font-weight: 700;
        line-height: 56px;
        text-align: center;

    }
    .banner-header{
        padding: 0 16px;
    }
    .banner-header h2{
        font-size: 25px;
        font-weight: 700;
        line-height: 30px;
        text-align: center;
    }
    .banner-header p{
        font-size: 16px;
        font-weight: 400;
        line-height: 32px;
        text-align: center;

    }
    .main-content{
        margin-top: 40px;
        padding: 0 16px;
    }
    .main-content h3{
        font-size: 32px;
        font-weight: 700;
        line-height: 48px;
        text-align: center;

    }
    .main-content h4{
         
        font-size: 30px;
        font-weight: 700;
        text-align: left;
        color: #FFFFFF;
    }
    .main-content h5{
         
        font-size: 20px;
        font-weight: 700;
        text-align: left;
        color: #FFFFFF;
    }
    .main-content img{
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }
    .main-content p, .main-content ul li{
         
        font-size: 14px;
        font-weight: 400;
        line-height: 32px;
        text-align: left;
        color: #EBEBEB;
    }
    .main-content ul li {
        list-style: disc;
        margin-left: 20px;
    }
    .table{
        padding: 0 16px;
    }
    .contact{
        margin-top: 40px;
        width: 100%;
        padding: 0 16px;
    }.banner-box {
         display: grid;
         grid-template-columns: repeat(1, 1fr);
         gap: 40px;
         margin-top: 40px;
    }
    .main-text{
        padding: 0 16px;
    }

}

.icon{

    height: 50px;
}

.bannerr {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 100000;
    background: #000000cc;
    display: none;

}

.banner_block {
    background: #FFFFFF1A;
    border: 2px solid var(--main-color);
    position: absolute;
    width: 760px;
    padding: 88px 64px;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(80px);
    border-radius: 8px;
}

.banner_block .banner_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 57.6px;
    text-align: center;

}

.banner_block .banner_buttons {
    display: flex;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
}

.banner_block .banner_buttons button {
    padding: 16px 25px;
    text-align: center;
    width: 250px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 8px;
}

#bannerButtonYes {
    background-color: var(--main-color);
    color: black;
}

.banner_title p {
    margin: 40px 0;

    color: var(--main-color);
    text-align: center;
}

.banner_atent {
    text-align: center;
    font-size: 14px;
    color: #202020;
    padding: 20px 50px;
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    padding: 10px 20px;
}

@media screen and (max-width: 580px) {
    .container {
        padding: 0 15px;
        width: 320px;
    }

    .header_line {
        padding: 30px 0;
    }

    .navigation-menu ul li {
        font-size: 14px;
        margin: 0 5px;
    }

    .header_banner h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .banner_block .banner_buttons button {
        padding: 10px 25px;
        text-align: center;
        font-size: 16px;
    }

    .banner_block {
        width: 320px;
        padding: 30px 20px;
    }

    .banner_atent {
        font-size: 10px;
        margin-top: 15px;
        padding: 0 10px;
    }

    .banner_buttons {
        flex-direction: column-reverse;
    }

    #bannerButtonYes {
        margin-bottom: 20px;
    }

    .banner_title p {
        font-size: 24px;
        font-weight: 400;
        line-height: 31.2px;
        text-align: center;

    }
}