@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{padding:0 ;
    margin:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    padding-top: 100px;

}

/*global tags */
h1{
    font-size: 2.5rem;
    font-weight: 700;
    color:#009688;
}

span{
    font-size:0.9rem;
    color:#757373;

}
h6{
    font-size:1.1rem;
    color:#009688;
}

/*navigation*/

nav{
    top:0;
    position:fixed;
    width:100%;
    background-color: #fff;
    display:flex;
    font-display: row;
    justify-content: space-between;
    align-items: center;
    padding:0.2vw 6vw; 
    z-index:999;
    transition: top 0.3s; 
  
}

nav img{
    height: auto;
    max-height: 90px;
    width:auto;
    max-width: 100%;
    cursor: pointer;
}
nav .navigation{
    display:flex;
}
#menu-btn{
    width:30px;
    height:30px;
    display: none;

}
#menu-close{
    display:none;
}
nav .navigation ul {
    display:flex;
    justify-content: flex-end;
    align-items: center;


}

nav .navigation ul li{
    list-style:none;
    margin-left: 30px;
}

nav .navigation ul li a{
    text-decoration: none;
    color: #009688;
    font-size:16px;
    font-weight: 500;
    padding:2px;
     
    transition: 0.5s ease;
    
}

nav .navigation ul li a:hover{
    
    border-radius: 7px;
    padding: 10px;
    background-color:#009688;
    color:whitesmoke;

}
#banner{
    background: linear-gradient(rgba(0,0,0,0.5),#009688), url(Images/contact.avif);
    background-size: cover;
    background-position: center;
    height:100vh;

}
.logo{
    width:90px;
    position: absolute;
    top:4%;
    left:5%;

}
.banner-text{
    text-align: center;
    color:white;
    padding-top: 180px;

}
.banner-text h1{
    font-size: 130px;
    color:#fff;
}
.banner-text p{
    font-size: 20px;
    font-style: italic;
}
.banner-btn{
    margin: 70px auto 0;

}
.banner-btn a{
    width:150px;
    text-decoration: none;
    display: inline-block;
    margin :0 10px;
    padding: 12px 0;
    color:white;
    border: 0.5px solid #fff;
    border-radius: 10px ;
    position: relative;
    z-index: 1;
    transition: color 0.5s;;
}
.banner-btn a span{
    width:0%;
    height:100%;
    position:absolute;
    top :0;
    left: 0;
    border-radius: 10px;
    background: white;
    z-index:-1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width:100%;
}
.banner-btn a:hover{
   
    color:#009688;

}

#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: -20px;;
    left:0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1{
    font-size: 50px;
}

.contact{
    width:100%;
    height:100vh;
    background: white;
    display: flex;
    padding-top:30px;
    align-items: center;
    justify-content: center;

   

}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap:2vw;
    padding: 2vh;
    backdrop-filter: blur(16px) saturate(97%);
    -webkit-backdrop-filter: blur(16px) saturate(97%);
    background-color: rgba(255, 255, 255, 0.89);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
    transition: all ease-in-out 5s;
    
}

.contact-left:hover{
    background:linear-gradient(to right,#67ebde,#008c96);
    
    
}

.contact-left-title h2{
    color: #111;
    font-size: 4vw;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border:none;
    width: 400px;
    height: 5px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    color:#111;
    border-radius: 50px;
}
.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus{
    border: 3px solid rgb(241, 177, 241);
}

.contact-inputs::placeholder{
    color: #000;
}
.contact-left button{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1vw;
    color:#111;
    gap:10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

form{
   max-width: 550px;
   width:90% ;
   background: transparent;
   margin: 3vh auto 3vh auto;
   padding: 40px;
   border: 2px solid #fff;
   border-radius: 7px;
   box-sizing: border-box;
   backdrop-filter: blur(80px);

}

form h3{
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight:800;
    margin-bottom: 20px;
}
label{
    display: block;
    margin :20px 0;
    color: #fff ;
    font-weight:10px;

}
input,  textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
    resize: none;
    border: none;
    border-bottom: 1px solid #D3D3D3;
}
input[type="text"]:focus ,textarea:focus{
    border-bottom: 2px solid #009688;
}

textarea::-webkit-scrollbar{
    width:4px;
}
textarea::-webkit-scrollbar-thumb{
    background-color: #009688;
    
}
.center{
    text-align: center;
}

.center button{
    padding:15px;
    border: none;
    background: none ;
    color: white;
    font-size: 18px;
    outline:none;
    cursor: pointer;
    width:150px;
    margin:20px auto 0;
    border-radius:35px;
    transition: 0.3s ease-in-out;
}
.center button:hover{
    background: #ffff ;
    color:#019587;
    border:1px solid #009688;
}

.maps{
    height: 400px;
    padding: 20px;
    margin: 10vh auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
iframe{
    max-width: 850px;
    width: 90%;
    max-height: 450px;
    height: 100%;
    border: none;
    

}
/*--footer--*/
#footer{
    padding:100px 0 20px;
    background-color: aliceblue;
    
}
.footer-row{
    width:80%;
    margin:0 auto;
    display:flex;
    justify-content: space-between;
    flex-wrap:wrap;

}
.footer-left,.footer-right{
    flex-basis: 45%;
    padding:10px;
    margin-bottom:20px;

}
.footer-right{
    text-align: right;
}
.footer-row h1{
    margin:10px 0;

}
.footer-row p{
    line-height:35px ;
    
}
.footer-left .fa,.footer-right .fa{
    font-size:20px;
    color:#009688;
    margin:10px;

}
.social-links{
    text-align: center;
}
.social-links .fa-brands{
    height:40px;
    width:40px;
    font-size:20px;
    line-height:40px;
    border:1px solid #009688;
    margin: 40px 5px 0;
    color: #009688;
    cursor: pointer;
    transition: 0.5s;
    

}
.social-links .fa-brands:hover{
    background: #009688;
    color:#fff;
    transform:translateY(-7px)
}
.social-links p{
    font-size: 12px;
    margin-top: 20px;
}
@media screen and (max-width: 770px){
    .banner-text h1 {
        font-size: 70px;
        color: #fff;
    }
    #menu-btn{
        
        display:initial;
    
    }
    #menu-close{
        display:initial;
        font-size: 1.6rem;
        color:#fff;
        padding:30px 0 20px 20px;
    }
    nav .navigation ul{
        position: absolute;
        top:0;
        right:-220px;
        width:220px;
        background-color:#0096879f;
        backdrop-filter: blur(4.5px);
        border:1px solid rgba(225,225,225,0.18);
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.3s ease;
    }
    nav .navigation ul.active{
        right: 0;
    }
    nav .navigation ul li{
        padding: 20px 0 20px 40px;
        margin-left: 0;
    }
    nav .navigation ul li a{
        color:#fff;

    }
    
    .contact-inputs{
        width: 80vw;
    }
    .contact-left-title h2{
        
        font-size: 7vw;
       
    }
    .contact-inputs::placeholder{
        font-size: 3vw;
    }

    .contact-right img{
        display: none;
    }

    .contact-left button{
        font-size: 3vw;
    }
    .contact-left-title hr{
       
        width: 0px;

    }

    .footer-left,.footer-right{
        flex-basis:100%;
        font-size:14px;
    }
}