*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header {
    min-height: 10vh;
    width: 100%;
    background-image: linear-gradient(rgba(9, 4, 84, 0.7), rgba(9, 11, 9, 0.5)), url("images/background-2.jpeg");
    background-position: center;
    background-size: cover;
    position: relative;
}

form.nosubmit {
    border: none;
    padding: 0;
  }
input.nosubmit {
    color: #fff3f3;
    float: right;
    width: 280px;
    border-radius: 10px;
    border: 1px solid rgb(188, 184, 184);
    display: block;
    padding: 9px 4px 9px 40px;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100px;
    height: 80%;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px ;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.nav-links ul li::after{
    content: '';
    width:0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.find-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.find-btn:hover{
    border: 1px solid #290c0a;
    background: #b2462e;
    transition: 1s;
}
nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #f44336;
        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-size: 22px;
        cursor: pointer;

    }
    .nav-links ul{
        padding: 30px;
    }
}
  /* ----body----- */

.body{
    width:80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1 {
    font-size: 36px;
    font-weight: 600;
}

p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px;
}
/* ------Footer------- */
footer{
    background: #111;
    height: auto;
    width: 100vw;
    padding-top: 30px;
    color: #fff;  
    margin-top: 3%
}
.footer-nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    text-align: left;
    list-style: none;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer-content h3{
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3 rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;
}
.socials a:hover i{
    color: aqua;

}
@media(max-width: 700px){
    .footer-content p{
        display: none;
    }
    .footer-content h3{
        display: none;
    }
}
.footer-nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3 rem 0;
}
.footer-nav li{
    margin: 0 10px;
}
.footer-nav a{
    text-decoration: none;
    color: rgb(87, 87, 124);
}

/* Cover photo formating */
.banner-photo{
   
    background-position: center;
    background-size: cover;
    position: relative;
    height: 70vh;
    margin-top: 5%;
    margin-left: 5%;
    margin-right: 5%;
    justify-content: center;
}
.row-innovation{
    margin-top: 5%;
    display: flex;
    justify-content: space-evenly;
}
.col-innovtion{
    flex-basis: 22%;
    background: white;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    cursor: pointer;
}
.band-banner-text {
    color: #FFF;
    text-shadow: 1px 1px #000;
    margin: 20px 20px 60px 20px;
    padding: 20px 20px 20px 20px;
    background: #000;
    width: 50%;
    bottom: -20px;
    position: absolute;
}
