body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: white;
    color: black;
}
.rcc{
    text-decoration: none;
    color: black;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}
.nav-bar{
    padding: 0;
}
#navigation{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
    background-color: white;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    height: 60px;
}

/* Navigation Upper */

#nav-upper a{
    font-size: 16px;
}

#nav-upper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(2, 2, 2, 0.4);
}
.section{
    display: flex;
    align-items: center;
}
.left-section-link{
    display: flex;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
}
.left-section-link p{
    display: flex;
    align-items: center;
    font-size: 20px;
    margin: 0 5px;
    color: black;
}
.camp-logo{
    height: 60px;
    margin: auto 20px ;
}
.middle-section{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-bar{
    height: 36px;
    font-size: 16px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 1px solid black;
    padding-left: 15px;
    width: 300px;
    transition: .4s ease-in-out;
}
.search-bar:focus{
    border: none;
    width: 450px;
}
.search-bar::placeholder{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
.search-button{
    height: 40px;
    width: 45px;
    background-color: black;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid black;
    border-left: none;
    margin-left: -5px;
    margin-right: 10px;
}
.search-button:hover{
    cursor: pointer;
}
.search-icon{
    height: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}
.right-section{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.sign-log{
    display: flex;
    align-items: center;
    height: 60px;
}
form{
    margin: 0px;
}
.avatar-icon{
    height: 35px;
    border: 2px solid black;
    border-radius: 50%;
}
.nav-btn-rcc{
    width: 90px;
    height: 60px;
    background-color: white;
    border: transparent;
    font-family: 'Poppins';
    font-size: 15px;
    color: black;
    font-weight: bold;
    transition: 1s;
    font-family: 'Poppins', sans-serif;
}
.nav-btn-rcc:hover{
    cursor: pointer;
    text-decoration: underline;
}
.nav-btn-cart{
    width: 90px;
    height: 50px;
    background-color: white;
    border: none;
    margin-right: 10px;
    transition: .2s;
}
.nav-btn-cart:hover{
    cursor: pointer;
}
.nav-btn-cart:hover .cart-logo{
    transform: scale(1.2);
}
.cart{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart form{
    margin: 0px;
}
.cart-logo{
    height: 30px;
    transition: .3s;
}

/* Navigation Lower */

#nav-lower{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    top: 61px;
    right: 0;
    left: 0;
    height: 40px;
    border-bottom: 1px solid black ;
    background-color: white;
}
#nav-lower a{
    font-weight: bold;
}
#nav-lower a:hover{
    color: black;
}
.left-low-nav{
    display: flex;
    align-items: center;
    margin-left: 18px;
}
.low-nav-btn{
    font-size: 15px;
    font-family: 'Poppins';
    margin: 0;
    height: 30px;
    color: rgba(0, 0, 0, 0.7);
    background-color: transparent;
    border: none;
    font-weight: bold;
    padding: 5px;
    transition: .2s;
}
.low-nav-btn:hover{
    color: black;
    cursor: pointer;
    text-decoration: underline;
}
.slash{
    font-weight: bold;
    margin: auto 5px;
}
.right-low-nav{
    display: flex;
    align-items: center;
    margin-right: 18px;
}

/*Footer*/

#footer{
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(22, 22, 22);
    color: white;
    position: relative;
    z-index: 4;
    border-top: 1px solid black;
}

#contact-us{
    background-color: white;
    color: black;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
}
.email{
    display: flex;
    flex-direction: row;
}
.top{
    display: flex;
    align-items: center;
}
.top p{
    font-size: 20px;
}
.bottom a{
    transition: .3s;
}
.bottom a:hover{
    text-decoration: underline;
}
.contact-icon{
    height: 50px;
    margin-right: 15px;
}
iframe{
    margin-left: 20px;
    height: 100px;
}

/* Reach Us/Social Media */

.social-media{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px;
}
.social-media h2{
    margin: 20px auto 0;
    font-size: 22px;
}
.media-list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 35px;
}
.media-list form{
    margin: 0;
    padding: 0;
}
.media-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    margin: auto 40px;
    background-color: white;
    border-radius: 30%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    transition: .2s;
    padding: 0;
}
.media-btn:hover{
    cursor: pointer;
    filter: invert(1);
    transform: scale(1.2);
}
.media-icon{
    height: 30px;
}

/* News Letter */

.email{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px;
}
.email h2{
    margin-bottom: 20px;
}
.email .text-box{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.email .text-box input{
    width: 200px;
    height: 28px;
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 1px solid white;
    padding: 5px;
}
.email .text-box button{
    height: 40px;
    font-family: 'Poppins', sans-serif;
    margin-left: -1px;
    border: 1px solid white;
    background-color: black;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: white;
    transition: .3s;
}
.email button:hover{
    cursor: pointer;
    background-color: white;
    color: black;
}

/* Copyright */

.copy-right{
    display: flex;
    border-top: 1px solid rgba(225, 225, 225, 1);  
}
.copy-right p{
    font-size: 13px;
    margin: 20px auto;
    text-align: center;
}

@media screen and (max-width: 930px){

    .avatar-icon{
        visibility: hidden;
        position: absolute;
    }

}
@media screen and (max-width: 850px) {

    .left-section-link p{
        visibility: hidden;
        position: absolute;
    }
    .low-nav-btn{
        font-size: 12px;
    }
    .search-bar{
        width: 200px;
    }
    .search-bar:focus{
        width: 210px;
    }
    .nav-btn{
        font-size: 14px;
        width: 100px;
        margin: 1px;
    }
    iframe{
        margin-left: 20px;
        
    }
    #contact-us{
        grid-template-columns: 1fr;
    }
}