*{
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;

}
 
.header{
    min-height: 100vh;
    width: 100%;
    background-image:url(images/contatbg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    filter: brightness(80%);
    filter: brightness(80%);
    animation:  slider 10s linear infinite;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
/* #logo{
    width: 200px;
    height: 150px;
} */
nav img{
    width: 150px;
}

.nav-link{
    flex: 1;
    text-align: right;
}

.nav-link ul li{
    list-style-type: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-link ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.nav-link ul li::after{
    content: '';
    width: 0px;
    height: 3px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.6s;
}
.nav-link ul li:hover::after{
    width: 55px;
}


.text-box{
    width: 80%;
    color: #ffffff;
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translate(-50 -50%);
    text-align: center;
    font-size: 26px;
    font-family: sans-serif Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;   
}
.text-box h1{
    font-size: 55px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
    
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1.5s;
}
nav .fa{
    display: none;
}
/* footer */
.footer{
    height: 50vh;
    width: 100%;
    background-image:url(images/why\ us.jpg);
    background-position: center;
    background-size: cover;
   

}
/* contact us */
.con-t{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.con-t .contact-info{
    max-width: 800px;
    text-align: center;
}
.con-t .contact-info h4{
    font-size: 20px;
    font-weight: 500;
    color: #fff; 
}
.con-t .contact-info p{
    font-size: 20px;
    font-weight: 300;
    color: #fff; 
}
.con-t{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

@media (max-width: 700px){
    .text-box h1{
        font-size: 15px;
    }
    .nav-link ul li{
        display: block;
    }
    .nav-link{
        position: absolute;
        background: #e0675f;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
       
        
    }

    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font: 20px;
        cursor: pointer;
        
    }
    .nav-link ul {
        padding: 30px;
        
    }
 
   
}
.contact{
    min-height: 100vh;
    background-color: #e8f0fe;
    padding:50p;
    text-align: center;
}
.container-5{
    position: fixed;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

.container{
    max-width: 800px;
    margin: 0 auto;
    overflow-x: hidden;
}
.container h2{
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}
.cotact-wraper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.contact-from{
    text-align: left;   
}
.contact-from h3{
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.from-group{
    margin-bottom: 20px;
}
input, textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #f8f9fa;
    color: #333;
}
input:focus,
textarea:focus{
    outline: none;
    box-shadow: 0 0 8px #bbb;
}
.btn{
    display: inline-block;
    padding: 12px 24px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}
.btn:hover{
    background-color: #45a049;

}
.contact-info{
    text-align: left;
}
.contact-info h3{
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.contact-info p{
    margin-bottom:10px;
    color: #555;
}
.contact-info i{
    color: green;
    margin-right: 10px;
}
@media(max-width: 768px){
    .container{
        padding: 20px;
       

    }
    .cotact-wraper{
        grid-template-columns: 1fr;
    }
}

