*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body{
    font-family: poppins, sans-serif; 
  }
#Plaza{
    background: linear-gradient(rgba(0,0,0,0.5),#009688), url(Images/Plaza.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}
.Logo{
    width: 140px;
    position: absolute;
    top: 3%;
    left: 01%;
    border-radius: 50px;
}
.Plaza-text{
    text-align: center;
    color: #fff;
    padding-top: 180px;
}

.Plaza-text h1{
  font-size: 50px;
}
.Plaza-text p{
  font-size: 40px;
  font-style: italic;
}
Plaza-btn{
    margin: 70px auto 0;
}
.Plaza-btn a{
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}

.Plaza-btn a span{
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: color 0.5s;
}

.Plaza-btn a:hover span{
    width: 100%;
}
.Plaza-btn a:hover{
    color: #000;
}
#sideNav{
    width: 150px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    z-index: 2;
    transition: 0.5s;
}
nav ul li{
    list-style: none;
    margin: 40px 10px;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
}
#menuBtn{
    width: 50px;
    height: 50px;
    background: #009688;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 20px;
    border-radius: 30px;
    z-index: 3;
    cursor: pointer;
}
#menuBtn img{
width: 20px;
margin-top: 15px;
}
@media screen and (max-width: 770px) {
 .banner-txt h1{
    font-size: 44px;
 }   
 .banner-btn a{
    display: block;
    margin: 20px auto;
 }
}

/*-- Feature--*/
#feature{
    width: 100%;
    padding: 70px 0;
}
.title-text{
    text-align: center;
    padding-bottom: 70px;
}
.title-text p{
    margin: auto;
    font-size: 20px;
    color: #009688;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#019587,#fff);
    position: absolute;
    top: -20;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1{
font-size: 50px;
}
.feature-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}
.features{
    flex-basis: 50%;
}
.features-img{
    flex-basis: 50%;
    margin: auto;
}
tures-img img{
    width: 70px;
    border-radius: 10px;
}
/*--service--*/
#service{
width: 100%;
padding: 70px 0;
background: #efefef;
}
.service-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}
.single-service{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
}
.single-service img{
    width: 100%;
    border-radius: 7px;
}
  /* Contact section */
    #contact{
    background: rgb(135, 223, 180);
    background: linear-gradient(0deg, rgba(11,20,103,1) 0% rgba(13,121,215,1) 100%);
    height: 100vh;
    color: white;
  }
  
  #contact .container {
    padding: 50px 20px;
    line-height: 30px;
    left: 30%;
  }
  section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  form button {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  section input[type="text"],
  section input[type="email"],
  section textarea {
    width: 65%;
    padding: 1rem 1rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color: #9f9f9c;
    left: 30%;
  }
  section button[type="submit"] {
    margin: 30px auto 0;
    background-color: #9f9f9c;
    color: #110101;
    font-size: 1.1rem;
    padding: 1rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s;
    width: 350px;
  }
footer {
    background-color: #00137e;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    text-align: center;
  }