body {
    margin: 0;
    padding: 0;
    background-color: #64BF39; 
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.Main {
    position: relative;
    background-color: #ffffff; 
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); 
    width: 70%;
    height: 90.5%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    
}
.Danex_logo{
    width: 17%;
    height: 17%;
    padding-left: 2%;
    margin-top: -22%;
    z-index: 10;
    
}
.Navbar_buttons a{
    text-decoration: none;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    font-size: 18px;
    margin-left: 5px;
    padding-right: 25px;
    transition: color 0.3s;
    
}
.Navbar_buttons a:hover{
    color: #64BF39;
}
.Navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.Navbar_buttons{
    margin-top: -22%;
}
#Karen_club{
    position: absolute;
    left: 0;
    bottom: 0%;
    width: 75%;
    height: 81%;
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}
.Sidetext{
    bottom: 30%;
    position: absolute;
    display: flex;
    z-index: 2;
    width: 50%;
    right: 5%;
}
.about_box{
    background-color: #EDF4F2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: lighter;
    border-radius: 2px;
    z-index: 2;
    transition: opacity 0.4s ease-in-out;
}
.about_box:hover{
    background-color: #dadada;
    transition: .3s ease;
    
}
#about{
    color: #64BF39;
    padding-left: 10%;
    font-weight: normal;
    font-size: 30px;
    transition: opacity 0.4s ease-in-out;
}
#about_text{
    padding-left: 10%;
    width: 80%;
}
.green_box{
    position: absolute;
    top: 0;
    left: -15%;
    width: 20%;
    height: 100%;
    background-color: #26A621;
    opacity: .6;
    z-index: 1;
    border-radius: 2px;
}
.Learn_More{
    position: absolute;
    text-decoration: none;
    background-color: #64BF39;
    color: white;
    bottom: -18%;
    left: 70%;
    padding: 2% 5%;
    font-size: 20px;
    transition: background-color 0.3s;
    white-space: nowrap;
}
.Learn_More:hover{
    background-color: #26A621;
}
.Bottom_info_bar{
    position: absolute;
    display: flex;
    background-color: #21400B;
    bottom: 0;
    z-index: 2;
    height: 14%;
    width: 100%;
    left: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.Opening{
    margin-top: 0;
    padding: 0.9%;
    font-weight: normal;
    color: white;

}
.opening_text{
    font-weight: lighter;
    color: grey;
}
.Contact{
    margin-top: 1%;
    padding: 0.9%;
    font-weight: normal;
    color: white;

}
.contact_text{
    font-weight: lighter;
    color: grey;
}
.Location{
    margin-top: 1%;
    padding: 0.9%;
    font-weight: normal;
    color: white;

}
.location_text{
    font-weight: lighter;
    color: grey;
}
#arrow-button {
    position: absolute;
    background-color: #2ecc71; /* Green background color */
    color: #fff; /* Text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Add padding */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition for background color */
    left: 79%;
    top: 120%;

}

#arrow-button:hover {
    background-color: #27ae60; /* Darker green on hover */
}
.menu-items{
    display: none;
}
/* MEDIA */
/*Middle*/
@media screen and (max-width: 1174px){
    .Danex_logo{
        margin-top: -25%;
    }
    .Navbar_buttons {
        margin-top: -25%;
    }
    .Learn_More{
        left: 67%;
        bottom: -14%;
    }
    .Contact{
        padding-left: 9% ;
    }
}
@media screen and (max-width: 1005px){
    .Danex_logo{
        margin-top: -30%;
        width: 20%;
    }
    .Navbar_buttons{
        margin-top: -30%;   
    }
    .Learn_More{
        left: 64%;
        bottom: -12%;
    }
}
/*Tablets*/
/*Large Tablets*/
@media screen and (max-width: 997px){
    .footer{
        font-size: 17px;
    }
    .Contact{
        margin-top: 0;
    }
    .Location{
        margin-top: 0;
    }
    #Karen_club{
        width: 100%;
    }
    #about_text{
        font-size: 15px;
    }
    .Learn_More{
        white-space: nowrap;
        left: 58%;
        bottom: -16%;
        font-size: 20px;
        padding: 3% 8%;
        
    }
    #arrow-button{
        top: 117%;
    }
    .Navbar_buttons{
        display: none;
    }
    .off-screen-menu{
        background-color: darkslategrey;
        height: 100vh;
        width: 100%;
        max-width: 450px;
        position: fixed;
        top: 0;
        right: -700px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: .3s ease;
        text-decoration: none;
        z-index: 7;
    }
    .off-screen-menu li{
        color: white;
        margin-top: 35px;
    }
    .off-screen-menu ul{
        display: inline-block;
        margin-left: 0;
        margin-right: 8%;
    }
    .off-screen-menu.active{
        right: 0%;
    }
    .ham-menu{
        height: 50px;
        width: 50px;
        margin-left: auto;
        position: relative;
        z-index: 8;
    }
    .ham-menu span{
        height: 5px;
        width: 100%;
        background-color: black;
        border-radius: 25px;
        position: absolute;
        top: 105%;
        left: 0%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
        
    }
    .ham-menu span:nth-child(1){
        top: 80%
    }
    .ham-menu span:nth-child(3){
        top: 135%;
    }
    .ham-menu.active span:nth-child(1){
        top: 50%;
        transform: translate(-50%, -0%) rotate(45deg);
    }
    .ham-menu.active span:nth-child(2){
       opacity: 0;
    }
    .ham-menu.active span:nth-child(3){
        top: 50%;
        transform: translate(-50%, 0%) rotate(-45deg);
     }
     .Danex_logo{
        width: 25%;
        padding-top: -20%;
        z-index: 6;
        margin-top: -5%;
     }
     .Bottom_info_bar{
        height: 14%;
     }
     .opening_text{
        white-space: nowrap;
     }
     
}
/*Tablet*/
@media screen and (max-width: 990px){
    .Main{
        width: 100%;
        height: 100%;
        margin-top: 0;
    }
    .Danex_logo{
        margin-top: -3%;
    }
    .ham-menu span{
        top: 130%;
    }
    .ham-menu span:nth-child(1){
        top: 100%;
    }
    .ham-menu span:nth-child(3){
        top: 160%;
    }
    .Bottom_info_bar{
        height: 16.5%;
     }
     .Learn_More{
        left: 60%;
        bottom: -18%;
     }
}
/*Mobiles*/ 
/*Big Phones*/
@media screen and (max-width: 642px){
    .Learn_More{
        left: 58.5%;
        bottom: -16%;
    }
    .Sidetext{
        width: 60%;
    }
    #Karen_club{
        width: 100%;
    }
    .Bottom_info_bar{
        height: 13%;
        bottom: 4%;
    }
    html, body{
        overflow: hidden;
    }
    .Contact{
        padding-right: 1%;
    }
    .location_text{
        padding-right: 10px;
    }
}
@media screen and (max-width: 526px){
    .Learn_More{
        left: 61%;
        bottom: 100%;
    }
    .Contact{
        padding-left: 7%;
    }
    .location_text{
        padding-right: 0;
    }
    html, body{
        overflow: hidden;
    }
    .Bottom_info_bar{
        height: 20%;
        display: flex;
        flex-direction: column;
        bottom: -21%;
    }
    .Opening{
        order: 1;
    }
    .Contact{
        order: 1;
        margin-top: -23%;
        margin-left: -11%;
        text-align: right;
    }
    .Location{
        order: 2;
        margin-top: -3%;
        margin-left: 1%;
        text-align: center;
    }
    #Karen_club{
        width: 115%;
    }
    .Sidetext{
        width: 100%;
        height: 24%;
        bottom: 0%;
        left: 5%;
    }
    #about{
        margin-top: 2%;
    }
    #about_text{
        font-size: 20px;
        margin-top: -4%;
        
    }
    .about_box{
        overflow: hidden;
        white-space: normal;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }
    .Main{
        height: 80%;
    }
    .Danex_logo{
        width: 35%;
        margin-top: -6%;
    }
    body{
        background-color: #EDF4F2;
        margin: 0;

    }
}
@media screen and (max-width: 441px){
    .ham-menu span{
        top: 120%;
    }
    .ham-menu span:nth-child(1){
        top: 90%;
    }
    .ham-menu span:nth-child(3){
        top: 150%;
    }
    #Karen_club{
        width: 125%;
    }
    .Learn_More{
        left: 57%;
    }
    .Bottom_info_bar{
        height: 50%; 
        bottom: -52%; 
    }
    .Bottom_info_bar p{
        margin-top: 1%;
    }
    footer{
        padding: 10px;
    }
    html, body{
        overflow-y:auto;
        overflow-x: hidden;
    }
    .Contact{
        order: 1;
        margin-top: 0%;
        margin-left: -7%;
        margin-right: 0;
        text-align: center;
        text-wrap: nowrap;
    }
    .Location{
        order: 1;
        text-wrap: nowrap;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0%;
        text-align: center;
    }
    .Opening{
        margin-top: 5%;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
    


}




