*{
    padding: 0;
    margin: 0;
}
header {
    background-color: rgb(92, 132, 178);
    height:80px;
    width:100%;
    position:fixed  ;
}
h1 {
    color: white;
}
header ul {
    position:absolute;
    right:5vw;
    top:0;
    line-height:80px;
}
h1 {
    position:absolute;
    left: 120px;
    top:0;
    line-height:80px;
    background-image:url(images/logo2.png) ;
    background-repeat: no-repeat;
    background-position:center ;
    width:210px;
    text-indent:-9999px;
}
header li {
    display: inline;
    margin-right:4vw;
}
header a {
    color: white;
    text-decoration: none;      
}
header a:hover {
    text-decoration:underline ;
}
.new1 {
    background-color: aquamarine;
    color: white;
    height:85vh;
    background-image: url("images/banner.png");
    background-repeat:no-repeat ;
    background-size: cover;
    background-position: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.new1 h2 {
    font-size:60px;
}
.new1 p {
    color:#FEF7E6;
    font-size:18px;
    margin:25px 0;
}
.new1 a {
    color:white;
    text-decoration:none;
    border:1px solid #ACACAC;
    padding:10px 20px;
    border-radius: 5px; 
}
.new2 {
    background-color: rgb(39, 95, 97);
    color:white ;
    height:250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height:1.8em ;
}
footer {
    background-color: rgb(31, 33, 33);
    color: #FEF7E6;
    height:60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.new3 {
    background-color: aquamarine;
    color: white;
    height:110vh;
    background-image: url("images/map.png");
    background-repeat:no-repeat ;
    background-size:cover;
    background-position: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.new4 {
    display: flex;
    background-color: #FEF7E6;
    justify-content: space-between;
    align-items: center;
    padding:100px 180px 80px ;
}
.new4 div{
    width:300px ;
    text-align: center;
}
.new4 img {
    width:100% ;
    border-radius:10px ;
}
.new4 h3 {
    font-size: 20px;
    margin:20px 0 ;
}
.new4 p {
    font-size:14px ;
    line-height:1.6em ;
}
@media screen and (max-width: 768px) {
    header ul {
        display:none ;
    }
    header h1{
        left:50% ;
        transform: translateX(-50%);
    }
    .new1 h2 {
        font-size: 40px; 
    }
    
}