*{
    margin: 0;
    padding: 0;
    font-family: 'Satisfy', cursive;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image:url(images/bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    
}
nav img{
    width: 150px;

}
.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: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 15px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(20, 117, 228);
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%,-50%);
}
.text-box h1{
    font-size: 65px;
    color: rgb(231, 175, 102);

}
.text-box p{
    margin: 10px 5 40px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    margin-bottom: 20px;

}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    padding: 12px 34px;
    font-size: 18px;
    font-weight: 600;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid rgb(245, 178, 178);
    background: rgb(250, 206, 206);
    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: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px; 
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #ffff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

/* Solutions */
.solutions{
    background-image:url(images/bg.jpg);
    background-size: cover;
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}
h1{
    font-size: 40px;
    font-weight: 600;
    color: rgb(241, 196, 128);
}
p{
    font-size: 15px;
    font-weight: 300;
    line-height:22px;
    padding: 10px;
    color: rgb(255, 255, 255);

}
.row{
    margin-top: 5%;
    display: flex;
    width: 80%;
    justify-content: space-between;
    margin-left: 150px;
}
.solutions-col{
    flex-basis: 30%;
    background: rgb(238, 211, 201);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    
}
.solutions-col p{
    color: rgb(0, 0, 0);
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.solutions-col:hover{
    box-shadow: 0 0 20px 0px rgb(134, 134, 134);

}
@media(max-width: 700px){
    .row{
        flex-direction: column;
        margin-left: 40px;
}
}
/* Company */
.company{
    background-image:url(images/bg.jpg);
    background-size: cover;
    width: auto;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.com{
    width: auto;
    margin: auto;
    text-align: center;
    padding-top: 40px;
}
/* .com-col{
    flex-basis: 800%;
    background: rgb(238, 211, 201);
    border-radius: 8000px;
    margin-bottom: 5%;
    padding: 15px 12px;
    box-sizing: border-box;
    transition: 0.5s;
} */
.com h3{
    background-color: cornflowerblue;

}
/* Reviews */
.reviews{
    background-image:url(images/bg.jpg);
    background-size: cover;
    width: 100%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.reviews-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.reviews-col p{
    padding: 0%;
    color: rgb(0, 0, 0);
}
.reviews-col h3{
    margin-top: 15px;
}
/* About Us Page */
.sub-header{
    height: 50vh;
    width: 100%;
    background-image:url(images/bg.jpg);
    text-align: center;
    background-size: cover;
    background-position: center;
}
.sub-header h1{
    margin-top: 100px;
}
.about-us{
    background-image:url(images/bg.jpg);
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about{
    text-align: center;
    padding-top: 30px;

}
.about img{
    height: 300px;
    width: 400px;
}
.about h1{
    padding-bottom: 30px;

}

/* Footer */
.footer{
    background-image: url(images/bg.jpg);
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgb(241, 62, 62);
}
.info{
    color: rgb(241, 62, 62);
}