@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf');
}
@font-face {
    font-family: 'Quantico';
    src: url('../fonts/Quantico/Quantico-Bold.ttf');
}
.container-bg-photo{
    background-image: url("../img/binfo_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

.binfo-logo{
    width: 110px;
    height: 150px;
    padding-top: 40px;
    margin-left: 72px;
    display: block;
}
.text-1 {
    font-family: 'Montserrat';
    margin-top: 40px;
    margin-left: 72px;
    font-size: 31px;
    background-image: linear-gradient(90deg, rgba(199,199,199,1) 0%, rgba(250,250,250,1) 5%, rgba(188,188,188,1) 12%, rgba(226,226,226,1) 39%, rgba(228,228,228,1) 67%, rgba(165,165,165,1) 74%, rgba(252,252,252,1) 79%, rgba(255,255,255,1) 95%, rgba(201,201,201,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 5px!important;
}
.text-2{
    font-family: 'Montserrat';
    margin-top: -15px;
    margin-left: 72px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 60px;
    background-image: linear-gradient(180deg, rgba(255,146,93,1) 0%, rgba(250,106,17,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 5px!important;
}
.text-3{
    margin-top: -10px;
    margin-left: 72px;
    font-size: 18px;
    color: #EDEDED;
    line-height: 48px;
    letter-spacing: 2px;
}
.binfo-text{
    font-family: 'Poppins';
    background-image: linear-gradient(180deg, rgba(255,146,93,1) 0%, rgba(250,106,17,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.text-4{
    margin-top: 10px;
    margin-left: 115px;
    font-size: 51.2px;
    font-weight: bold;
    background-image: linear-gradient(180deg, rgba(255,146,93,1) 0%, rgba(250,106,17,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.code-div {
    position: relative;
    width: 309px;
    margin-top: 10px;
    margin-left: 130px;
    padding: 0px; /* Inner padding */
    background-color: transparent; /* Background color of the div */
    border-radius: 20px; /* Desired border radius */
    z-index: 1; /* Stack above the pseudo-element */
}

.code-div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px; /* Match the border radius of the div */
    padding: 1.3px; /* Thickness of the border */
    background: linear-gradient(180deg, rgba(255,146,93,1) 0%, rgba(250,106,17,1) 28%, rgba(250,106,17,1) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
            mask-composite: exclude;
    pointer-events: none; /* Allow interaction with the div */
    z-index: -1; /* Position behind the div */
}
.code-text{
    text-align: center;
    font-family: 'Quantico';
    font-size: 51.2px;
    background-image: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(195,195,195,1) 9%, rgba(171,171,171,1) 17%, rgba(245,245,245,1) 32%, rgba(187,187,187,1) 48%, rgba(197,197,197,1) 64%, rgba(232,232,232,1) 91%, rgba(112,112,112,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 10px;
}
.download-app{
    margin-left: 45px;
    margin-top: 70px;
}
.redeem-vector-div{
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh;
}
.redeem-vector{
    width: 775.69px;
    height: 751px;
}

/* for mobile  */

@media only screen and (max-width: 600px) {
    .binfo-logo{
        margin-left: 25px;
        position: absolute;
        width: 60px;
        height: 90px;
    }
    .redeem-vector{
        width: 300px;
        height: 300px;
    }
    .content-container {
        display: flex;
        flex-direction: column-reverse; /* Reverse the order on mobile */
    }
    .container-bg-photo{
        height: auto;
    }
    .content{
        height: auto;
    }
    .redeem-vector-div {
        order: -1; /* Ensure .redeem-vector-div goes to the top */
        justify-content: end;
        height: auto;
    }
    .text-1{
        font-size: 20px;
        margin-left: 23px;
        margin-top: 0px;
    }
    .text-2{
        font-size: 24px;
        margin-left: 23px;
        margin-top: 0px;
    }
    .text-3{
        margin-top: -10px;
        line-height: 41px;
        padding: 20px;
        margin-left: 0px;
        font-size: 16px;
    }
    .text-4{
        font-size: 24px;
        margin-left: 0px;
        text-align: center;
        margin-top: -10px;
    }
    .code-div{
        margin-left: auto;
        margin-right: auto;
        margin-top: 5px;
        display: flex;
        justify-content: center; /* Horizontally center the content */
        width: 231px;
    }
    .code-text{
        padding-top : 10px;
        font-size: 36.2px;
    }
    .download-app{
        justify-content: center;
        margin-left: 0px;
        margin-top: 25px;
    }
    .download-app a img{
        width: 150px;
    }

}