*{
    margin: 0;
    padding: 0%;
    font-family: 'Poppins', sans-serif;
    
}
.header{
    min-height: 100vh;
 
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba( 4,9,30,0.7) ),url(images/pic2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.wel{
    padding: 30px;
    background-color: rgb(37, 148, 52);
    color: #fff;
    margin-left: 0px;

}
nav{
    display: flex;
    padding: 2%,3%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    /* margin-top: 30px; */
    width: 84px;

}
.nav-links{
    flex: 1;
    text-align: center;
}
.text-box{
    width:90% ;
    color: #fff;
    position: absolute;
    top: 60%;
    left: 50%;
    transform:translate(-50%,-50%) ;
   
    text-align: center;

}
.text-box h1{
    font-size: 40px;
    color: rgb(245, 238, 238);
}
.text-box p{
    
    color: rgb(245, 243, 243);
}
.text-box h1 p{
    margin: 10px 0  40px;
    font-size: 14px;
    color:white
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border:1.5px solid white;
    padding:7px 6px ;
    font-size: 13px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin-top: 18px;

}
.hero-btn:hover{
    border:1px solid #f44336 ;
    background-color: #bd8338;
    transition:1s ;

}



/* book00 */

.about-us{
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: left;
    border: #555;
}
.about-col{
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .3);
    color: #fff;
}

.about-col h1{
    padding-top: 0;
    font-size: 50px;
}


.red-btn{
 
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover{
    color: white;
}

.comment-form{
    flex-basis: 20%;
    margin: 40px;
    margin-bottom: 30px;
    border: green;
    border:var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding:2.5rem;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;

}
.box{
    border:var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding:2.5rem;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.comment-form div{
    display: flex;
    align-items: left;
    margin-bottom: 15px;
}
.comment-form div.fa{
    font-size: 30px;
    color: #f44336;
    margin: 5px;
    margin-right: 10px;
}
.comment-form div p{
    padding: 0px;
}
.comment-form div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.comment-form input , .comment-form textarea{
    width: 50%;
    padding: 5px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
   box-sizing: border-box;
}
.cla{
    margin-bottom: 5%;
    color: black;
}
.image{
    size: 10px;
}


/* footer */
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
   margin-bottom: 25px;
   margin-top: 20px;
   font-weight: 600;
   font-size: 30px;
}
.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap:2rem;
}

.footer .box-container .box h3{
    font-size: 20px;
    color:var(--black);
    padding: 1rem 0;
}

.footer .box-container .box a{
    display: block;
    font-size: 15px;
    color:var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box a i{
    padding-right: .5rem;
    color:var(--green);
}

.footer .box-container .box a:hover i{
    padding-right:2rem;
}

.footer .credit{
    padding: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    color:var(--light-color);
    border-top: .1rem solid rgba(0, 0, 0, .1);
}

.footer .credit span{
    color:var(--green);
}



@media(max-width:700px){
    .text-box h1{
        font-size: 20px;
    }

}