@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;
}
/*about*/

#about{
    width: 100%;
    height: 110vh;
    padding: 70px 0;
    box-shadow: 0px 0px 20px white;
    background-color: rgba(0, 0, 0, 0.1);
}
#about .Aus{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#about .image1 img{
    height: 80%;
    width: 80%;
    border-radius: 80% ;
    position: relative;
    box-shadow: 0px 5px 10px black;
}
.content4 h3, .AS1{
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
    font-size: 65px;
    font-family: 'myFont1', sans-serif;
}

.content4 .AS1{
    position: relative;
    color: tomato;

}
.content4 p{
    margin: 10px;
    width: 650px;
    text-align: justify;
    margin-right: 30px;
    line-height: 22px;
}
.cs5{
    margin-top: 50px;
    display: flex;
    position: relative;
    text-align: center;
}
.cs5 h3{
    color: tomato;
    font-family: 'myFont1', sans-serif;
}
.cs5 p{
    font-family: 'myFont1', sans-serif;
}
.mystyle1{
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 20px white;
    margin: 5px;
}
/*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;
}