*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "milky";
    src: url('../fonts/MilkKids.ttf') format('truetype');
}

@font-face {
    font-family: "collage";
    src: url('../fonts/college.ttf') format('truetype');
}


body{
    font-family:  "collage", sans-serif; 
}

.Montserrat_font{
    font-family: "Montserrat", sans-serif;
}

.button_hover img{
    transition: all .3s ease-in-out;
}

.button_hover:hover img{
    transform: scale(1.2);
}
  
@keyframes btnAnimation {
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
}



/* hero */
.hero h1{
    text-shadow: 0px 2px 0px #BB133E;
}
 
#text,
.hero span{
    font-family:  "Montserrat", sans-serif;
}
 

.border_sam .content p{
    font-family:  "Montserrat", sans-serif;
}


.border_sam_container{
    background: radial-gradient(59.75% 62.71% at 50.42% 41.07%, rgba(6, 25, 54, 0.85) 0%, #061936 75.5%);
}

/* text animation */
.text-container {
    display: flex;
    align-items: center; 
}

.cursor {
    margin-left: 2px;
    animation: blink 1.7s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        
    }
    50% {
        opacity: 0;
    }
} 

.z_99{
    z-index: 999;
}

/* make */
.make_crypto{
    background: linear-gradient(177.45deg, #BB133E 2.13%, rgba(120, 0, 0, 0) 366.45%);
}
 

.image_make_anm.animate{
    animation: imgAnmtn 1.1s linear; 
}
 

@keyframes imgAnmtn {
    0%{
        transform: scale(0);
    }
    20%{
        transform: scale(1) rotate(4deg);
    }
    30%{
        transform: scale(1) rotate(-4deg);
    }
    40%{
        transform: scale(1) rotate(4deg);
    }
    50%{
        transform: scale(1) rotate(-4deg);
    }
    60%{
        transform: scale(1) rotate(0);
    }
    100%{
        transform: scale(1);
    }
}

.make_crypto .bg .star_bg{
    animation: star_bg 5s infinite;
}

.make_crypto .bg .star_bg.v2{
    animation: star_bg 5s infinite 4s;
}

@keyframes star_bg {
    0%,100%{
        transform: scale(1);
        opacity: 0;
    }
    20%{
        opacity: .2;
    }
    80%{
        transform: scale(2.6);
        opacity: 0;
    }
}
 
 
   /* about */
   .about{
    perspective: 400px;
}

.about_container{
    transform-origin: 50% 100%;  
    transform: rotateX(20deg) translateY(0px); 
}

/* btn */
 
/* moving color animation */

/* box animation */ 
.box_animation{ 
    overflow: hidden; 
    cursor: pointer;

    transform: perspective(2000px);
    transition: .3s ease-in-out;

    display: flex;
    justify-content: center;
    align-items: center; 
    -webkit-text-stroke: .8px black;
}

nav .box_animation{
    clip-path: polygon(8% 19%, 100% 0, 100% 100%, 0% 100%);
}

.box_animation::before{
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1;
}

nav .box_animation:hover p{
    transform:  perspective(800px) rotateY(-20deg);
}

.box_animation:not(.enter.box_animation):not(footer .box_animation):hover{
    transform: 
        perspective(300px)
        rotateY(20deg)
        rotateX(20deg);
} 

.button_animation .moving-color_container{
    width: 100%;
}


.moving-color_container{
    position: absolute;
    width: 98%;
    height: 96%;
    
    clip-path:inherit;
    background-color: #D51B3C;
    
    z-index: 9;
    overflow: hidden;
}

.moving-color {
    width: 100%;
    height: 290%; 
    right: 0; 
    position: absolute; 
    bottom: 0%; 
    animation: move-colors 2s linear infinite;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
}

.moving-color span{
    width: 110%;
    height: 14%;
    background-color: white;
    position: relative;
}

@keyframes move-colors {
    0% {
        bottom: -43%;
    }
    100% {
        bottom: 41%;
    }  
}


.address .moving-color_container{
    background-color: #0085FF;
} 
footer .box_animation{
    -webkit-text-stroke: 2.5px black;
}

footer .box_animation::before{
    width: 100%;
} 

footer .box_animation:hover{
    transform: 
        perspective(3000px)
        rotateY(20deg)
        rotateX(20deg);
} 

footer .moving-color_container{
    width: 99.5%;
}

.social{
    background-image: url('../images/flag_social.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* text slider animation */
/* marquee text slider */
.marquee {
    display: flex;
    flex-direction: row;
    font-size: 31.57px;
    margin-top: var(--v-medium);
    overflow: hidden;
    position: relative;

    width: 100%;
    height: 156px;
 
    gap: 0;
    padding-top: .5rem; 
}

.text_slide_container::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    height: 100%;
    width: 100%;

    background-image: url('../images/flag.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.marquee-left .marquee-el {
    animation-direction: reverse;
}

.marquee-el {
    align-items: center;
    animation: scroll 100s linear 0s infinite;
    animation-delay: 0s;
    animation-play-state: running;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    flex-direction: row;
    min-width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    z-index: 1;
}

.marquee-el_reverse {
    align-items: center;
    animation: scroll 100s linear 0s infinite;
    animation-delay: 0s;
    animation-play-state: running;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    flex-direction: row;
    min-width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    z-index: 1;
}

.marquee span{
    height: 100%; 
    color: white;
    font-family: var(--font-p22_bold);
    -webkit-text-stroke: .75px black;
    font-size: 64px;
    font-weight: 700;
    padding: 0 2.5rem;
    text-transform: uppercase;
}
 
@keyframes scroll{
    0%{
        transform: translateX(0);
    } 100%{
        transform: translateX(-100%);
    }
}

@keyframes scroll_reverse{
    0%{
        transform: translateX(100%);
    } 100%{
        transform: translateX(0%);
    }
}

/* cloud animation */
.right_animation_cloud{
    animation: cloud_right 30s linear infinite;
}

@keyframes cloud_right {
    0%,100%{
        transform: translateX(0px);
    }
    50%{
        transform: translateX(-200px);
    }
}

.left_animation_cloud{
    animation: cloud_left 30s linear infinite;
}

@keyframes cloud_left {
    0%,100%{
        transform: translateX(0px);
    }
    50%{
        transform: translateX(200px);
    }
}










/* utils */
.thin_stroke{
    -webkit-text-stroke:1.2px black; 
} 

.medium_sroke{
    -webkit-text-stroke:2px black;
    text-shadow:0 2px 2px  black;
}  





/* footer */
.privacy{
    border: 3px solid white;
    border-radius: 1rem;
    padding: .85rem 1.5rem;
    color: white;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;

    font-size: 24px;
}

.social_footer{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    width: 100%;
}

.social_footer a img{
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
}

.social_footer a:hover img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.social_footer img{
    width: 50px;
    height: auto;
    object-fit: contain;
}


.about_text{
    text-align: center;
    width: 800px;
    max-width: 90%;
    font-size: 17px;
}



/* media screen */
@media screen and (min-width:2500px) {
    .marquee { 
        height: 5vw; 
    }  
}


@media screen and (min-width:1200px) {
    /* about */  
    .about_container{
        transform-origin: 50% 100%;  
        transform: rotateX(20deg) translateY(0px);
        opacity: 0;
    }

    .about_container.active{ 
        transform: rotateX(20deg) translateY(0px);
        animation: animateCrawl 3s linear forwards;
        opacity: 1;
    }

    @keyframes animateCrawl {
        0% {
            transform: rotateX(50deg) translateY(900px);
        }
        100% {
            transform: rotateX(20deg) translateY(0px);
        }
    }
}

@media screen and (max-width:1024px) {
    .marquee {  
        height: 100px; 
    }

    .marquee span{ 
        -webkit-text-stroke: .4px black; 
    }

    .thin_sroke{
        -webkit-text-stroke:.7px black; 
    } 
     
}


@media screen and (max-width:600px) {
    .box_animation{  
        -webkit-text-stroke: .4px black;
    }

    footer .box_animation{
        -webkit-text-stroke: .5px black;
    }

    .thin_stroke{
        -webkit-text-stroke:.5px black; 
    } 

    .medium_sroke{
        -webkit-text-stroke:1.4px black;
        text-shadow:0 1px 2px  black;
    } 


    /* footer */
    .social_footer img{
        width: 30px;
    }
    
    .about_text{
        font-size: 12px;
    }
}

