* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	margin: 0;
	padding: 0;
	transition: 0.4s ease-in-out ;
	-o-transition: 0.4s ease-in-out ;
	-moz-transition: 0.4s ease-in-out ;
	-webkit-transition: 0.4s ease-in-out ;
	color: #2c3e50;
	font-family: 'Nova Mono', monospace;
}
body{
    overflow: hidden;
}
input::placeholder{
    color: #fff ;
}
/* Start Loading */
.loadd{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #34495e;
	z-index: 999999999;
}
.loadd .spinner {
    width: 80px;
    height: 80px;
    position: relative;
    text-align: center;
    top: calc(50vh - 80px);
    left: calc(50vw - 80px);
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.loadd .dot1, .loadd .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #1abc9c;
  border-radius: 100%;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.loadd .dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
/* End Loading */

/* Start Navbar */
.navigation-bar{
	overflow: hidden;
}
.navigation-bar .navbar{
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: transparent !important;
    top: auto
}
.navigation-bar .navigation-bar-top{
	position: fixed;
    z-index: 200;
    background-color: #fff !important;
	-webkit-box-shadow: 0px 3px 22px 1px rgba(44,62,80,0.3);
	-moz-box-shadow: 0px 3px 22px 1px rgba(44,62,80,0.3);
	-o-box-shadow: 0px 3px 22px 1px rgba(44,62,80,0.3);
	box-shadow: 0px 3px 22px 1px rgba(44,62,80,0.3);
    top: 0;
}
.navigation-bar .navbar-light .navbar-brand {
    color: #fff;
}
.navigation-bar .navbar-light .navbar-brand span{
	color: #1abc9c;
}
.navigation-bar .navbar .toggler-span{
	padding: 0;
    width: 50px;
    height: 50px;
	border: none;
	outline: inherit;
	overflow: hidden;
    position: relative;
}
.navigation-bar .navbar .toggler-span span{
	width: 26px;
    height: 2px;
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 13px);
}
.navigation-bar .navbar .toggler-span span:nth-of-type(1){
	transform: translateY(-8px);
}
.navigation-bar .navbar .toggler-span span:nth-of-type(3){
	transform: translateY(8px);
}
.navigation-bar .navbar .toggler-span.active span:nth-of-type(1){
    transform: translateY(0) rotate(-45deg);
}
.navigation-bar .navbar .toggler-span.active span:nth-of-type(2){
    display: none;
}
.navigation-bar .navbar .toggler-span.active span:nth-of-type(3){
    transform: translateY(0) rotate(45deg);
}
.navigation-bar .navbar-light .navbar-nav .nav-link {
    color: #fff;
}
.navigation-bar .navbar-light .navbar-nav .active>.nav-link,
.navigation-bar .navbar-light .navbar-nav .nav-link.active,
.navigation-bar .navbar-light .navbar-nav .nav-link.show,
.navigation-bar .navbar-light .navbar-nav .show>.nav-link {
    color: #1abc9c ;
}
.navigation-bar .navbar-light .navbar-nav .nav-link:focus,
.navigation-bar .navbar-light .navbar-nav .nav-link:hover {
    color: #1abc9c !important;
}
.navigation-bar .navbar-nav .nav-item:nth-of-type(4) .nav-link{
    padding-top: 4px ;
}
.navigation-bar .navbar-light .navbar-nav .nav-link button{
    padding: 5px 10px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    outline: inherit;
    cursor: pointer;
}
.navigation-bar .navbar-light .navbar-nav .nav-link button:hover{
    border: 1px solid #1abc9c !important;
    color: #1abc9c !important;
}
/* End Navbar */    

/* Start Header */
.headder{
    overflow: hidden;
    position: relative;
    background-image: url(../img/slid3.jpeg);
    background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
}
.headder .overlay{
    background-color: rgba(52,73,94,0.8);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.headder .overlay .header-text{
    color: #fff;
    position: absolute;
    width: 100%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.headder .overlay .header-text .text-info{
    text-align: center;
}
.headder .overlay .header-text .text-info h2{
    color: #fff;
    font-size: 22px;
}
.headder .overlay .header-text .text-info p{
    color: #bdc3c7;
    font-size: 14px;
}
.headder .overlay .header-text .header-input{
    text-align: center;
}
.headder .overlay .header-text .header-input input{
    padding: 15px;
    width: 470px;
    border: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    outline: inherit;
    background-color: rgba(255,255,255,0.4);
    color: #fff;
}
.headder .overlay .header-text .header-input button{
    border: 0;
    background-color: #1abc9c;
    color: #fff;
    padding: 15px;
    border-top-right-radius: 4px;
    margin-left: -10px;
    border-bottom-right-radius: 4px;
    outline: inherit;
    cursor: pointer;
}
/* End Header */

/* Start Count */
.count{
    overflow: hidden;
    position: relative;
    top: -90px;
    padding: 50px 0;
    opacity: 0;
}
.count .count-top{
    border: 1px solid #e9ecef;
    text-align: center;
    background-color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: 0px 3px 22px 1px rgba(44,62,80,0.3);
}
.count .count-top > div{
    padding: 25px 0;
}
.count .count-top > div:nth-of-type(2){
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
}
.count .count-top > div:nth-of-type(3){
    border-right: 1px solid #e9ecef;
}
.count .count-top > div span{
    font-size: 22px;
    font-weight: bold;
}
.count .count-top > div p{
    margin-top: 10px;
    margin-bottom: 0;
    color: #bdc3c7;
}
/* End Count */

/* Start Work */
.work{
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #95a5a6;
    opacity: 0;
}
.work .work-brand{
    text-align: center;
}
.work .work-brand h4{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}
.work .work-brand h4:before{
    content: '';
    width: 35px;
    height: 2px;
    background-color: #aabbcc;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}
.work .work-margin{
    margin-top: 100px;
    position: relative;
}
.work .work-margin > div{
    margin-bottom: 80px;
}
.work .work-margin:after{
    content: '';
    position: absolute;
    top: 16px;
    left: 174px;
    width: 67%;
    height: 1px;
    background-color: #95a5a6;
}
.work .work-margin .step{
    text-align: center;
    padding: 0 15px;
    position: relative;
}
.work .work-margin .step span{
    display: block;
    width: 35px;
    height: 35px;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #95a5a6;
    color: #95a5a6;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    background-color: #fff;
    transform: translateX(-50%);
}
.work .work-margin .step i{
    font-size: 45px;
    margin-top: 75px;
}
.work .work-margin > div:nth-of-type(1) .step i{
    color: #e67e22;
}
.work .work-margin > div:nth-of-type(2) .step i{
    color: #95a5a6;
}
.work .work-margin > div:nth-of-type(3) .step i{
    color: #2980b9;
}
.work .work-margin .step h6{
    margin: 30px 0 10px 0;
    font-weight: bold;
    font-size: 16px;
}
.work .work-margin .step p{
    line-height: 1.4;
    color: #7f8c8d;
    font-size: 14px;
}
/* End Work */

/* Start Features */
.features{
    margin: 50px 0 0 0;
    border-bottom: 1px solid #95a5a6;
    padding-bottom: 50px;
    opacity: 0;
}
.features .features-brand{
    text-align: center;
    padding: 50px 0 82px 0;
}
.features .features-brand h4{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}
.features .features-brand h4:before{
    content: '';
    width: 35px;
    height: 2px;
    background-color: #aabbcc;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}
.features .features-point .one,
.features .features-point .two{
    float: left;
}
.features .features-point .one{
    width: 30px;
}
.features .features-point .one i{
    font-size: 25px;
}
.features .features-point .two{
    width: calc(100% - 30px);
    padding-left: 30px;
}
.features .features-point .two h6{
    font-size: 18px;
    font-weight: bold;
}
.features .features-point .two p{
    color: #7f8c8d;
    margin-bottom: 50px;
    text-align: justify;
    width: 80%;
}
.features .i-1{
    color: #2ecc71;
}
.features .i-2{
    color: #3498db;
}
.features .i-3{
    color: #f39c12;
}
.features .i-4{
    color: #9b59b6;
}
.features .i-5{
    color: #fd79a8;
}
.features .i-6{
    color: #e67e22;
}
/* End Features */

/* Start Testimonials */
.testimonials{
    overflow: hidden;
    padding: 50px 0;
    opacity: 0;
}
.testimonials .click-button{
    text-align: center;
    padding: 50px 0;
}
.testimonials .click-button button:nth-of-type(1){
    border: 1px solid transparent;
    outline: initial;
    cursor: pointer;
    background-color: #34495e;
    color: #fff;
    font-size: 14px;
    width: 180px;
    padding: 15px 0;
}
.testimonials .click-button button:nth-of-type(2){
    border: 1px solid #34495e;
    outline: initial;
    cursor: pointer;
    background-color: transparent;
    color: #34495e;
    font-size: 14px;
    width: 180px;
    padding: 15px 0;
    margin-left: -10px;
}
.testimonials .carousel{
    padding: 70px 0;
}
.testimonials .carousel .carousel-indicators{
    bottom: -40px;
}
.carousel-control-next, .carousel-control-prev{
    width: 5%;
    font-size: 30px;
}
.testimonials .carousel .carousel-indicators li{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    padding: 5px;
    border: 1px solid #1abc9c;
    filter: grayscale(100);
}
.testimonials .carousel .carousel-indicators li img{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}
.testimonials .carousel .carousel-indicators li.active{
    filter: grayscale(0);
}
.testimonials .carousel .carousel-inner{
    text-align: center;
}
.testimonials .carousel .carousel-inner .carousel-item{
    width: 80%;
    margin: auto;
}
.testimonials .carousel .carousel-inner .carousel-item i{
    font-size: 35px;
    color: #7f8c8d;
    padding-bottom: 35px;
}
.testimonials .carousel .carousel-inner .carousel-item p{
    font-weight: bold;
    margin-bottom: 45px;
}
.testimonials .carousel .carousel-inner .carousel-item .testimonials-person h6{
    font-size: 14px;
    font-weight: bold;
}
.testimonials .carousel .carousel-inner .carousel-item .testimonials-person span{
    color: #7f8c8d;
}
/* End Testimonials */

/* Start Search */
.search{
    overflow: hidden;
    margin: 50px 0 0 0;
    position: relative;
    background-image: url(../img/slid3.jpeg);
    background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
    height: 250px;
    opacity: 0;
}
.search .overlay{
    background-color: rgba(52,73,94,0.8);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.search .overlay .search-input{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.search .overlay .search-input input{
    padding: 15px;
    width: 470px;
    border: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    outline: inherit;
    background-color: rgba(255,255,255,0.4);
    position: relative;
    color: #fff;
}
.search .overlay .search-input button{
    border: 0;
    background-color: #1abc9c;
    color: #fff;
    padding: 15px;
    border-top-right-radius: 4px;
    margin-left: -9px;
    border-bottom-right-radius: 4px;
    outline: inherit;
    cursor: pointer;
}
/* End Search */

/* Start Footer */
.footer{
    overflow: hidden;
    padding: 10px 0;
}
.footer .links ul{
    list-style: none;
    margin: 0;
}
.footer .links ul li{
    display: inline;
    margin: 0 5px;
}
.footer .links ul li a{
    color: #2c3e50;
    text-decoration: none;
}
.footer .links ul li:hover a{
    color: #1abc9c;
}
.footer .icon{
    text-align: center
}
.footer .icon i{
    padding: 0 5px;
}
.footer .icon i:hover{
    color: #1abc9c;
}
/* End Footer */
/* Start CopyRight */
.copy-right{
    background-color: #34495e;
    padding: 20px 0;
    text-align: center;
}
.copy-right p{
    color: #fff;
    margin: 0
}
.copy-right p a{
    text-decoration: none;
    color: #1abc9c;
}
.copy-right p span{
    color: #1abc9c;
}
/* End CopyRight */