*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
/*-----Header banner-----*/
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/pexels-johannes-plenio-1103970.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
/*-----navigation links-----*/
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
nav .fa{
    display: none;
}
.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: #c9bd8f;
    text-decoration: none;
    font-size: 15px
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #c9bd8f;
    display: block;
    margin: auto;
    transition: 0.5s
}
.nav-links ul li:hover::after{
    width: 100%;
}
/*-----Header main text-----*/
.text-box{
    width: 90%;
    color: #c9bd8f;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: left;
}
.text-box h1{
    font-size: 82px;
}
.text-box p{
    margin: 10px 0 30px;
    font-size: 35px;
    color: #c9bd8f;
    line-height: 50px;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #c9bd8f;
    border: 1px solid #c9bd8f;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #74746c;
    background: #74746c;
    transition: 1s;
}
/*-----smaller device screens-----*/
@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #74746c;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #c9bd8f;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

/*-----services-----*/
.services{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;    
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.services h1{
    color: #132c4b;
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #132c4b;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 20px;
}
.services p{
    color: #132c4b;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 20px;
}
.services-col{
    flex-basis: 31%;
    background: #c9bd8f;
    border-radius: 20px;
    margin-bottom: 50px;
    margin-left: 50px;
    margin-right: 50px;
    padding: 0px 40px;
    box-sizing: border-box;
    transition: 0.5s;
}
.services-col ul{
    text-align: left;
    margin: 20px 0;
    color: #003352ff;
    margin-right: 8px;
    list-style: none;
}
.services-col ul li{
    margin: 5px;
}
.services-col ul li::before{
    content: '\2022';
    color: #003352ff;
    font-weight: bold;
    margin-right:10px;
}
.services h3{
    color: #132c4b;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.services-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*-----packages-----*/

.packages{
    width: 100%;
    min-height: 50vh;
    background: #a3b4b0;
    margin: auto;
    text-align: center;
}
.packages h1{
    color: #132c4b;
    font-size: 36px;
    padding: 50px 0;
    text-align: center;
}
.price-row{
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 45px;
}
.price-col{
    background: #154660;
    padding: 0% 10%;
    border-radius: 20px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}
.price-col p{
    font-size: 32px;
    color: #c9bd8f;
    font-weight: bold
}
.price-col ul{
    text-align: center;
    margin: 20px 0;
    color: #ddd;
    list-style: none;
}
.price-col ul li{
    margin: 15px 0;
    color: #c9bd8f;
}
.price-col ul li::before{
    content: '\2022';
    color: #c9bd8f;
    font-weight: bold;
    margin-right: 8px;
}
.price-col ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #c9bd8f;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.price-col ul li:hover::after{
    width: 60%;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(226,0,0,0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #c9bd8f;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/*-----consulting-----*/
.consulting{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.consulting h1{
    color: #132c4b;
    font-size: 36px;
    font-weight: 600;
}
.consulting p{
    color: #132c4b;
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    padding: 20px;
}
.consulting h3{
    color: #132c4b;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.consulting-col{
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: center;
}
.consulting-col img{
    width: 90%;
    border-radius: 10px;
}
.consulting-col p{
    padding: 0;
}
.consulting-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}

/*-----testimonials-----*/
.testimonials{
    width: 100%;
    margin: auto;
    background: #a3b4b0;
    padding-top: 50px;
    text-align: center;
}
.testimonials h1{
    color: #132c4b;
    font-size: 36px;
    text-align: center;
}
 .testimonials p{
    color: #132c4b;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 20px;
}
.testimonials-col{
    flex-basis: 100%;
    border-radius: 30px;
    margin-bottom: 5%;
    margin-left: 35px;
    margin-right: 35px;
    text-align: left;
    background: #f6f5e4;
    padding: 15px;
    cursor: pointer;
    display: flex;
}
.testimonials-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%
}
.testimonials-col p{
    padding: 0;
}
.testimonials-col h3{
    margin-top: 15px;
    text-align: left;
    color: #132c4b;
}
.testimonials-col .fa{
    color: #FFD700;
}
.testimonials-row{
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: grid;
}

@media(max-width: 700px){
    .testimonials-col img{
    margin-left: 0px;
    margin-right: 15px;
    }
}

/*-----call to action-----*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #c9bd8f;
    font-size: 30px;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*-----call to action-----*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #c9bd8f;
    margin: 0 20px;
    cursor: pointer;
    padding: 20px 0;
    font-size: 25px;
}
.fa-heart-o{
    color: #c9bd8f;
}


/*------------- Web Design page--------------*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/vector-banner.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #c9bd8f;
}
.sub-header h1{
    margin-top: 15px;
    font-size: 40px;
}

.Web-Design{
    width: 80%;
    margin: auto;
    margin-top: 80px;
    padding-bottom: 50px;
}

.web-design-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.web-design-col img{
    width: 100%
}

.web-design-col h1{
    padding-top:  0:
}

.web-design-col p{
    padding: 15px 0 25px;
}

/*-------------- App Dev Content ---------------*/
.app-dev-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.app-dev-left{
    flex-basis: 65%;
}

.app-dev-left img{
    width: 100%;
}

.app-dev-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}

.app-dev-right{
    flex-basis: 32%; 
}

.app-dev-right h3{
    background: #c9bd8f;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.app-dev-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}


/*--------------Contact Us Page -------------*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #c9bd8f;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div  p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px; 
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}




































