@font-face {
    font-family: 'Bebas Neue Pro Bold';
    src: url(fonts/Bebas\ Neue\ Pro\ Bold.otf);
}

@font-face {
    font-family: 'Gilroy-Bold';
    src: url('fonts/Gilroy-Bold.otf') format('openType');
}

@font-face {
    font-family: Quicksand;
    src: url('fonts/Quicksand-Regular.ttf') format('trueType');
}

@keyframes zoom-in-zoom-out {
    0% {
    transform: scale(1, 1);
    }
    50% {
    transform: scale(1.10, 1.10);
    }
    100% {
    transform: scale(1, 1);
    }
}
  
header{
    padding-top:20px;
}

img{
    max-width: 100%;
}

.header-button{
    border: 1px solid #6EDCF5;
    color: #FFFFFF;
    text-decoration: none;
    filter: drop-shadow(-5px 15px 50px rgba(255, 170, 0, 0.301961));
    border-radius: 150px;
    font-family: 'Bebas Neue Pro Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    width: 165px;
    padding: 13px 0px;
}

.header-button:nth-child(2){
    background: #6EDCF5;
    color: #000;
}

.banner{
    padding-top:15px;
}

.mobile-app{
    background: #1F2131;
    border-radius: 15px;
    padding-top: 20px;
    margin-top: 20px;
}
.mobile-app h1{
    font-family: Gilroy-Bold;
    line-height: 45px;
    padding: 25px;
    color: #FFFFFF;
}
.download-button{
    text-decoration: none;
    font-family: 'Bebas Neue Pro Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 47px;
    color: #FFFFFF;   
    background: rgb(110, 220, 245);
    border-radius: 15px;
    width:320px;
    padding: 15px 0px 17px 0;
    box-shadow: 0px 15px 54px rgb(110 220 245 / 35%);
    margin-right: 3rem;

}

.footer{
    background: url(footer-background.png) 100% 100%;
    min-height: 261px;
    max-height: 261px;
}

.text-detail{
    font-family: Gilroy-Bold;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
}

.social-media-text{
    font-family: Quicksand;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #70798B;
    text-align: center;
}

.icon-footer{
    color:#fff;
    font-size:18px;
}

.bet-buttons{
    display:flex;
}

.mobile-bet-buttons{
    display:none!important;
    margin: 0!important;
    max-width: 300px;
    margin: 0 auto!important;
}

.mobile-bet-buttons>div>a{
    margin:5px;
}

.methods{
    display:flex;
}

.mobile-methods{
    display:none!important;
    margin:0 auto!important;
    max-width: 300px;
}

.mobile-methods>div>a{
    margin:5px;
}

.ft-sp{
    padding-top: 100px;
}

.social{
    margin-left: 3rem!important;
    display: flex;
}

.zoom {
    transition: transform .2s; /* Animation */
}
  
.zoom:hover {
   transform: scale(1.15); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.zoom-in-zoom-out:hover {
    animation: zoom-in-zoom-out 2s ease-out infinite;
  }



@media screen and (max-width: 900px) {
    .navbar-cust{
        flex-direction: column;
    }
    
    .header-buttons{
        flex-direction: column;
        margin-top: 15px;
    }

    .header-button{
        margin-right:0!important;
        margin-top: 10px;
    }

    .mobile-app{
        flex-direction: column;
    }

    .download-button{
        margin-right:0!important;
    }

    .bet-buttons{
        display:none!important;
    }

    .mobile-bet-buttons{
        display:flex!important;
    }

    .mobile-app h1{
        text-align: center;
    }

    .methods{
        display: none;
    }

    .mobile-methods{
        display:flex!important;
    }

    .banner{
        margin-top: 10px;
    }

    .ft-sp{
        flex-direction: column-reverse;
		padding-top: 60px;
    }

    .text-detail{
        text-align: center;
    }

    .social{
        display: none!important;
    }
}
