@font-face{
    font-family: 'myFont';
    src:url(font/NothingYouCouldDo-Regular.ttf);
}
@font-face {
    font-family: 'myFont1';
    src: url(font/Neuton-Bold.ttf);
}
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}
html{
    scroll-behavior: smooth;
}
nav{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0,0, 0.5);
    box-shadow: 5px 5px 20px black;
    position: fixed;
    z-index: 1000;
    width: 100%;
    border-radius: 5px;

}
nav .menu{
    text-align: right;
    justify-content: space-evenly;
}
.menu a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: px;
    transition: 0.5s;
    margin: 3px;
    display: inline-block;
    text-align: center;
    font-family: 'myFont1', sans-serif;
}

.menu ul{
    display: inline-flex;
    color: transparent;
    margin: 15px;
}
.menu ul li .active{
    color: tomato;
    border-bottom: 5px solid tomato;
    width: 100%;
    transition: 0.3s ease;
    border-radius: 1px;
}
.menu ul li a:hover{
    background: none;
    text-shadow: 0px 0px 20px;
    color: tomato;
    padding: px;
}
a:nth-child(1){
    width: 80px;
}
a:nth-child(2){
    width: 80px;
}
a:nth-child(3){
    width: 80px;
}
a:nth-child(4){
    width: 80px;
}
a:nth-child(5){
    width: 80px;
}

/*
.menu ul li:nth-child(1) a{
    color: tomato;
}
.menu ul li:nth-child(5) a:hover{
    color: white ;
}
.menu ul li:nth-child(5) a{
    background-color: tomato;
}
*/
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 3px;
    left: 20px;
    cursor: pointer;
}
.logo img{
    height: 50px;
    width: 50px;
}

#Location{
    border: 2px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 150vh;
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 70px;

}
#Location .content_Loc{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#Location .content_Loc h3{
    font-size: 70px;
    font-family: 'myFont1', sans-serif;
    color: tomato;
}
#Location .content_Loc1{
    align-items: center;
}
#Location .content_Loc1{
    margin-top: 50px;
}
.locStyle, .locStyle1{
    margin: 10px;
}
#Location .content_Loc1 .locStyle img{
    height: 250px;
    width: 450px; 
    box-shadow: 0px 0px 15px black;

}
#Location .content_Loc1 .locStyle1 img{
    height: 250px;
    width: 600px;
    box-shadow: 0px 0px 15px black;
}
#location .content_Loc1 p{
    margin-top: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
}
#Location .content_Loc2 img{
    height: 250px;
    width: 450px;
    box-shadow: 0px 0px 15px black;
}

/*Footer*/
footer{
    box-shadow: 0px 0px 20px black;
    border-radius: 3px;
    background: rgba(0, 0,0, 0.8);
    padding-top: 50px;
    color: white;
}
.container1{
    width: 1140px;
    margin: auto;
    display: flex;
    justify-content: center;
}
.footer-content{
    width: 33.3%;
}
.hs1{
    font-family: 'myFont1', sans-serif;
    color: tomato;
}
h3{
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'myFont1', sans-serif;
}
.footer-content p{
    width:190px;
    margin: auto;
    padding: 7px;
    font-family: 'myFont1',sans-serif;
}
.footer-content ul{
    text-align: center;
}
.list{
    padding: 0;
}
.list a{
    color: white;
    text-decoration: none;
}
.list li{
    width: auto;
    text-align: center;
    list-style-type:none;
    padding: 7px;
    position: relative;
}
.list li::before{
    content: '';
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: tomato;
    transition-duration: .5s;
}
.list li:hover::before{
    width: 70px;
}
.social-icons{
    text-align: center;
    padding: 0;
}
.social-icons li{
    display: inline-block;
    text-align: center;
    padding: 5px;
}
.social-icons i{
    color: white;
    font-size: 25px;
}
a{
    text-decoration: none;
}
a:hover{
    color: tomato;
}
.social-icons i:hover{
    color: tomato;
}
.bottom-bar{
    background: tomato;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}
.bottom-bar p{
    color: #343434;
    margin: 0;
    font-size: 16px;
    padding: 7px;
}
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.9);
}

::-webkit-scrollbar-thumb{
    background: tomato;
    border-radius: 10px;
}