/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    position: absolute;
    font-family: "Inter", sans-serif;
}
body, html {
    overflow-x: hidden;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
}
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000; /* або більше, якщо треба */
    background: #fff; /* або твій фон */
}

.header__container{
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
}
.header__logo{
    display: flex;
    align-items: center;
    gap: 30px;
}
.header__main h1{
    color: #e63934;
    text-align: center;
    /*font-family: "Irish Grover";*/
    font-size: 42px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.header__navigation{
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease-in-out;
}
.header__navigation a{
    color: #343434;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.2s;
}
.header__navigation a:hover{
    text-decoration: underline;
}
.header__buttons{
    display: flex;
    gap: 15px;
}
.header__buttons a{
    width: 135px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(180deg, #E40004 0%, #C17100 100%);
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: 0.3s;
    border: #E40004 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__buttons a:hover{
    background: none;
    color: #e63934;
    border: #e63934 2px solid;
    transition: 0.3s;
}

.burger {
    display: none;
    font-size: 30px;
    color: red;
    cursor: pointer;
}
/*--------------------*/
.hero{
    background: #ffe7e7;
    padding: 0 20px;
    background-image: url("../images/hero-back.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero__container{
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 150px 10px;
}
.hero__container h2{
    color: #000;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 45px;
}
.hero__container p{
    color: #565656;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 45px;
}
.hero__buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.hero__buttons button{
    border-radius: 22px;
    background: #e63934;
    width: 254px;
    height: 70px;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    transition: 0.2s;
}
.hero__buttons button:hover{
    background: #FFFFFF;
    color: #e63934;
    transition: 0.2s;
}
.hero__buttons a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #e63934;
    width: 254px;
    height: 70px;
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    transition: 0.2s;
}
.hero__buttons a:hover{
    background: #FFFFFF;
    color: #e63934;
    transition: 0.2s;
}
/*--------------------*/
.trust-block {
    max-width: 1250px;
    margin: 0 auto;
    background: #fff;
    text-align: center;
    padding: 40px 10px;
}
.trust-title-green {
    color: #e63934;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.trust-desc {
    color: #565656;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 35px;
    margin-top: 10px;
}
.trust-items {
    display: flex;
    justify-content: space-between;
}
.trust-item {
    flex: 1 1 250px;
    max-width: 350px;
    min-width: 220px;
    background: none;
    text-align: center;
    cursor: pointer;
    /*transition: transform 0.4s cubic-bezier(.38,1.07,.55,.98);*/
}
.trust-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(17,203,161,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(.38,1.07,.55,.98);
}
.trust-circle{
    background: linear-gradient(180deg, #E40004 0%, #C17100 100%);
}
.trust-circle img {
    transition: transform 0.4s cubic-bezier(.38,1.07,.55,.98);
    will-change: transform;
}
.trust-item h3 {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 10px;
}
.trust-item p {
    color: #565656;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.trust-circle:hover {
    transform: rotate(5deg) scale(1.05);
    z-index: 2;
}
.trust-item:hover .trust-circle {
    transform: rotate(10deg) scale(1.10);
}
.trust-item:hover .trust-circle img {
    transform: rotate(7deg) scale(1.15);
}





/*--------------------*/
.reg{
    background: #ffe7e7;
    padding: 55px 0;
}
.reg__container{
    max-width: 1050px;
    margin: 0 auto;
}
.reg__title{
    margin-bottom: 55px;
}
.reg__title h2{
    color: #e63934;
    text-align: center;
    font-size: 47px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 10px;
}
.reg__title h3{
    color: #565656;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.reg__blocks{
    display: flex;
    justify-content: space-between;
}
.reg__block{
    width: 269px;
    min-height: 341px;
    border-radius: 27px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 3s cubic-bezier(.22,1,.36,1);
    will-change: transform;
    perspective: 900px;
    background: #FFFFFF;
}
.reg__block:hover {
    /* Повертаємо навколо осі Y */
    transform: rotateY(360deg) scale(1.15);
    z-index: 2;
}
.reg__block img{
    margin-bottom: 20px;
}
.reg__block h3{
    color: black;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 22px;
}
.reg__block p{
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
    color: black;
    min-height: 85px;
}
.reg__block button{
    border-radius: 22px;
    background: #e63934;
    width: 217px;
    height: 42.344px;
    color: white;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    transition: 0.2s;
}
.reg__block button:hover{
    background: none;
    color: #e63934;
    border: #e63934 2px solid;
    transition: 0.2s;
}
/*--------------------*/
.bonus__container{
    max-width: 1060px;
    min-height: 290px;
    margin: 0 auto;
    padding: 0 43px;
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    background: url('../images/bonus_block.png') no-repeat center center/cover;
    height: auto;
    position: relative;
    align-items: center;
}
.bonus__text h2{
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 40px;
}
.bonus__text p{
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.bonus__max h3{
    color: #FFF;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}
.bonus__max h2{
    color: #FFF;
    text-align: center;
    font-size: 53px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 25px;
}
.bonus__max button{
    border-radius: 22px;
    background: #FFF;
    width: 217px;
    height: 42.344px;
    transition: 0.2s;
    border: white 2px solid;
    font-weight: 600;
    font-size: 18px;
}
.bonus__max button:hover{
    border: white 2px solid;
    background: none;
    color: #FFFFFF;
    transition: 0.2s;
}
/*--------------------*/
.choose{
    padding-top: 40px;
}
.choose__title h2{
    color: #e63934;
    text-align: center;
    font-size: 47px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px; /* 59.574% */
}
.hero__blocks{
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 10px;
}
.hero__blocks-block{
    display: flex;
    width: 298px;
    height: 150px;
    padding: 17px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #e88700;
    backdrop-filter: blur(2px);
    transition: height 0.7s ease, margin-top 0.7s ease, color 0.7s ease;
}
.hero__blocks-block h2{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.hero__blocks-block p{
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.hero__blocks-block span{
    color: #530000;
}
.hero__blocks-block:hover{
    height: 170px;
    margin-top: -20px;
    background: #ff4646;
    transition: 0.7s;
}
.hero__blocks-block:hover.hero__blocks-block p,
.hero__blocks-block:hover.hero__blocks-block h2,
.hero__blocks-block:hover.hero__blocks-block span{
    color: white;
    font-weight: 600;
    transition: 0.7s;
}
/*--------------------*/
.disclaimer{
    background: #ffe7e7;
    padding: 50px 0;
}
.disclaimer__container{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.disclaimer__eighteen{
    border-radius: 15px;
    background: #e63934;
    padding: 10px 30px;
    color: #FFF;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 800;
    line-height: 23px; /* 121.053% */
    margin-bottom: 20px;
}
.disclaimer__text p{
    color: #565656;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 800;
    line-height: 23px; /* 121.053% */
}
/*--------------------*/
.animated-block {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.38,1.07,.55,.98), transform 0.7s cubic-bezier(.38,1.07,.55,.98);
    will-change: opacity, transform;
}

.animated-block.visible {
    opacity: 1;
    transform: translateY(0);
}
/*--------------------*/
footer{background-color: #4d1919;color: #FFFFFF;}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
}
.footer-section {flex: 1;}
.footer-section h3, .footer-section h4 {margin-bottom: 10px;font-size: 28px;}
.footer-section ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}
.footer-section a{
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: underline;
}
.footer-section p{margin-bottom: 20px;font-size: 16px;}
.social-icons a {margin-right: 10px;}
.social-icons img {width: 24px;height: 24px;}
.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #320a0a;
}
.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-section h3, .footer-section h4 {margin-bottom: 10px;font-size: 28px;}
.footer-section ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}
.footer-section a {
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: underline;
}
.footer-section p {margin-bottom: 20px;font-size: 16px;}
.footer-gamble{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.footer-gamble img {
    width: 200px;
    height: auto;
    display: inline-block;
}
/*--------------------*/
.about{
    padding: 50px 20px;
}
.about__container{
    max-width: 1200px;
    margin: 0 auto;
}
.about-title{
    color: red;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 40px;
}
.about__main{
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
.about__main-text{
    max-width: 600px;
    color: #565656;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.about__main-blocks{
    /*max-width: 600px;*/
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 30px;
}
.about__main-blocks_block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 237.881px;
    padding: 30px;
    min-height: 275px;
    border-radius: 29px;
    background: #FFD3D3;
}
.about__main-blocks_block h3{
    font-size: 32px;
}
.about__main-blocks_block h2{
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.about__main-blocks_block p{
    color: #646464;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.about__second{
    margin-top: 40px;
}
.about__second-title{
    color: red;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 15px;
}
.about__second-text{
    color: #565656;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.about__second-block{
    background: #FFD3D3;
    padding: 40px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 25px;
    text-align: center;
}
.about__second-block h2{
    font-size: 52px;
    color: red;
    font-weight: 700;
}
.about__second-block p{
    font-size: 21px;
    font-weight: 600;
    margin-top: 10px;
}
.information{
    margin-bottom: 40px;
}
.information__container{
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    background: #FFD3D3;
    padding: 40px 60px;
}
.information__title{
    color: red;
    text-align: center;
    font-size: 47px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 20px;
}
.information__main-text h2{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}
.information__main-text p{
    color: #565656;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
.information__main-disclaimer p{
    color: #565656;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
/*--------------------*/
@media(max-width: 1150px){
    .about__main{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .about__main-blocks{
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 1100px) {
    .burger {
        display: block;
        font-size: 45px;
        font-weight: 800;
    }
    .header__container{
        display: flex;
        justify-content: space-between;
        padding: 30px;
        align-items: center;
    }
    .header__navigation{
        position: absolute;
        top: 138px;
        right: 0;
        background: linear-gradient(91deg, #641818 28.34%, #b84646 98.02%);        width: 300px;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        transform: translateX(100%);
        box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    .header__navigation .header__button2{
        display: block;
    }
    .header__button{
        display: none;
    }
    .header__navigation a{
        margin: 10px 0;
        font-size: 24px;
        font-weight: 800;
    }
    .header__navigation a{
        color: #FFFFFF;
    }
    .nav-button a{
        font-size: 16px;
    }
    .header__navigation.active{
        transform: translateX(0);
    }
    .header__logo1{
        display: block;
        font-size: 32px;
        color: white;
        font-weight: 600;
    }
    .steps__main{
        gap: 0;
    }
}
@media(max-width: 940px){
    .hero__blocks{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media(max-width: 840px){
    .reg__blocks{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .bonus__container{
        display: flex;
        flex-direction: column;
        padding: 50px 10px;
        text-align: center;
    }
}
@media(max-width: 730px){
    .trust-items{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero{
        background-image: url("../images/hero-back-mini.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
@media(max-width: 665px){
    .header__container{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .header__navigation{
        position: absolute;
        top: 232px;
    }
    header{
        position: relative;
    }
}
@media(max-width: 580px){
    .footer-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .about__second-block h2{
        font-size: 33px;
    }
    .about__second-block p{
        font-size: 18px;
    }
}
@media(max-width: 500px){
    .hero__container{
        padding: 80px 10px;
    }
    .hero__container h2{
        font-size: 42px;
    }
    .hero__container p{
        font-size: 21px;
    }
    .hero__buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .information__container{
        padding: 40px 20px  ;
    }
}
@media(max-width: 400px){
    .trust-title-green{
        font-size: 36px;
    }
    .trust-desc{
        font-size: 15px;
    }
    .about__second-block{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}
/*--------------------*/
/*--------------------*/
#Modal21 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modalcontent {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, #000 100%), #1D1028;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 450px;
    margin: 20px;
}
.modalcontent img{
    margin-bottom: 20px;
}
.modalcontent p {margin-bottom: 20px;font-size: 18px;color: #FFFFFF}
.modalcontent button {
    margin: 5px;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}
#noBtn:hover{background-color: #cdcdcd;transition: 0.2s;}
#yesBtn:hover{background-color: #cdcdcd;transition: 0.2s;}
.no-scroll {
    overflow: hidden;
}
.modal__yellow{
    background: #FF872A;
}
/*--------------------*/
#Modal21 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}
.modalcontent {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #919191 100%), #ff0000;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 450px;
    margin: 20px;
}
.modalcontent img{
    margin-bottom: 20px;
}
.modalcontent p {margin-bottom: 20px;font-size: 24px;color: #FFFFFF}
.modalcontent button,.modalcontent a {
    margin: 5px;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    background-color: #ffffff;
}
#noBtn:hover{background-color: #cdcdcd;transition: 0.2s;}
#yesBtn:hover{background-color: #cdcdcd;transition: 0.2s;}
.no-scroll {
    overflow: hidden;
}
.modal__yellow{
    background: #FF872A;
}
/*--------------------*/




