*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;

}

.container{
    width: 80%;
    margin: auto;
}

hr{
    color: #fff;
    background: #fff;
    padding: 0.5px;
    margin: 10px 0;
    border: none;
}

.containertext{
    text-align: center;
    color: #525453;
    padding: 50px 0;
}

.containertext h1{
    font-size: 34px;
}

    
.containertext p{
    font-size: 16px;
}

.containertext hr{
    color: #78ccee;
    background: #78ccee;
    padding: 1px;
    margin: 5px auto;
    border: none;
    width: 20%;
}

/*-Head-*/

#head{
    background: linear-gradient(180deg, rgba(120,204,238,1) 90%, rgba(252,252,253,1) 100%);
    height: 80vh;
    color: #fff;
}

.navbar{
    display: flex;
    justify-content: space-between;
}

.navbar img{
    height: 50px;
    transition: 0.5s;
}

.navbar img:hover{
    transform: scale(1.07);
}

.navbar a{
    height: 50px;
}

.navbar ul{
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar ul li a{
    text-decoration: none;
    color: #fff;
    padding: 0 15px;
    transition: 0.5s;
}

.navbar ul li a:hover{
    color: #e9e9e9;
}

.head-content{
    text-align: center;
    max-width: 700px;
    margin: 100px auto;
}

.head-content h1{
    font-size: 64px;
}

.head-content p{
    font-size: 18px;
}


/*-About Us-*/

#about-us{
    background: #fcfcfd;
}

.about-us-content{
    font-size: 18px;
    color: #525453;
    text-align: center;
    max-width: 80%;
    margin: auto;
}

/*-Services-*/

#services{
    background: #fcfcfd;
}

.services-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.service{
    text-align: center;
    border: 1px solid #525453;
    background: #78ccee;
    color: #fff;
    padding: 50px;
    margin: 25px;
    border-radius: 10px;
    transition: 0.6s;
}

.service img{
    height: 64px;
}

.service h1{
    padding: 20px 0;
}

.service a{
    padding: 7px;
    background: #fff;
    color: #78ccee;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid #78ccee;
}

.service a:hover{
    background: #78ccee;
    color: #fff;
}

.service:hover{
    background: #fff;
    color: #78ccee;
}

/*-Testimonials-*/

#testimonials{
    background: #fcfcfd;
}

.testimonial-logo{
    display: flex;
    justify-content: center;
    padding: 10px;
}

.testimonial-logo img{
    height: 52px;
    width: 52px;
    border: 1px solid #525453;
    border-radius: 100px;
    margin: auto;
}

.testimonial-text{
    text-align: center;
    margin: 10px 20px;
}

.testimonial-text p{
    font-style: italic;
    color: #525453;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin: 15px 0;
}

.testimonial-writer h3{
    color: #7d93b2;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-writer h4{
    color: #78ccee;
    font-weight: 600;
    font-size: 12px;
}

.testimonial-rating i{
    color: #78ccee;
}

.testimonial{
    background: #F6F7FA;
    padding: 20px;
    border-radius: 10px;
}

/*-Contact-*/

#contact-us{
    background: #fcfcfd;
    padding: 100px 0;
}

.contact-us-content{
    display: flex;
}

.contact-us-item{
    margin: auto;
}

.btn{
    width: 250px;
    height: 50px;
    background: #78ccee;
    color: #fff;
    border: 1px solid #525453;
    padding: 10px 50px;
    margin: 10px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.5s;
}

.btn:hover{
    background: #fff;
    color: #78ccee;
}

.containertext-contact{
    text-align: center;
    color: #525453;
    padding: 50px 0;
}

.containertext-contact h1{
    font-size: 34px;
}

    
.containertext-contact p{
    font-size: 16px;
}

.containertext-contact hr{
    color: #78ccee;
    background: #78ccee;
    padding: 1px;
    margin: 5px auto;
    border: none;
    width: 20%;
}

/*-Footer-*/

#footer{
    background: #78ccee;
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.footer-content .fab{
    margin: 15px;
    transition: 0.5s;
}

.footer-content .fab:hover{
    transform: scale(1.1);
}

.footer-content a{
    text-decoration: none;
    color: #fff;
}

.credit{
    font-size: 12px;
    padding-bottom: 10px;
}

/*-Media Queries-*/

@media (max-width: 1500px){
    .service h1{
        font-size: 18px;
    }
}

@media (max-width: 1100px){
    .services-content{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1000px){
    .navbar ul{
        display: none;
    }
    .navbar{
        display: flex;
        align-content: center;
    }
}

@media (max-width: 850px){
    .services-content{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px){
    .contact-us-item{
       text-align: center;
    }
    .head-content h1{
        font-size: 48px;
    }
    .head-content p{
        font-size: 16px;
    }
    .head-content{
        margin: 50px auto;
    }
}

@media (max-width: 340px){
    .service{
        margin: 25px 0;
    }
    .btn{
        width: 200px;
        font-size: 12px;
        padding: 0;
    }
}
