@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;800&display=swap');

* {
    margin:0;
    padding:0;
    text-decoration: none;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}

#homePage {
    max-height: 100vh;
}

ul {
    position:absolute;
    right:5%;
}

ul li {
    display: inline-block;
    font-weight: 400;
    padding: 0 20px;
    padding-top:30px;
    padding-bottom:15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.2s all ease-in-out;
    color:white;
}

ul li.active {
    background-color:white;
    color:#0f6c7a;
}

ul li:hover {
    background-color:white;
    color:#0f6c7a;
    transition: 0.2s all ease-in-out;
}

ul li {
    display: inline-block;
    font-weight: 400;
    padding: 0 20px;
    padding-top:30px;
    padding-bottom:15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.2s all ease-in-out;
    color:white;
    cursor: pointer;
}

ul li.active {
    background-color:white;
    color:#0f6c7a;
}

ul li:hover {
    background-color:white;
    color:#0f6c7a;
    transition: 0.2s all ease-in-out;
}

.otherTab {
    display: flex;
    justify-content: space-between;
    padding-left: 150px;
    padding-right: 150px;
}

.otherTab .logoImg {
    position: relative;
    top:25px;
}

.otherTab ul li {
    display: inline-block;
    font-weight: 400;
    padding: 0 20px;
    padding-top:30px;
    padding-bottom:15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.2s all ease-in-out;
    color:rgb(136, 136, 136);
}

.otherTab ul li.active {
    background-color:#0f6c7a;
    color:white;
}

.otherTab ul li:hover {
    background-color:#0f6c7a;
    color:white;
    transition: 0.2s all ease-in-out;
}

.r_navButton_h {
    display: none;
}

.r_navButton {
    display: none;
}

.r_navOption {
    transition: 0.2s ease;
    top:-100%;
}

.r_navOption.Visible {
    top:0;
}

.r_navOption {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #ffffffde;
    z-index: 2;
}

.r_navOption .r_box{
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    background-color: white;
    text-align: center;
    width: 450px;
    border-radius: 25px;
    box-shadow: 6px 8px 8px -3px rgb(89 110 121 / 33%);
    -webkit-box-shadow: 6px 8px 8px -3px rgb(89 110 121 / 33%);
    -moz-box-shadow: 6px 8px 8px -3px rgba(89,110,121,0.49);
}

.r_navOption .r_box .r_navOp {
    font-size: 45px;
    color: #b1b1b1;
    position: relative;
    padding-top:20px;
    padding-bottom:20px;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
}

.r_navOption .r_box:nth-child(1) .r_navOp:hover {
    color:white;
    background-color: #1282a2;
}

.r_navExit {
    text-align: right;
    cursor: pointer;
}

.footer {
    position: fixed;
    bottom: 0;
    background-color: rgb(218, 218, 218);
    width: 100%;
    padding-top:10px;
    padding-bottom:10px;
    text-indent: 250px;
}

/* Responsive */
@media only screen and (max-width: 1000px) {
    ul {
        display: none;
    }
    
    .r_navButton_h {
        display: block;
        cursor: pointer;
        position: absolute;
        right:5%;
        top:25px;
        background-color:white;
        border-radius:5px;
        padding:10px;
        box-shadow: 6px 8px 8px -3px rgb(89 110 121 / 33%);
        -webkit-box-shadow: 6px 8px 8px -3px rgb(89 110 121 / 33%);
        -moz-box-shadow: 6px 8px 8px -3px rgba(89,110,121,0.49);
    }

    .r_navButton {
        display: block;
        cursor: pointer;
        position: absolute;
        right:5%;
        top:25px;
        background-color:#0f6c7a;
        border-radius:5px;
        padding:10px;
        box-shadow: 6px 8px 8px -3px rgb(89 110 121 / 33%);
        -webkit-box-shadow: 6px 8px 8px -3px rgb(89 110 121 / 33%);
        -moz-box-shadow: 6px 8px 8px -3px rgba(89,110,121,0.49);
    }

    .footer {
        text-align: center;
        text-indent: 0;
    }
}

@media only screen and (max-width: 500px) {
      .r_box {
          width: 90% !important;
    }
      
      .r_navOp {
        font-size: 30px !important;
    }
    
    .r_navExit img {
        width:30px !important;
    }
}