
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  }


body{
    background: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;

}


/*
all h1 to h6 styles
*/
a{
    text-decoration: none;
}

h1,h2,h3,h4, h5, h6{
    font-weight: 300;
}

h1{
    font-size: 40px;
    line-height: 50px;
    font-weight: 200;

}

h2{
    font-size: 30px;
    line-height: 40px;
margin-top: 0;
}


h3{
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;

}

h4{
    color: #505050;
    font-size: 30px;
    line-height: 40px;



}

p{
    color: #757575;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;

}


/*..........................................

buttons style
............................................*/

.section-btn{
    margin: 32px 0 0 0 ;
    padding: 0;

}
.section-btn a {
    color: #fff;
    font-weight: normal;
    line-height: 45px;
    perspective: 1000px;

}

.section-btn a span{
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.5px;
    padding: 2px 27px;
    background: #4dc47d;
    border-radius: 1px;
    transition: 0.3s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
}

.section-btn a span::before{
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    background: #000;
    border-radius: 1px;
    padding: 2px 27px;
    transition: background 0.3s;
    transform: rotateX(-90deg);
    content: attr(data-hover);
    transform-origin: 50% 0;

}

.section-btn a:hover span,
.section-btn a:focus span{
    transform: rotateX(90deg) translateY(-22px);
}
/*..........................................

all sections
............................................*/

#about,#project,#team,#contact,footer{
    background: #ffffff;
}


.bg{
    background: transparent;
    transition: 0.2s ease;
}


.bg.scrolled{
    background:#40E0D0;
    height: 95px;
    transition: ease-in-out 0.10s ease;

}

.links{
    background: transparent;
    transition: 0.2s ease;
}

.links.scrolled{
    color:#e04040;
}

.jss{
    font-weight:400;
    cursor: pointer;
}

.back{
    background: #40E0D0;
    cursor: pointer;
    animation-name: example;
    height: 50px;
    animation-duration: 4s;
    animation-timing-function: ease out;

}
/* background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%); */
/* from {background-color:radial-gradient(circle, rgba(63,94,251,1) 0%);} */
    /* to {background-color: radial-gradient(circle, rgba(252,70,107,1) 100%);} */

@keyframes example{
    from {background:rgba(63,94,251,1);}
    to{background: rgb(0, 255, 229);}
}

/*  */
/* @media(max-width:820px) {
    .swiper-slide img {
        height: 40%;
        border-radius: 50%;
    }

    .swiper-slide span {
        font-size: 20px;
        line-height: 3;
      }

    .swiper-slide p {
        font-weight: normal;
        font-size: 200px;
      }

} */
/*..........................................

navbar
............................................*/
.navbar .navbar-brand{
font-weight: normal;
font-size: 25px;
color: #ffffff;
}

.navbar .navbar-nav .nav-link{
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 0;
    text-transform: uppercase;
    transition: all-ease-in 0.4s;
    color: #ffffff;


}
.navbar .navbar-nav .nav-link:hover{
    background: transparent;
    color: #fff;

}

.navbar .navbar-nav .nav-link::after{
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: transparent;
    transition: width 0.3s ease , background-color 0.3s ease;

}


.navbar .navbar-nav .nav-link:hover::after{
    width: 100%;
    background: #fff;
    color: #fff;
}

/*..........................................

home page
............................................*/

#home{
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
}

#home video{
    position: fixed;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    object-fit: cover;
    box-sizing:border-box ;
    overflow: hidden;
    z-index: -100;
    transition: 1s opacity;
}

#home .overlay{
    position: absolute;;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);

}

#home h1{
    color: #fff;
    font-size: 7vw;
    line-height: 1.2em;
}

#home p{
    color: rgba(250, 250, 250, 0.7);

}

#home .home-text{
    z-index: 99;
}


/*..........................................

About style
............................................*/

#about{
    position: relative;;

}

#about h3{
   font-size: 25px;
   letter-spacing: 12px;
   text-transform: uppercase;
}



/*..........................................

Project style
............................................*/


#project .project-item{
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    padding: 0;
    vertical-align: middle;
    text-align: center;

}

#project .project-item .project-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all ease-in-out 0.4s;
}
#project .project-item:hover .project-overlay{
    opacity: 1;
}

#project .project-item .project-overlay .project-info{
    padding: 12em 0;

}

.project-info h1{
    color: #fff;
    margin: 0;
}

.project-info h3{
    color: #d9d9d9;
    margin-top: 0;
    font-size: 20px;
    letter-spacing: 0.2px;
}


.project-item img{
    transition: all ease-in-out 0.4s;
}

.project-item:hover img{
    transform: scale(1.1);

}


/*..........................................

Google Review style
............................................*/

/* swiper slider */
.swiper {
    width: 100%;
    height: 75%;
  }

  .swiper-slide {
    text-align:center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 80%;
    padding: 5px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;;

}


  .swiper-slide .text{
    font-weight: 200;
  }

  .swiper-slide h3{
    font-weight:300;
  }

  .swiper-slide span{
    font-weight: 300;
    line-height: 10px;
    font-size: 8px;

  }


  /* ...................................
  contact us form
  ....................................... */


  #contact{
    background: url(../img/contactus.jpg)50% 0 repeat-y fixed;
    background-size: cover;
    background-position: center center;
    position: relative;
  }

 #contact .form-control{
    border: none;
    box-shadow: none;
    font-size: 18px ;
    font-weight: normal;
    margin-bottom: 22px;

  }


 #contact .form-control:focus{
    border-color:#d9d9d9;
  }

  #contact input{
    height: 55px;
    line-height: 45px;
  }

  #contact h1 {
    font-size: 24px;
    font-weight: bold;


}


  @media(max-width: 477px) {

    .swiper {
        height: 70%;
      }

    .swiper-slide img {
        width: 100px;
        height: 35%;
        border-radius: 50%;
    }

    .swiper-slide span{
        font-weight: 200;
        font-size: 12px;

      }

      .swiper-slide h3 {
        font-weight: normal;
        font-size: 10px;
      }

      #team{
        height: 60%;
      }
      /* #home video{
        position: fixed;
        min-height: 50%;
        min-width: 50%;
        height: auto;
        width: auto;
        background-size: cover;
        object-fit: cover;
        box-sizing:border-box ;
        overflow: hidden;
        z-index: -100;
        transition: 1s opacity;
    }
 */
 #home{
    height: 65vh;
 }
 #home video{
 position: absolute;
 min-height: 40%;
 min-width: 105%;
 height: 59px;
 width: 0;
    }

}

