body{
    overflow-y: hidden;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/Proxima\ Nova.ttf");
}

.scrollbar::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.10);
}

.scrollbar::-webkit-scrollbar-track {
    background: none;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.30);
}

.scrollbar::-webkit-scrollbar-thumb:hover{
    background: rgba(255, 255, 255, 0.50);
}

.background_color{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #242424;
    z-index: -3;
}

.background_overlay{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    /* background: radial-gradient(100% 316.05% at 100% 0%, #82A5FF 0%, rgba(0, 0, 0, 0) 100%); */
    background: radial-gradient(100% 316.05% at 100% 0%, #2571ce 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -2;
}

.background_img{
    position: fixed;
    left: 0;
    top: 0;
    width: 105%;
    height: 105%;
    margin: auto;
    background: url("../images/main_menu.jpeg");
    background-repeat: no-repeat;
    background-position: 80% 50%;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.page{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 720px;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
}

.page_container{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
}

.content{
    width: 470px;
    /* height: 300px; */
    display: flex;
    flex-direction: column;
}

.header{
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 76px;
    /* font-style: normal; */
    font-weight: 700;
    /* line-height: normal; */
    margin-top: 0px;
    margin-bottom: 0px;
}

.text{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    color: #FFFFFF;
}

.reg_btn{
    width: 300px;
    height: 60px;
    background-color: #2E7275;
    border-radius: 50px;
    color: white;
    font-family: 'Nunito';
    font-size: 24px;
    /* border: 2px solid #2E7275; */
    border: none;
    cursor: pointer;
    transition: 0.2s;
    /* text-align: center; */
}

.reg_btn:hover{
    background: #d18d8a;
    color: black;
    /* filter: invert(1); */
}

.menu_btns{
    /* width: 644px;
    height: 752px; */
    display: grid;
    grid-template-columns: repeat(2, 250px);
    gap: 40px;
}

.location_trans_btn{
    width: 250px;
    height: 300px;
    border-radius: 15px;
    background-color: #414455;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.img_btn_block{
    border-radius: 15px;
    width: 250px;
    height: 250px;
    min-height: 250px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 250px 250px;
    transition: 0.5s;
}

.location_trans_btn:hover > .img_btn_block{
    /* background-position: 50% 50%; */
    background-size: 350px 350px;
}

.img_btn{
    border-radius: 15px;
    width: 250px;
    height: 250px;
}

.btn_text{
    color: white;
    font-family: 'Nunito';
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
}

.menu_pages{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goto{
    /* margin-top: 50px; */
    color: rgba(255, 255, 255, 0.50);
    font-family: 'Nunito';
    font-size: 20px;
    cursor: pointer;
    display: none;
}

#goto1{
    margin-top: 50px;
    position: absolute;
    bottom: 20px;
}

#goto2{
    margin-bottom: 20px;
}

.goto:hover{
    color: white;
}

@media screen and (max-width: 1150px){
    .page{
        /* justify-content: left; */
        /* align-items: center; */
        flex-direction: column;
    }
    .content{
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: 0.5s;
    }
    .menu_pages{
        /* display: none; */
        visibility: hidden;
        position: absolute;
        opacity: 0;
        transform: translateY(500px);
        transition: 0.5s;
    }
    .text{
        /* text-align: center; */
    }
    .content.hidden{
        visibility: hidden;
        opacity: 0;
        transform: translateY(-500px);
        transition: 0.5s;
    }
    
    .menu_pages.visible{
        transition: 0.5s;
        visibility: visible;
        transform: translateY(0px);
        opacity: 1;
    }
    .goto{
        display: block;
    }
}

@media screen and (max-width: 550px){
    .header{
        font-size: 36px;
        width: 300px;
        text-align: center;
    }
    .text{
        font-size: 18px;
        width: 280px;
        text-align: center;
    }
    .content{
        width: 100%;
        align-items: center;
    }
    .reg_btn{
        width: 150px;
        height: 30px;
        font-size: 12px;
    }
    .location_trans_btn{
        width: 100px;
        height: 130px;
    }
    .img_btn_block{
        border-radius: 15px;
        width: 100px;
        height: 140px;
        min-height: 100px;
        background-size: 100px 100px;
    }
    .location_trans_btn:hover > .img_btn_block{
        background-size: 150px 150px;
    }
    .btn_text{
        font-size: 12px;
    }
    .menu_btns{
        /* width: 644px;
        height: 752px; */
        display: grid;
        grid-template-columns: repeat(2, 100px);
        gap: 20px;
    }
    .page{
        min-height: 300px;
        /* max-height: 600px; */
    }
    #goto1{
        bottom: 20px;
    }
    body{
        overflow-y: scroll;
    }
}