/******************************************/
/*       Basic Setup                     */
/*****************************************/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.2%;
    scroll-behavior: smooth;
}
body{
    font-family:  'Titillium Web', sans-serif;
    text-rendering: optimizeLegibility;
    font-size: 1.6rem;
   
}
/*       Heading          */
h1{
    font-size: 4.2rem;
    color: white;

}
ul li {
    list-style-type: none;
}

/* clear fix for fixing display background*/
/*.clearfix::after{
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    */



/******************************************/
/*       Resuseable Element              */
/*****************************************/
h2{
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .3rem;
    margin: auto ;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;

}
h2::after{
    content: "";
    display: block;
    height: .4rem;
    background: #14a58c;
    width: 8.6rem;
    margin: auto;
    margin-top: 3rem;

}
h3{
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: 600;
    
}
h4{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 2rem;
}
.box p{
    font-size: 1.6rem;
    margin-top: 3rem;
    font-weight: 300;
}
.box{
    padding: 1;
}
section{
    padding: 8rem 0;
 
}
/*button*/
.btn:link,
.btn:visited,
.btn{
    background: #3B3B3D;
    border-bottom: .3rem solid #000000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1.5rem 5.0rem;
    display: inline-block;
    border-radius: .5rem;
    margin-top: 4rem;


}
.row{
    max-width: 114rem;
    margin: 0 auto;
    text-align: center;
}
/*paragraph*/
.little-description{
    font-size: 1.8rem;
    width: 60%;
    margin-left: 20%;
    line-height: 3rem;
}
/******************************************/
/*       Header Section              */
/*****************************************/
header{
    background:  linear-gradient(rgba(0, 0, 0, 0.9),rgba(13, 80, 156, 0.9)) ,url(img/hero-bg.jpg);

    background-repeat: no-repeat;
    background-size: auto;
    background-position: left;
    background-attachment: fixed;
    height: 85vh;
    position: relative;
}
.logo{
    height:3.5rem;
    width: auto;
    margin-top: 3.5rem;
    float: left;
}
/*       Nav Section              */
.main-nav{
    float: right;
    margin-top: 3.5rem;
}
.main-nav li{
    display: inline-block;
     margin-left: 2rem;
}
.main-nav li:first-child{
    margin-left: 0;
}
.main-nav li a:link,
.main-nav li a:visited{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(123, 58, 132, 0);
    padding: .6rem .6rem;
    display:inline-block;
    font-size: 1.6rem;
    transition: .3s;
}
.main-nav li:hover a:link,
.main-nav li:hover a:visited{
    background: rgba(0.8, 0.8, 0.8, 0.8) ;
}


.active{
    background: rgba(0.8, 0.8, 0.8, 0.8)  ;
    border-radius: .3rem;
}

.sticky{
    position: fixed;
    top: 0;
    left: 0;
    background:rgba(0.8, 0.8, 0.8, 0.8) ;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.9);
    z-index: 9999;
}
.sticky .logo {
    margin-top: 0;
}
.sticky .main-nav {
    margin-top: .5rem;
}
/*Mobil*/
.mobile-menu span{
    color: white;
    font-size: 4rem;
    float: right;
    margin-top: 2rem;
    display: none;
}
.mobile-menu span:hover{
    cursor: pointer;
}
.overlay{
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color:rgb(0, 0, 0);
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;

}
.overlay-content{
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 3rem;
}
.overlay a {
    text-decoration: none;
    display: block;
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3rem;
    padding: 1rem 0;
}
.overlay a:hover{
    color: teal;
}
.close-btn{
    position: absolute;
    top: 2rem;
    right: 4.5rem;
    font-size:6rem;

}
.sticky .mobile-menu span{
    margin-top: 0;
}
.hero-text-box{
    width: 114rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-60%);
    text-align: center;
    font-size: 1.5rem;
    -webkit-transform: translate(-50%,-60%);
    -moz-transform: translate(-50%,-60%);
    -ms-transform: translate(-50%,-60%);
    -o-transform: translate(-50%,-60%);
}
.btn-hero:link,
.btn-hero:visited{
    background: linear-gradient(rgba(0, 0, 0, 0.774),rgba(13, 80, 156, 0.945));
    border-bottom: #C86a4d;
}
/******************************************/
/*       Services Section              */
/*****************************************/
.services-section{
    color: #fff;
    
    background:linear-gradient(rgba(60, 86, 153, 0.904),rgba(60, 86, 153, 0.904)) ,url(img/services-bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    
}
.service-icon{
    height: 13rem;
    margin-top: 4rem;
    margin-bottom: 3.5rem;
}
/******************************************/
/*       Services End              */
/*****************************************/
/******************************************/
/*       Team Section              */
/*****************************************/

.team-section{
    background:linear-gradient(rgba(231, 241, 248, 0.9),rgba(231, 241, 248, 0.9)), url(img/team-bg.jpg);
    background-position: top;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    
}
.team-section h2{
    color: #3c4761;
  
}
.team-section h2::after{
   background: #c8d9e5;
}
.team-member{
    margin-top: 4rem;
    margin-bottom: 3.5rem;
    height: 20rem;
    width: 20rem;
    border-radius: 50%;
}
.team-section h3{
    color: #27283d;
}
.role{
    color: #38bae7;
    font-size: 1.6rem;
    margin-top: .5rem;
    text-transform: capitalize;
    display: inline-block;
    
}
.team-section .box p{
color: #3c4761;

}
.social-link{
    margin-top: 4.5rem;
}
.social-link ul li {
    display: inline-block;
    margin: 0.5rem;
}
.social-link ul li a:link {
    color: black;
}

.social-link ul li a:link i::before{
    
    background: #bdd1df;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    font-size: 2rem;
    border-radius: 50%;
    padding: 2%;
    transition: .5s;
}
.social-link ul li a:hover i::before{
    color: #393939;
    transform: rotate(360deg);
}

/******************************************/
/*       Team end              */
/*****************************************/

/******************************************/
/*       Skill Section              */
/*****************************************/
.skill{
    color: #3c4761;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.8),rgba(255, 255, 255, 0.8)), url(img/skill-bg.jpg);
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.skill h2::after{
    background: #dfe8ed;
    width: 7rem;
}
.skill .box{
    margin-top: 4.5rem;
}
svg.radial-progress circle{
    stroke-width: 7;
}
svg.radial-progress text{
    fill: #3c4761;
    font-size: 1.6rem;
}
svg.web-design circle{
    stroke: #38bae7;
}

svg.html-css circle{
    stroke: #d74680;
}
svg.graphic circle{
    stroke: #15c7a8;
}
svg.ui-ux circle{
    stroke: #eb7d4b;
}
/******************************************/
/*       Skill Section  end            */
/*****************************************/
/******************************************/
/*       portfolio Section              */
/*****************************************/
.portfolio{
    background:linear-gradient(rgba(255, 221, 153, 0.9),rgba(255, 221, 153, 0.9)), url(img/portfolio-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: #3c4761;
}
.portfolio a{
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    font-size: 2rem;

}
.portfolio a:hover{
    color: #fff;
}
.portfolio h2{
    color: #3c4761;
}
.portfolio h2::after{
    background: #efc37f;
}

.portfolio-filter{
    margin: 4.5rem 0;
}
.portfolio .col:nth-child(2){
    margin-left: -1;
}
.portfolio-filter button{
    background: #ebc985;
    padding: 1rem 2rem;
    border-radius: .5rem;
    font-size: 1.8rem;
    border: 0;
    text-transform: uppercase;
    margin: 0 .5rem;
    transition: .5s;
}
.portfolio-filter button:hover{
    cursor: pointer;
    box-shadow: inset 0 .3rem .5rem rgba(60, 71, 97, 0.897);

}
.portfolio-image{
    width: 80%;
    height: auto;
   
}
.portfolio .btn-load-more{
    background: #17c2a4;
    border-color: #14a58c;
}
.portfolio .mixitup-control-active{
    background: #fff;
}
/* Use MixitUp Jquery plugin */

/******************************************/
/*       Portfolio  Section end              */
/*****************************************/
/******************************************/
/*       testimonial  Section Start             */
/*****************************************/
.testimonial{
    background: linear-gradient(rgba(215, 70, 128, 0.9),rgba(215, 70, 128, 0.9)) , url(img/testimonial-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size:cover ;
    background-attachment: fixed;
    color: #fff;
}
.testimonial h2::after{
    background: rgba(139, 4, 58, 0.828);
}
.testimonial .col:nth-child(3){
    margin-left: 0;
    margin-right: 0;
}
.testimonial .col:nth-child(1),
.testimonial .col:nth-child(2) {
    margin-top: 4rem;
}
.testimonial .col:nth-child(3),
.testimonial .col:nth-child(4) {
    margin-top: 8rem;
}
.client_photo{
    width: 10rem;
    float: left;
}
.client_photo img {
    height: 8rem;
    border-radius: 50%;
   margin-bottom: 2rem;
}
.client_review{
    width: 35rem;
    float: left;
}
.client_review p {
    font-size: 2.1rem;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 2rem;
}
.client_review .role{
    color: #ffdd99;
}

/******************************************/
/*       Testimonial  Section end              */
/******************************************/


/******************************************/
/*       Contact  Section start             */
/**************************************** */
.contact{
    background:linear-gradient(rgba(60, 86, 153, 0.904),rgba(60, 86, 153, 0.904)), url(img/contact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.contact h2::after{
    background:#273a31 ;
   
}
.contact form{
    margin-top: 5rem;
    width: 70%;
    margin-left: 15%;
}
.contact input[type="text"],
.contact input[type="email"],
.contact textarea{
    background:#273a71 ;
    border: .1rem solid #273a71;
    border-radius: .5rem;
    width: 100%;
    padding: 3.5%;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
}
.contact textarea{
    margin-top: .5rem;
}
.contact form ::placeholder{
    color: #fff;
    opacity: 1;

}
.btn-submit{
    background: #30bae7;
    border: 0;
    border-bottom : .1rem solid #299ec5;
    
}

.btn-submit:hover{
    cursor: pointer;
    background: #273a71;
    border-bottom : .1rem solid #273a71   ;
}
.social-link{
    text-align: center;
    
}




/******************************************/
/*       Contact  Section end              */
/*****************************************/
/******************************************/
/*       Footer  Section Start             */
/*****************************************/
.footer{
    background: #273a71;
    padding: 3rem 0;
    text-align: center;
    
   
}
.footer li{
    display: inline-block;
  
    margin:0 2rem ;
    
}
.footer li a {
    
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.8rem ;
}
.footer li a:hover{
    color: #299ec5;
}

/******************************************/
/*       Footer  Section end              */
/*****************************************/