 
@FONT-FACE {
    font-family: "poppins";
    src: url(poppins.woff2)
}

@FONT-FACE {
    font-family: "robotomed";
    src: url(robotomed.woff2)
}


/*** 

====================================================================
  Reset
====================================================================

 ***/
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


body {
  font-size:16px;
  color:#333;
  line-height:26px;
  font-weight:400;
  background:#ffffff;
  font-family: "poppins";
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.large-container{
  max-width: 1550px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:1200px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{

  font-weight: 400;
  font-size: 16px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

ul,li{
  list-style:none;
  padding:0px;
  margin:0px; 
}

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  
  color: #6e6e6e;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-weight: normal;
  color: #000;
  margin: 0px;
  transition: all 500ms ease;
font-family: "robotomed";
}

/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 26px;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{

  font-weight: 400;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  color: #ffffff;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.5); 
}

/* AnimaciÃƒÂ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

/** button **/


.theme-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 26px;
  
  color: #fff !important;
  text-align: center;
  padding: 12px 36px;
  text-transform: capitalize;
  z-index: 1;
  transition: all 500ms ease;
border-radius: 0 30px 30px;
}

.theme-btn.btn-one{

}

.theme-btn:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  right: 0px;
  top: 0px;
  opacity: 0.1;
  z-index: -1;
  transition: all 500ms ease;
}

.theme-btn.btn-one:before{
  background: #000;
}

.theme-btn:hover:before{
  width: 100%;
  left: 0px;
}

.pagination{
  position: relative;
  display: block;
}

.pagination li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.pagination li:last-child{
  margin: 0px !important;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #ffffff;
  text-align: center;
  color: #000;
  z-index: 1;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current{
  color: #fff;
}

.sec-pad{
  padding: 50px 0px;
}

.mr-0{
  margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top{
position: fixed;

right: 30px;

bottom: 30px;

z-index: 99;



border-radius: 50%;



line-height: 50px;

text-align: center;
}

.scroll-to-top .visible {
  visibility: visible!important;
  opacity: 1!important;
}

.scroll-to-top .scroll-top-inner {
  opacity: 0;
  visibility: hidden;
width: 50px;
height: 50px;
background: #67bb00;
background: #67bb00;
border-radius: 0 50% 50%;
}
/*
.scroll-to-top .scroll-top-inner{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
  -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
  transition: all cubic-bezier(.4,0,.2,1) .4s;
}*/

.scroll-to-top .scroll-bar {
  width: 50px;
  height: 2px;
  margin-right: 10px;
  position: relative;
}

.scroll-to-top .scroll-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f4244f;
  opacity: .3;
}

.scroll-to-top .scroll-bar .bar-inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: currentColor;
}

.scroll-to-top .scroll-bar-text{
  font-size: 14px;
  
  cursor: pointer;
  transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover{
  transform: scale(1.1);
}



@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.sec-title h5{
text-transform: capitalize;
margin-bottom: 15px;
font-weight: normal;
font-size: 17px;
}



.sec-title h2 {
font-size: 24px;
text-transform: capitalize;
}


/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
padding-bottom: 30px;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/** header-top **/


.header-top{
  position: relative;
  width: 100%;
}

/*
.header-top:after {
  position: absolute;
  content: '';
  width: 82%;
  height: 1px;
  right: 0px;
  bottom: 0px;
background: #e7e7e7;
  transition: all 500ms ease;
}*/


.header-top .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
border-bottom:1px solid #eee;
}

.header-top .info li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  padding: 15px 25px 14px 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  margin-right: 25px;
}

.header-top .info li:last-child{
  padding-right: 0px;
  margin-right: 0px;
  border: none;
}

.header-top .info li i{
  position: absolute;
  left: 0px;
  top: 19px;
  font-size: 18px;
}

.header-top .info li a{
  display: inline-block;
  color: #fff;
}

.header-top .info li a:hover{

}
/*
.header-top .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
}*/

.header-top .social-links li:last-child{
  margin: 0px !important;
}

.header-top .social-links li p{
  font-size: 15px;
  color: #fff;
}

.header-top .social-links li a{
  font-size: 15px;
  color: #fff;
}

.header-top .social-links li a:hover{

}

/** header-lower **/

.header-lower{
position: absolute;
width: 100%;
left: 0;
right: 0;
}

.main-header .outer-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .outer-box .menu-area {
background: #1e7c81;
position: relative;
padding-right: 150px;
background: linear-gradient( to right , #1e7c81 ,#065f63);
}



.main-header .outer-box .menu-area:after {
position: absolute;
content: '';
width: 20%;
height: 100%;
right: 100%;
bottom: 0px;
background: #1e7c81;
transition: all 500ms ease;
}


.main-header .logo-box{
  position: relative;
  float: left;
  padding: 27px 0px 33px 0px;
  margin-right: 150px;
}

.main-header .logo-box .logo{
  width: 100%;
}

.main-header .logo-box .logo img{
  width: 100px;
}

.main-header .nav-right{
  position: relative;
  display: flex;
  align-items: center;
}

.main-header .nav-right .support-box{
  position: relative;
  margin-right: 40px;
}

.main-header .nav-right .support-box h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  
  padding-left: 30px;
}

.main-header .nav-right .support-box h6 i{
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 20px;
}

.main-header .nav-right .support-box h6 a{
  display: inline-block;
  color: #000;
}

.main-header .nav-right .support-box h6 a:hover{

}

.main-header .search-box-outer{
  position: absolute;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
float: right;
width: 90px;
height: 60px;
line-height: 60px;
text-align: center;
right: 0;z-index: 1;
overflow: hidden;
}


.main-header .search-box-outer:after {
content: '';
position: absolute;
width: 165px;
height: 155px;
border-radius: 50%;
border-radius: 25% 50% 0% 100%;
background-color: #fdfdfd33;
z-index: -1;
left: 0;
top: -20px;
}

.main-header .search-box-outer:hover{

}


/*** Search Popup ***/

.search-popup {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
height: 100vh;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.80);
  padding-bottom: 200px;
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
}

.search-popup.popup-visible {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.search-popup .popup-inner{
  width: 100%;
 height: 100%;
}


.search-popup .popup-inner .logo-box img {
width:120px;
}

.search-popup .upper-box{
  position: relative;
  padding: 70px 70px;text-align: center;
}

.search-popup .overlay-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}

.search-popup .close-search {
position: absolute;
font-size: 22px;
color: #fff;
cursor: pointer;
z-index: 5;
top: 20px;
transition: all 500ms ease;
right: 25px;
}

.search-popup .close-search:hover {
  color: red;
}

.search-popup .search-form {
  position: relative;
  width: 100%;
  padding: 100px 0px 250px 0px;
}

.search-popup .search-form .form-group{
  position: relative;
  margin: 0px;
}

.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 90px;
  padding: 20px 50px;
  background: #111;
  line-height: 30px;
  font-size: 20px;
  color: #fff;
  
  border: none;
  font-weight: 400;
  border-radius: 0px;
box-shadow:none;
}

.search-popup .search-form fieldset input[type="search"]:placeholder {
    color: #fff;
    opacity: 1;
}

.search-popup .search-form fieldset button[type="submit"] {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 22px;
  color: #1e7c81;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .search-form fieldset input[type="search"]:focus{

}

.search-popup .form-control:focus{
  box-shadow: none !important;
}


/** main-menu **/

.main-menu{
  float: left;

}

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:16px;
  line-height:30px;
  padding: 40px 0px;
  font-weight:500;
  
  opacity:1;
  color: #fff;
  z-index:1;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
text-transform: capitalize;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
 background: #67bb00; 
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:260px;
  margin-top: 15px;
  z-index:100;
  display:none;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  background-color: #fff;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding: 10px 15px;
  line-height:24px;
  font-weight:500;
  font-size:15px;
  text-transform:capitalize;
  
  color:#333;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > a{
  border-bottom: 1px solid rgba(0,0,0,0.1);
}


.main-menu .navigation > li > ul > li > a:after {
content: '';
position: absolute;
top: 0;
left: 0;
-webkit-transition: all .4s ease;
transition: all .4s ease;
width: 3px;
height: 0;
background: linear-gradient( to bottom , #1e7c81 ,#065f631a);
}


.main-menu .navigation > li > ul > li > a:hover:after { 
height: 100%;
}

.main-menu .navigation > li > .megamenu li > a{
  padding-left: 0px;
}

.main-menu .navigation > li > .megamenu h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover{

}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:10px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:800;
  text-align:center;
  z-index:5;  
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-top: 15px;
  width:230px;
  z-index:100;
  display:none;
  border-radius: 0px;
  background-color: #37393d;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding:10px 30px;
  line-height:24px;
  font-weight:500;
  font-size:15px;
  text-transform:capitalize;
  
  color:#fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover{
  
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  top: 0%; 
  margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn{
  
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}

.sticky-header .main-menu .navigation > li > a{
  padding: 30px 0px;
color: #000;
}

.sticky-header .logo-box{
margin: 0;
padding: 0;
}

.main-header .sticky-header .logo-box .logo img {
width:60px;
}

.header-style-two .sticky-header .main-menu .navigation > li > a {
padding: 8px 15px;
}

.sticky-header .nav-right{
  padding: 2px 0px;
}


.main-header .sticky-header .search-box-outer{ 
color: #333;

}

.main-header .sticky-header .outer-box .menu-area { 
background: none;}


.main-header .sticky-header .outer-box .menu-area:after { 
background: none;}




.main-header .sticky-header .outer-box .menu-area {
padding-right: 0;
}


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4{
  margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
padding: 25px;

text-align: center;
}

.mobile-menu .nav-logo img {
width:100px;
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #000;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.9s ease;
  -moz-transition:all 0.9s ease;
  -ms-transition:all 0.9s ease;
  -o-transition:all 0.9s ease;
  transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 15px;
  margin-left: 10px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  color: #ffffff;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;text-align: center;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  
}

div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 50px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 18px;
  color: #ffffff;
  font-weight: normal;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}


.mobile-menu .contact-info ul li i {
margin-right: 8px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}

.main-header .outer-box{
  position: relative;
}


/** banner-section **/



.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

.owl-nav button{
  background: transparent;
}


.banner-section .shape .shape-1{
  width: 100%;
  height: 30px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.banner-section .shape .shape-2{
  width: 660px;
  height: 110px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.banner-section .shape .shape-3{
  width: 715px;
  height: 150px;
  opacity: 0.7;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}


/** search-field **/

.search-field{
  position: relative;
}

.search-field .outer-container{
  position: relative;
  width: 100%;
  background: transparent;
  z-index: 2;
  margin-top: -130px;
}

.search-field .outer-container .search-area{
  position: relative;
  display: block;
  background: #fff;
  padding: 40px 40px;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.10);
}

#ui-datepicker-div.ui-widget-content {
  background: transparent;
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 0px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: #151515 none repeat scroll 0 0;
  border: 2px solid #252525;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight, 
.ui-widget-content .ui-state-highlight, 
.ui-widget-header .ui-state-highlight{
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev, 
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  background: #fff;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover, 
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
  z-index: 99999999;
  background: #ffffff;
}

.ui-datepicker th {
  border: medium none;
  
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active{
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}

.ui-icon{
  position: relative;
  left: 3px;
  top: 3px;
}

.search-field .title-text h6{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 20px 6px 20px;
}

.search-field .search-area form{
  position: relative;
  display: block;
  margin-left: 5px;
  padding-right: 185px;
}

.search-field .search-area .form-group{
  position: relative;
  padding: 0px 10px;
  margin-bottom: 0px;
}

.search-field .search-area .form-group input[type='text'],
.search-field .search-area .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #000;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.search-field .search-area .form-group .icon{
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 1;
  font-size: 16px;
  color: #808080;
}

.search-field .search-area .form-group input:focus{

}

.search-field .search-area .btn-box{
  position: absolute;
  top: 0px;
  right: 0px;
}

.search-field .search-area .btn-box .theme-btn{
  padding: 12px 28.5px;
}


/** about-section **/

.about-section{
  position: relative;
}

.image_block_one .image-box .image{
  overflow: hidden;
}

.image_block_one .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.image_block_one .image-box .image:hover img{
  transform: scale(1.05);
}

.image_block_one .image-box .icon{
  top: -20px;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.image_block_one .image-box .text-box{
  width: 220px;
  padding: 47px 15px 43px 15px;
}

.image_block_one .image-box .text-box .light-icon{
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.image_block_one .image-box .text-box h3{
  line-height: 34px;
}

.image_block_one .image-box .shape-box .shape-1{
  background-repeat: no-repeat;
}

/** overlay-layer-animation **/

.overlay-anim-black-bg {
  display: inline-block;
  overflow: hidden;
}

.overlay-anim-black-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: 1s cubic-bezier(.858, .01, .068, .99);
  -o-transition: 1s cubic-bezier(.858, .01, .068, .99);
  transition: 1s cubic-bezier(.858, .01, .068, .99);
  z-index: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);       
}

.overlay-anim-black-bg:after{
  background: #222;
}

.overlay-anim-black-bg.overlay-animation:after{
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
}

.content_block_one .content-box .inner .single-item{
  position: relative;
  display: block;
  padding: 12px 0px 8px 100px;
  min-height: 80px;
}

.content_block_one .content-box .inner .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 40px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

.content_block_one .content-box .inner .single-item h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
}

.list-style-one li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  padding-left: 30px;
  margin-bottom: 5px;
}

.list-style-one li:last-child{
  margin-bottom: 0px;
}

.list-style-one li:before{
  position: absolute;
  content: "\e90a";
  font-family: 'icomoon';
  font-size: 16px;
  left: 0px;
  top: 0px;
}

.content_block_one .content-box .list-style-one{
  margin-bottom: 32px;
}

.about-section .pattern-layer{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 410px;
  height: 460px;
  background-repeat: no-repeat;
}


/** feature-section **/

.feature-section{
position: relative;
padding: 50px 0;

}

.feature-block-one .inner-box {
  overflow: hidden;
  background: #515358;
  transition: all 500ms ease;

border-radius: 10px;

overflow: hidden;
}

.feature-block-one .inner-box:hover{

}

.feature-block-one .inner-box .image-box{
  overflow: hidden;
  width: 100%;
height: 200px;
display: grid;
align-items: center;background: #fff;
border: 1px solid #eee;border-radius: 10px 10px 0 0;
}

.feature-block-one .inner-box .image-box img{
width: auto;
transition: all 500ms ease;
max-height: 180px;
margin: 0 auto;
width: 260px;
}

.feature-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.feature-block-one .inner-box .content-box{
background: linear-gradient( to right , #1e7c81 ,#065f63);
  padding: 15px 25px;
  text-align: center;
  transition: all 500ms ease;text-transform: capitalize;
}

.feature-block-one .inner-box:hover .content-box{
background: linear-gradient( to right , #333 , #111);
}

.feature-block-one .inner-box .content-box .icon-box{
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .content-box .icon-box{
  color: #fff;
}

.feature-block-one .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 20px;
  margin-bottom: 0;
}

.feature-block-one .inner-box .content-box h3 a{
  display: inline-block;
  color: #fff;
}

.feature-block-one .inner-box .content-box h3 a:hover{
  text-decoration: underline;
}

.feature-block-one .inner-box .content-box p{
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 16px;
}

.feature-block-one .inner-box .content-box .link a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  
text-transform: capitalize;
}

.feature-block-one .inner-box .content-box .link a i{
  position: relative;
  opacity: 0;
  font-size: 14px;
  top: 1px;
  transition: all 500ms ease;
}

.feature-block-one .inner-box .content-box .link a:hover i{
  opacity: 1;
  margin-left: 8px;
}


/** service-section **/

.service-section{
  position: relative;
  padding: 115px 0px 70px 0px;
}

.tabs-box .tab{
  position:relative;
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab{
  display:block;  
}

.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}

.content_block_two .content-box .text h3{
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

.image_block_three .image-box{
  padding-bottom: 50px;
}

.content_block_two .content-box .text{
  margin-bottom: 32px;
}

.content_block_two .content-box .text p{
  margin-bottom: 26px;
}

.content_block_two .content-box .text p:last-child{
  margin-bottom: 0px;
}

.content_block_two .content-box .single-item{
  padding: 0px 0px 0px 100px;
  margin-bottom: 42px;
}

.content_block_two .content-box .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: 1px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 40px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  z-index: 1;
  transition: all 500ms ease;
}

.content_block_two .content-box .single-item:hover .icon-box{
  color: #fff;
}

.content_block_two .content-box .single-item .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0,0);
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
}

.content_block_two .content-box .single-item:hover .icon-box:before{
  transform: scale(1,1);
}

.content_block_two .content-box .single-item h4{
  font-size: 20px;
  line-height: 30px;
  
  margin-bottom: 16px;
}

.content_block_two .content-box .single-item h4 a{
  display: inline-block;
  color: #000;
}

.content_block_two .content-box .single-item h4 a:hover{

}

.service-section .tab-btns li{
  position: relative;
  display: block;
  float: left;
  width: 33.333%;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  
  background: #fff;
  text-align: center;
  padding: 30px 15px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  transition: all 500ms ease;
}

.service-section .tab-btns li.active-btn,
.service-section .tab-btns li:hover{
  color: #fff;
}

.service-section .tab-btns li:before{
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  transition: all 500ms ease;
}

.service-section .tab-btns li.active-btn:before,
.service-section .tab-btns li:hover:before{
  opacity: 1;
}

.image_block_two .image-box .image{
  overflow: hidden;
}

.image_block_two .image-box .image img{
  width: 100%;
}

.image_block_two .image-box .image:before{
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.image_block_two .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.image_block_two .image-box .icon-box{
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 50px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
}

.image_block_two .image-box .icon-box:before{
  position: absolute;
  content: '';
  width: 160px;
  height: 160px;
  border-radius: 50%;
  left: -20px;
  top: -20px;
  border: dashed;
  border-width: 2px;
}

.image_block_three .image-box .image{
  overflow: hidden;
}

.image_block_three .image-box .image img{
  width: 100%;
}

.image_block_three .image-box .image:before{
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.image_block_three .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.image_block_three .image-box .text{
  position: absolute;
  left: 0px;
  bottom: 50px;
  width: calc(100% - 55px);
  padding: 32px 20px 32px 25px;
  z-index: 1;
}

.image_block_three .image-box .text:before{
  position: absolute;
  content: '';
  width: 35px;
  height: 100%;
  top: 0px;
  right: -35px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 33%, 50% 75%, 0% 100%, 0% 100%, 0% 80%, 0% 20%);
}

.image_block_three .image-box .text h5{
  position: relative;
  font-size: 18px;
  line-height: 26px;
  
  color: #fff;
  padding-left: 35px;
}

.image_block_three .image-box .text h5 i{
  position: absolute;
  left: 0px;
  top: -2px;
  font-size: 30px;
}

.content_block_three .content-box{
  position: relative;
  display: block;
  margin-left: 20px;
}

.content_block_three .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.content_block_three .content-box .text h3{
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.content_block_three .content-box .text p{
  margin-bottom: 26px;
}

.content_block_three .content-box .text p:last-child{
  margin-bottom: 0px;
}

.content_block_three .content-box .list-box{
  position: relative;
  display: flex;
  justify-content: space-between;
}

.content_block_three .content-box .list-style-one li{
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.content_block_three .content-box .list-style-one li:before{
  color: #b8b8b9;
}

.content_block_three .content-box .list-style-one{
  position: relative;
}

.content_block_three .content-box .list-style-one:before{
  position: absolute;
  content: '';
  background: #e5e5e5;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -50px;
}

.content_block_three .content-box .list-style-one:last-child:before{
  display: none;
}

.content_block_three .content-box .list-style-one:last-child{
  padding-left: 30px;
}

.service-section .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 316px;
  height: 406px;
  background-repeat: no-repeat;
}

.service-section .pattern-layer .pattern-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 261px;
  height: 188px;
  background-repeat: no-repeat;
}


/** chooseus-section **/

.chooseus-section{
  padding: 115px 0px 110px 0px;
  overflow: hidden;
}

.chooseus-section .pattern-layer{
  position: absolute;
  left: -130px;
  top: -150px;
  width: 292px;
  height: 292px;
  background-repeat: no-repeat;
  z-index: 1;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.chooseus-section .outer-container{
  padding: 0px 120px;
  max-width: 1920px;
  margin: 0 auto;
}

.chooseus-section .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: calc(50% + 285px);
  height: 100%;
  background: #f2efeb;
  clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%, 0% 0%);
}

.content_block_four .content-box{
  position: relative;
  display: block;
}

.content_block_four .content-box .inner-box{
  margin: 0px 10px;
}

.content_block_four .content-box .inner-box .single-column{
  padding: 0px 5px;
}

.content_block_four .content-box .inner-box .single-item{
  position: relative;
  display: block;
  background: #fff;
  padding: 30px 30px 21px 30px;
  margin-bottom: 10px;
  z-index: 1;
}

.content_block_four .content-box .inner-box .single-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.content_block_four .content-box .inner-box .single-item:hover:before{
  height: 100%;
}

.content_block_four .content-box .inner-box .single-item .icon-box{
  background: #fdf1e9;
  margin-bottom: 11px;
}

.content_block_four .content-box .inner-box .single-item h5{
  line-height: 28px;
  transition: all 500ms ease;
}

.content_block_four .content-box .inner-box .single-item:hover h5{
  color: #fff;
}

.image_block_four .image-box{
  position: relative;
  display: block;
  margin-left: 47px;
}

.image_block_four .image-box img{
  width: 100%;
}

.image_block_four .image-box .image-1{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%, 25% 0%);
}

.image_block_four .image-box .video-inner .video-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.image_block_four .image-box .video-inner .video-btn a{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 110px;
  background: #fff;
  text-align: center;
  font-size: 40px;
  border-radius: 50%;
}

.image_block_four .image-box .video-inner .video-btn a:before,
.image_block_four .image-box .video-inner .video-btn a:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgb(59, 59, 59);
  box-shadow: 0 0 0 0 rgb(59, 59, 59);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.image_block_four .image-box .video-inner .video-btn a:after{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.image_block_four .image-box .image-shape .shape-1{
  position: absolute;
  left: -20px;
  bottom: -80px;
  width: 238px;
  height: 238px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.image_block_four .image-box .image-shape .shape-2{
  position: absolute;
  top: -90px;
  right: -70px;
  width: 184px;
  height: 200px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}


/** team-section **/

.team-section{
  position: relative;
}

.team-block-one{
  max-width: 270px;
  margin: 0 auto;
  margin-top: 40px;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
  padding-bottom: 70px;
}

.team-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.team-block-one .inner-box .image-box .image:before{
  position: absolute;
  content: '';
  background: #000;
  width: calc(100% - 14px);
  height: 100%;
  left: 7px;
  top: 7px;
  transform: scale(0,0);
  opacity: 0.4;
  z-index: 1;
  border-radius: 50%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 93%, 0% 96%, 0% 0%);
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .image:before{
  transform: scale(1,1);
}

.team-block-one .inner-box .image-box .image img{
  width: 100%;
  border-radius: 50%;
  transition: all 500ms ease;
}

.team-block-one .inner-box .image-box .shape{
  position: absolute;
  left: 0px;
  top: -1px;
  width: 270px;
  height: 255px;
  background-repeat: no-repeat;
  z-index: 1;
}

.team-block-one .inner-box .image-box .bar-box .bar{
  position: absolute;
}

.team-block-one .inner-box .image-box .bar-box .bar-1{
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 74px;
  height: 26px;
  border-radius: 0% 0% 50% 50%;
}

.team-block-one .inner-box .image-box .bar-box .bar-2{
  left: 50%;
  transform: translateX(-50%);
  bottom: 32px;
  width: 92px;
  height: 12px;
  border-radius: 10px;
}

.team-block-one .inner-box .image-box .bar-box .bar-3{
  left: 50%;
  transform: translateX(-50%);
  bottom: 51px;
  width: 110px;
  height: 12px;
  border-radius: 10px;
}

.team-block-one .inner-box .image-box .social-links{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0,0);
  transition: all 500ms ease;
  z-index: 2;
}

.team-block-one .inner-box:hover .image-box .social-links{
  transform: translate(-50%,-50%) scale(1,1);
}

.team-block-one .inner-box .image-box .social-links li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  margin: 0px 10px;
}

.team-block-one .inner-box .image-box .social-links li a{
  display: inline-block;
  color: #fff;
}

.team-block-one .inner-box .image-box .social-links li a:hover{

}

.team-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 7px;
}

.team-block-one .inner-box .lower-content{
  padding-top: 25px;
}

.team-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #000;
}

.team-block-one .inner-box .lower-content h3 a:hover{

}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 17px;
}

.team-section .owl-dots{
  position: relative;
  display: block;
  margin-top: 41px;
}

.team-section .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.team-section .owl-theme .owl-dots .owl-dot.active span,
.team-section .owl-theme .owl-dots .owl-dot span:hover{

}


/** project-section **/

.project-section{
  position: relative;
}

.project-block-one .inner-box{
  position: relative;
  display: block;
}

.project-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}

.project-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.8;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%, 0% 0%);
  transform: scale(0,0);
  z-index: 1;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .image-box:before{
  transform: scale(1,1);
}

.project-block-one .inner-box .image-box img{
  width: 100%;
  opacity: 0.8;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .image-box img{
  opacity: 0.5;
  transform: scale(1.05);
}

.project-block-one .inner-box .view-btn{
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.project-block-one .inner-box .view-btn a{
  position: relative;
  display: inline-block;
  font-size: 60px;
  line-height: 50px;
  color: #fff;
  transform: scale(0,0);
}

.project-block-one .inner-box:hover .view-btn a{
  transform: scale(1,1);
}

.project-block-one .inner-box .text{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding-left: 60px;
  padding-right: 50px;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .text{
  bottom: 60px;
  opacity: 1;
}

.project-block-one .inner-box .text h4{
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.project-block-one .inner-box .text h4 a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  
  background: #26282e;
  padding: 16px 32px;
}

.project-block-one .inner-box .text h4 a:hover{
  text-decoration: underline;
}

.project-block-one .inner-box .text span{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  background: #26282e;
  padding: 7px 30px;
}


/** faq-section **/

.faq-section{
  padding-top: 115px;
}

.image_block_five .image-box{
  position: relative;
  display: block;
  margin-right: 30px;
  padding-right: 90px;
  padding-bottom: 75px;
}

.image_block_five .image-box .image-1{
  position: relative;
  display: block;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 0% 100%, 0% 0%);
}

.image_block_five .image-box .image-1:before{
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.image_block_five .image-box .image-1:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.image_block_five .image-box .image-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
}

.image_block_five .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.image_block_five .image-box .image-2:hover img{
  transform: scale(1.05);
}

.image_block_five .image-box .shape{
  position: absolute;
  top: 250px;
  right: 55px;
  width: 346px;
  height: 328px;
  background-repeat: no-repeat;
}

.content_block_five .content-box .sec-title p{
  line-height: 26px;
  color: #000;
}

.accordion-box .block{
  position: relative;
  display: block;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.accordion-box .block:last-child{
  margin-bottom: 0px;
}

.accordion-box .block .acc-btn{
  position: relative;
  display: block;
  cursor: pointer;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  padding: 17px 50px 17px 30px;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn .icon-outer{
  position: absolute;
  top: 18px;
  right: 30px;
  font-size: 22px;
  color: #000;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon-outer{
  transform: rotate(180deg);
  color: #fff;
}

.accordion-box .block .acc-btn.active{

}

.accordion-box .block .acc-btn h5{
  font-size: 18px;
  line-height: 26px;
  
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h5{
  color: #fff;
}

.accordion-box .block .acc-content{
  position:relative;
  display:none;
  padding: 25px 30px 0px 30px;
}

.accordion-box .block .acc-content p{
  color: #000;
}

.accordion-box .block .acc-content.current{
  display:block;  
}


/** clients-section **/

.clients-section{
  padding: 20px 0px;
}

.clients-logo {
height: 110px;
display: grid;
align-items: center;
background: #fff;padding: 8px;
border: 4px double #eee;
}


.clients-section .clients-logo img{
  position: relative;
  display: block;
  max-width: auto;
  width: auto;
  margin: 0 auto;
  transition: all 500ms ease;
}

.clients-section .clients-logo img:hover{
  transform: scale(1.03);
}


/** testimonial-section **/

.testimonial-section{
  padding: 120px 0px;
  overflow: hidden;
}

.testimonial-section:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.5;
}

.parallax-bg{
  position: absolute;
  left: 0px;
  top: -30%;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.testimonial-section .bg-layer-2{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 705px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 1% 100%, 10% 0%);
}

.sec-title.light h2{
  color: #fff;
}

.testimonial-block-one .inner-box{
  background: #fff;
  padding: 50px 40px 60px 60px;
}

.testimonial-block-one .inner-box .icon-box{
  margin-bottom: 13px;
}

.testimonial-block-one .inner-box p{
  display: block;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
}

.testimonial-block-one .inner-box .author-box{
  padding: 9px 0px 7px 90px;
}

.testimonial-block-one .inner-box .author-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  
  margin-bottom: 2px;
}

.testimonial-block-one .inner-box .light-icon{
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-section .nav-style-one .owl-nav{
  position: absolute;
  left: -630px;
  bottom: 64px;
}

.nav-style-one .owl-nav button{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 66px;
  background: #fff;
  font-size: 30px;
  border-radius: 50%;
  text-align: center;
  color: #000;
  cursor: pointer;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button:hover{
  color: #fff;
}

.testimonial-section .nav-style-one .owl-nav .owl-prev{
  margin-right: 15px;
}


/** pricing-section **/

.pricing-section{
  overflow: hidden;
}

.pricing-block-one .pricing-table{
  padding: 0px 30px 30px 30px;
}

.pricing-block-one .pricing-table:before{
  position: absolute;
  content: '';
  border: 1px solid #e4e4e4;
  width: 100%;
  height: 50%;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:hover:after{
  height: 50%;
}

.pricing-block-one .inner-box{
  background: #fff;
  padding: 0px 20px 50px 20px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.pricing-block-one .inner-box .table-header .icon-box{
  position: relative;
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 60px;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 33px;
  margin-top: -55px;
}

.pricing-block-one .inner-box .table-header h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-block-one .inner-box .table-header{
  margin-bottom: 35px;
}

.pricing-block-one .inner-box .feature-list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  color: #000;
}

.pricing-block-one .inner-box .feature-list li:last-child{
  margin-bottom: 10px;
}

.pricing-block-one .inner-box .table-content{
  margin-bottom: 45px;
}

.pricing-block-one .inner-box .feature-list li span{
  position: relative;
  display: inline-block;
  padding-left: 25px;
}

.pricing-block-one .inner-box .feature-list li span:before{
  position: absolute;
  content: "\e90a";
  font-family: 'icomoon';
  font-size: 16px;
  left: 0px;
  top: 0px;
}

.pricing-block-one .inner-box .table-footer a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  
  color: #000;
  text-align: center;
  padding: 17px 30px 15px 30px;
  border: 1px solid #e7e7e7;
  text-transform: uppercase;
  z-index: 1;
  transition: all 0ms ease;
  -moz-transition: all 0ms ease;
  -webkit-transition: all 0ms ease;
  -ms-transition: all 0ms ease;
  -o-transition: all 0ms ease;
}

.pricing-block-one .inner-box .table-footer a:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.pricing-block-one .inner-box .table-footer a:hover:before{
  width: 100%;
}

.pricing-block-one .inner-box .table-footer a:hover{
  color: #fff;
}

.pricing-block-one .inner-box .table-footer a span{
  position: relative;
  transition: all 500ms ease;
}

.pricing-block-one .inner-box .table-footer a:hover span{
  padding-right: 20px;
}

.pricing-block-one .inner-box .table-footer a span:before{
  position: absolute;
  content: "\e906";
  font-family: 'icomoon';
  font-size: 14px;
  top: -2px;
  right: 0px;
  opacity: 0;
  color: #fff;
  font-weight: 400;
  transition: all 500ms ease;
}

.pricing-block-one .inner-box .table-footer a:hover span:before{
  opacity: 1;
}

.pricing-block-one .inner-box .light-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.pricing-section .pattern-layer .pattern-1{
  position: absolute;
  left: 70px;
  top: -30px;
  width: 281px;
  height: 271px;
  background-repeat: no-repeat;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.pricing-section .pattern-layer .pattern-2{
  position: absolute;
  right: 65px;
  bottom: 0px;
  width: 231px;
  height: 454px;
  background-repeat: no-repeat;
}

.bg-color-1{
  background: #f2efeb;
}


/** cta-section **/

.cta-section{
  overflow: hidden;
}

.content_block_six .content-box{
  background: #fff;
  padding: 45px 50px 50px 50px;
}

.content_block_six .content-box .text{
  margin-bottom: 22px;
}

.content_block_six .content-box .text p{
  color: #000;
}

.content_block_six .content-box .support-box{
  padding: 4px 0px 5px 90px;
}

.content_block_six .content-box .support-box .icon-box{
  color: #fff;
  text-align: center;
}

.content_block_six .content-box .support-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #666668;
  font-weight: 500;
  margin-bottom: 1px;
}

.content_block_six .content-box .support-box h3{
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 34px;
  
}

.content_block_six .content-box .support-box h3 a{
  display: inline-block;
  color: #000;
}

.content_block_six .content-box .support-box h3 a:hover{

}

.cta-section .image-layer{
  position: absolute;
  top: 0px;
  right: 20%;
}

.cta-section .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 318px;
  height: 333px;
  background-repeat: no-repeat;
}

.cta-section .pattern-layer .pattern-2{
  position: absolute;
  right: 0px;
  bottom: 170px;
  width: 218px;
  height: 326px;
  background-repeat: no-repeat;
}

.cta-section .pattern-layer .pattern-3{
  position: absolute;
  top: 70px;
  right: 400px;
  width: 184px;
  height: 200px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.cta-section .pattern-layer .pattern-4{
  position: absolute;
  bottom: 170px;
  right: 35%;
  width: 184px;
  height: 200px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}

.bg-color-2{
  background: #26282e;
}


/** funfact-section **/

.funfact-section{
  padding: 70px 0px 64px 0px;
}

.funfact-section .inner-container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.counter-block-one .inner-box{
  position: relative;
  display: block;
}

.counter-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.10);
  width: 2px;
  height: 100px;
  top: 30px;
  right: -120px;
}

.counter-block-one:last-child .inner-box:before{
  display: none;
}

.counter-block-one .inner-box .icon-box{
  margin-bottom: 15px;
}

.counter-block-one .inner-box .count-outer{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 60px;
  
  color: #fff;
  margin-bottom: 5px;
}

.counter-block-one .inner-box p{
  color: rgba(255, 255, 255, 1);
}




/** news-section **/

.news-section {
padding: 20px 0;
  background: #f6f6f6;
}


.news-block-one .inner-box{
  background: #fff;
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;height: 270px;
}

.news-block-one .inner-box:hover .image-box img{
  opacity: 0.7;
  transform: scale(1.05);
}

.news-block-one .inner-box .lower-content{
  padding: 25px;
}

.news-block-one .inner-box .lower-content h3{
display: block;
font-size: 18px;
line-height: 30px;
font-weight: normal;
margin-bottom: 10px;
height: 32px;
overflow: hidden;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #000;
}

.news-block-one .inner-box .lower-content h3 a:hover{

}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 14px;
  color: #fff;
padding: 9px 15px 9px 38px;
background: #67bb00;
border-radius: 0 35px 35px;
}

.news-block-one .inner-box .lower-content .post-info li a{
  display: inline-block;
  color: #808080;
}

.news-block-one .inner-box .lower-content .post-info li:last-child{
  margin: 0px !important;
}

.news-block-one .inner-box .lower-content .post-info li i{
  position: absolute;
left: 14px;
top: 12px;
  font-size: 18px;	color: #fff;
}

.news-block-one .inner-box .lower-content .post-info{
position: absolute;
top: -25px;
}

.news-block-one .inner-box .lower-content p{
  margin-bottom: 10px;
height: 50px;
overflow: hidden;font-size: 15px;
}

.news-block-one .inner-box .lower-content .link a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  color: #000;
  text-transform: capitalize;
}

.news-block-one .inner-box .lower-content .link a i {
  position: relative;
  opacity: 0;
  font-size: 14px;
  top: 1px;
  transition: all 500ms ease;
}

.news-block-one .inner-box .lower-content .link a:hover i {
  opacity: 1;
  margin-left: 8px;
}


/** subscribe-section **/

.subscribe-section .inner-container{
  position: relative;
  display: block;
  padding: 35px;
  margin-bottom: -65px;
  z-index: 1;
}

.subscribe-section .inner-container .text h2{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 40px;
  
  color: #fff;
}

.subscribe-section .inner-container .text{
  margin-right: 70px;
}

.subscribe-section .inner-container .form-inner{
  margin-left: -50px;
}

.subscribe-section .inner-container .form-inner .form-group{
  position: relative;
  margin-bottom: 0px;
  padding-right: 220px;
}

.subscribe-section .inner-container .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  font-size: 16px;
  color: #808080;
  padding: 10px 20px;
  background: #fff;
  transition: all 500ms ease;
}

.subscribe-section .inner-container .form-inner .form-group button{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 200px;
  height: 60px;
  line-height: 60px;
  font-size: 15px;
  
  color: #fff;
  text-align: center;
  background: #26282e;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 500ms ease;
}

.subscribe-section .inner-container .form-inner .form-group button:hover{
  background: #fff;
  color: #26282e;
}

.subscribe-section .inner-container .form-inner .form-group button i{
  position: relative;
  margin-left: 5px;
  top: 1px;
  font-size: 14px;
}


/** main-footer **/

.main-footer {
  overflow: hidden;
background: #1c1e1d;background-image: url(../images/09.png);
background-size: cover;
background: linear-gradient( to right , #1e7c81 ,#065f63);
background: linear-gradient( to right , #040d20 ,#15213c);
}

.main-footer .icon-layer{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.main-footer .footer-widget .footer-logo{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.main-footer .footer-widget .footer-logo img {
width:90px;
}







.main-footer .footer-top{
  padding: 100px 0px 25px 0px;
}

.main-footer p,
.main-footer a,
.main-footer li{
color: #fff;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.main-footer .widget-title h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
width: 50%;
float: left;
padding-left:15px;
}

.main-footer .links-widget .links-list li:after {
content: "\f105";
font-size: 18px;
font-style: normal;
color: #3fa796;
font-family: 'Font Awesome 5 pro';
font-weight: 300;
transition: all 500ms ease;
position: absolute;
left: 0;
}


.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  display: inline-block;text-transform: capitalize
}

.main-footer .contact-widget .info-list li{
  margin-bottom: 19px;position: relative;

padding-left: 30px;
}

.main-footer .contact-widget .info-list li:last-child{
  margin-bottom: 0px;
}
.main-footer .contact-widget .info-list li i{

color: #3fa796;



position: absolute;

top: 7px;

left: 0;}


/** footer-bottom **/

.footer-bottom{

}

.footer-bottom .bottom-inner{
  padding: 8px 0px;border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom .bottom-inner .footer-nav li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 35px;
}

.footer-bottom .bottom-inner .footer-nav li:last-child{
  margin: 0px !important;
}

.footer-bottom .bottom-inner .footer-nav li:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.60);
  width: 1px;
  height: 14px;
  top: 5px;
  right: -18px;
}

.footer-bottom .bottom-inner .footer-nav li:last-child:before{
  display: none;
}



/*** 

====================================================================
                        home-page-2
====================================================================

***/



/** header-style-two **/

.header-style-two{
  position: relative;
}

.header-style-two .header-top{

}

.header-top .text p{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-weight: 500;
  padding-left: 31px;
}

.header-top .text p i{
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 26px;
  font-weight: 400;
}

.header-upper{
  position: relative;
  display: block;
}

.header-upper .upper-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-upper .upper-inner .logo-box{
  float: none;
  padding: 0px;
  margin: 0px;
}

.header-upper .upper-inner .logo-box .logo{
  position: relative;
  display: block;
  padding: 10px 0 8px;

}

.header-upper .upper-inner .logo-box .logo:before{
  position: absolute;
  content: '';
  width: 32px;
  height: 100%;
  top: 0px;
  right: -30px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 30%, 50% 75%, 7% 100%, 0% 100%, 0% 80%, 0% 20%);
}

.header-upper .info-list{
  position: relative;
  display: flex;
  align-items: center;
}

.header-upper .info-list li{
  position: relative;
  display: block;
padding-left: 70px;
margin-right: 50px;
}

.header-upper .info-list li:last-child{
  margin: 0px !important;
}

.header-upper .info-list li .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
font-size: 23px;
color: #fff;
width: 55px;
height: 55px;
border-radius: 0 50% 50%;
background: #67bb00;
text-align: center;
line-height: 52px;
}

.header-upper .info-list li h5{
position: relative;

display: block;

font-size: 16px;

line-height: 26px;

font-weight: normal;

margin-bottom: 0px;

color: #000;
}

.header-upper .info-list li p{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #838383;
}

.header-upper .info-list li p a{
  display: inline-block;
  color: #838383;
}

.header-upper .info-list li p a:hover{

}

.header-style-two .outer-box{
  padding: 0px;
}

.header-style-two .main-menu .navigation > li > a{
  padding: 15px;
}

.header-style-two .outer-box .theme-btn{

padding: 7px 30px;
border-radius: 50px 0 50px 50px;
text-align: left;
}


/** banner-style-two **/

.banner-style-two{
  position: relative;
}

/*

.banner-style-two .shape .shape-4{
  width: 100%;
  height: 240px;
  background: #f3f0ec;
  clip-path: polygon(75% 75%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 27% 50%);
}

.banner-style-two .shape .shape-5{
  width: 100%;
  height: 240px;
  clip-path: polygon(74% 65%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 90%, 27% 50%);
}*/

.banner-carousel .content-box .btn-box{
  line-height: 28px;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.banner-style-two .content-box p{
  margin-bottom: 15px;
}

.banner-carousel .content-box .btn-box .theme-btn{
  padding: 17px 36px;
}

.banner-style-two .banner-carousel .slide-item{

}

.banner-style-two .banner-carousel .owl-nav{
right: 20px;

bottom: 20px;

position: absolute;

}


/** feature-style-two **/


.feature-style-two .inner-container{
  position: relative;
  z-index: 2;
margin-top:-80px;
}

.feature-block-two .inner-box{
  position: relative;
  display: block;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 50px 30px 63px 30px;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.feature-block-two .inner-box .icon-box{
  background: #f0f0f0;
  margin-bottom: 25px;
}

.feature-block-two .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.feature-block-two .inner-box:hover .icon-box{
  color: #fff;
}

.feature-block-two .inner-box h3{
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 16px;
}

.feature-block-two .inner-box h3 a{
  display: inline-block;
  color: #000;
}

.feature-block-two .inner-box h3 a:hover{

}

.feature-block-two .inner-box p{
  color: #000;
}

.feature-block-two .inner-box .shape-1{
  position: absolute;
  top: 0px;
  right: -40px;
  width: 40px;
  height: 100%;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 20%, 90% 80%, 7% 100%, 0% 100%, 0% 80%, 0% 0%);
}

.feature-block-two .inner-box .shape-2{
  position: absolute;
  top: 0px;
  left: -40px;
  width: 41px;
  height: 100%;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 20%, 90% 80%, 7% 100%, 0% 100%, 0% 80%, 0% 0%);
  transform: rotate(180deg);
}

.feature-block-two .inner-box:before{
  position: absolute;
  content: '';
  width: calc(100% - 90px);
  left: 26px;
  bottom: 0px;
  height: 7px;
}


/** about-style-two **/

.about-style-two{
padding: 50px 0;
}


.content_block_seven {
padding: 25px;
background: #fff;
}


.content_block_seven .content-box{
  position: relative;
  display: block;
}

.content_block_seven .content-box .sec-title h2 {
font-size: 22px;
margin-bottom: 15px;}

.content_block_seven .content-box .bold-text{
margin-bottom: 8px;
}

.content_block_seven .content-box .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
}

.content_block_seven .content-box .inner-box .left-content h4{
  margin-bottom: 17px;
}

.content_block_seven .content-box .inner-box .list-style-one{
  margin-bottom: 15px;
}

.content_block_seven .content-box .inner-box .single-item{
  position: relative;
  display: block;
  padding: 12px 0px 8px 100px;
  margin-bottom: 40px;
  min-height: 80px;
}

.content_block_seven .content-box .inner-box .single-item:last-child{
  margin-bottom: 0px;
}

.content_block_seven .content-box .inner-box .single-item .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 45px;
  text-align: center;
  border-radius: 50%;
}

.content_block_eight .content-box{
  position: relative;
  display: block;
}

.content_block_eight .content-box .image-box{
  position: relative;
  display: block;
}

.content_block_eight .content-box .image-box img{
width: 100%;
height: 390px;
object-fit: cover;
}

.content_block_eight .content-box .image-box:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.3;
}

.content_block_eight .content-box .text{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 290px;
  background: #fff;
  padding: 33px 15px 35px 15px;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.10);
}

.content_block_eight .content-box .text .icon-box{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 10px;
}

.content_block_eight .content-box .text h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
}

.content_block_eight .content-box .text h3 a{
  display: inline-block;
  color: #000;
}

.content_block_eight .content-box .text h3 a:hover{

}

.content_block_eight .content-box .video-btn{
position: absolute;

left: 50%;

bottom: 50%;

margin-left: -30px;

margin-top: -30px;
}

.content_block_eight .content-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  font-size: 22px;
  text-align: center;
  border-radius: 50%;
}

.content_block_eight .content-box .video-btn a:before,
.content_block_eight .content-box .video-btn a:after {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgb(59, 59, 59);
  box-shadow: 0 0 0 0 rgb(59, 59, 59);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.content_block_eight .content-box .video-btn a:after{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}


/** service-style-two **/

.service-style-two{
  position: relative;
}

.service-block-one{
  max-width: 370px;
  margin: 0 auto;
}

.service-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
}

.service-block-one .inner-box .image-box{
  overflow: hidden;
  background: #000000;
}

.service-block-one .inner-box .image-box .shape-1{
  width: 100%;
  height: 65px;
  background: #fbe3d4;
  clip-path: polygon(67% 57%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 75%, 26% 52%);
  z-index: 1;
}

.service-block-one .inner-box .image-box .shape-2{
  width: 100%;
  height: 65px;
  background: #fff;
  clip-path: polygon(75% 75%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 27% 50%);
  z-index: 1;
}

.service-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box img{
  opacity: 0.7;
  transform: scale(1.05);
}

.service-block-one .inner-box .lower-content{
  padding: 11px 30px 36px 40px;
  z-index: 2;
}

.service-block-one .inner-box .lower-content .icon-box{
  top: -75px;
  color: #fff;
}

.service-block-one .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 16px;
}

.service-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #000;
}

.service-block-one .inner-box .lower-content h3 a:hover{

}

.service-block-one .inner-box .lower-content p{
  margin-bottom: 17px;
}

.service-block-one .inner-box .lower-content .link a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  
  text-transform: uppercase;
  color: #000;
}

.service-block-one .inner-box .lower-content .link a:hover{

}

.service-block-one .inner-box .lower-content .link a i{
  position: relative;
  top: 1px;
  margin-left: 0px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: all 500ms ease;
}

.service-block-one .inner-box .lower-content .link a:hover i{
  margin-left: 5px;
  opacity: 1;
}

.service-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.service-style-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
}

.service-style-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
}

.service-style-two .owl-dots{
  position: relative;
  display: block;
  margin-top: 50px;
  text-align: center;
}

.service-style-two .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.service-style-two .owl-theme .owl-dots .owl-dot.active span,
.service-style-two .owl-theme .owl-dots .owl-dot span:hover{

}


/** funfact-style-two **/

.funfact-style-two{
position: relative;
padding: 30px 0 0;
background-color: #f6f6f6;
background-image: url(../images/pattern-11.png);
background-size: 350px 300px;
background-attachment: fixed;overflow: hidden;
}


/*
.funfact-style-two .auto-container { 
position: relative;
z-index:1;
}

.funfact-style-two:after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000c;
background: linear-gradient( to right , #000000e6 , #06163299);

}*/



.funfact-style-two .inner-container{
  position: relative;
  margin: 0px 15px;
  z-index: 1;
}

.funfact-style-two .counter-block{
  padding: 0px;
}

.counter-block-two .inner-box{
  position: relative;
  display: block;
  padding: 50px 30px 53px 30px;
}

.counter-block-two {
position: relative;
}




.counter-block:last-child .counter-block-two {
border-right: none;
}


/*
.counter-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 23px;
  left: 0px;
  top: -21px;
  clip-path: polygon(0% 0%, 100% 100%, 65% 0%, 25% 25%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}


.counter-block-two .inner-box:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 23px;
  left: 0px;
  bottom: -21px;
  clip-path: polygon(0% 0%, 100% 100%, 65% 0%, 25% 25%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
  transform: rotate(180deg);
}

.counter-block:first-child .counter-block-two .inner-box{

}

.counter-block:nth-child(3) .counter-block-two .inner-box{
  background: #68BC00;
}

.counter-block:nth-child(3) .counter-block-two .inner-box:before{
  background: #68BC00;
}

.counter-block:nth-child(2) .counter-block-two .inner-box:before,
.counter-block:last-child .counter-block-two .inner-box:before{
  transform: rotateY(180deg);
  clip-path: polygon(0% 0%, 100% 100%, 65% 0%, 25% 25%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}

.counter-block:nth-child(2) .counter-block-two .inner-box:after,
.counter-block:last-child .counter-block-two .inner-box:after{
  transform: rotateX(180deg);
  clip-path: polygon(0% 0%, 100% 100%, 65% 0%, 25% 25%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}

.counter-block:nth-child(3) .counter-block-two .inner-box:after{
  background: #68BC00;
}

.counter-block:first-child .counter-block-two .inner-box .count-outer,
.counter-block:first-child .counter-block-two .inner-box p,
.counter-block:nth-child(3) .counter-block-two .inner-box .count-outer,
.counter-block:nth-child(3) .counter-block-two .inner-box p{
  color: #fff;
}

.counter-block:first-child .counter-block-two .inner-box .icon-box,
.counter-block:nth-child(3) .counter-block-two .inner-box .icon-box{
  color: rgba(255, 255, 255, 0.10);
}
*/
.counter-block-two .inner-box .icon-box{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 120px;
  color: #fbe3d4;
}

.counter-block-two .inner-box .count-outer{
position: relative;
display: block;
font-size: 60px;
line-height: 60px;
color: #1e7c81;
font-weight: 800;
text-transform: uppercase;
margin-bottom:25px;
}


.counter-block-two .inner-box .count-outer:after {
content: '';

position: absolute;

width: 250px;

height: 250px;

background-color: #87878714;

border-radius: 50%;

z-index: -1;

top: -70px;

right: 50%;

margin-right: -125px;
}


.counter-block-two .inner-box p{
color: #000;
font-weight: bold;
font-size: 18px;
text-transform: uppercase;
}


/** chooseus-style-two **/

.chooseus-style-two{
  background: #f2efeb;
  padding: 200px 0px 120px 0px;
  margin-top: 60px;
}

.chooseus-style-two .content-box{
  background: #fff;
  padding: 64px 50px 32px 70px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.chooseus-style-two .content-box .inner-box .single-item{
  position: relative;
  display: block;
  padding: 0px 0px 0px 100px;
  margin-bottom: 42px;
}

.chooseus-style-two .content-box .inner-box .single-item .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 1px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 40px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
  z-index: 1;
  transition: all 500ms ease;
}

.chooseus-style-two .content-box .inner-box .single-item:hover .icon-box{
  color: #fff;
}

.chooseus-style-two .content-box .inner-box .single-item .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.chooseus-style-two .content-box .inner-box .single-item:hover .icon-box:before{
  transform: scale(1,1);
}

.chooseus-style-two .content-box .inner-box .single-item h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
  margin-bottom: 16px;
}

.chooseus-style-two .image-layer{
  position: absolute;
  right: 15px;
  bottom: 0px;
}

.chooseus-style-two .shape .shape-1{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 515px;
  height: 330px;
}

.chooseus-style-two .shape .shape-2{
  position: absolute;
  left: 0px;
  top: -60px;
  width: 100%;
  height: 60px;
  background: #f2efeb;
  clip-path: polygon(75% 75%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 15% 15%);
}

.chooseus-style-two .shape .shape-3{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}


/** working-section **/

.working-section .tabs-box{
  position: relative;
  margin-right: 30px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.working-section .tabs-box .tab-btn-box{
  position: absolute;
  top: 0px;
  left: 540px;
  height: 100%;
}

.working-section .tabs-content{
  position: relative;
  z-index: -1;
}

.working-section .tabs-content .inner-box{
  position: relative;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  overflow: hidden;
}

.working-section .tabs-content .inner-box .image-box{
  position: relative;
  display: block;
  border-radius: 50%;
}

.working-section .tabs-content .inner-box .image-box img{
  width: 100%;
  border-radius: 50%;
}

.working-section .tabs-content .inner-box .text{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 21px 15px 48px 15px;
}

.working-section .tabs-content .inner-box .text:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 25px;
  left: 0px;
  top: -25px;
  clip-path: polygon(0% 0%, 100% 100%, 65% 0%, 25% 25%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}

.working-section .tabs-content .inner-box .text h2{
  position: absolute;
  left: 50%;
  top: 37%;
  transform: translate(-50%,-50%);
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.20);
  text-transform: uppercase;
}

.working-section .tabs-content .inner-box .text h3{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 800;
}

.working-section .tabs-box .tab-btns li{
  position: absolute;
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 50px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;
}

.working-section .tabs-box .tab-btns li:hover,
.working-section .tabs-box .tab-btns li.active-btn{
  color: #fff;
}

.working-section .tabs-box .tab-btns li:first-child{
  top: 0px;
  right: 55px;
}

.working-section .tabs-box .tab-btns li:nth-child(2){
  top: 50%;
  margin-top: -50px;
  right: 0px;
}

.working-section .tabs-box .tab-btns li:last-child{
  right: 55px;
  bottom: 0px;
}

.working-section .tabs-box .tab-btns li:before{
  position: absolute;
  content: '';
  background: #ded6cc;
  width: 300px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.working-section .tabs-box .tab-btns li:hover:before,
.working-section .tabs-box .tab-btns li.active-btn:before{
  
}

.working-section .tabs-box .tab-btns li:first-child:before{
  transform: translateY(-50%) rotate(-20deg);
  top: 100%;
}

.working-section .tabs-box .tab-btns li:last-child:before{
  transform: translateY(-50%) rotate(20deg);
  top: 0%;
}

.working-section .content-box{
  position: relative;
  display: block;
}

.working-section .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 27px;
}

.working-section .content-box p{
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.working-section .content-box .theme-btn{
  padding: 17px 40px;
}

.working-section .shape .shape-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1186px;
  height: 663px;
  background-repeat: no-repeat;
  z-index: -1;
}

.working-section .shape .shape-2{
  position: absolute;
  right: 0px;
  bottom: 55px;
  width: 335px;
  height: 406px;
  background-repeat: no-repeat;
  z-index: -1;
}


/** search-field-two **/

.search-field-two{
  background: #26282e;
  padding: 113px 0px 190px 0px;
}

.search-field-two .title-text{
  margin-bottom: 27px;
}

.search-field-two .title-text h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
}

.search-field-two .search-area form{
  position: relative;
  display: block;
  margin-left: 5px;
  padding-right: 205px;
}

.search-field-two .search-area .form-group{
  position: relative;
  padding: 0px 10px;
  margin-bottom: 0px;
}

.search-field-two .search-area .form-group input[type='text'],
.search-field-two .search-area .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #54565a;
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.search-field-two .search-area .form-group .icon{
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 1;
  font-size: 14px;
  color: #fff;
}

.search-field-two .search-area .form-group input:focus{
  background: #fff;
  color: #000;
}

.search-field-two .search-area .btn-box{
  position: absolute;
  top: 0px;
  right: 0px;
}

.search-field-two .search-area .btn-box .theme-btn{
  padding: 17px 36.5px;
}

.search-field-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-section .bg-layer{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: calc(50% - 30px);
  height: calc(100% + 70px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** testimonial-style-two **/

.testimonial-style-two{
  padding-bottom: 110px;
}

.testimonial-style-two .testimonial-block-one .inner-box{
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.testimonial-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
}

.testimonial-style-two .owl-dots{
  position: relative;
  display: block;
  margin-top: 50px;
  text-align: center;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot.active span,
.testimonial-style-two .owl-theme .owl-dots .owl-dot span:hover{

}


/** cta-style-two **/

.cta-style-two{
  background: #26282e;
  padding: 60px 0px;
  overflow: hidden;
}

.cta-style-two .content-box{
  display: block;
}

.cta-style-two .image-box{
  position: relative;
  display: block;
  margin-left: -105px;
}

.cta-style-two .image-box img{
  width: 100%;
}

.cta-style-two .content-box .text{
  margin-bottom: 22px;
}

.cta-style-two .content-box .text p{
  color: #fff;
}

.cta-style-two .content-box .support-box{
  position: relative;
  display: block;
  padding: 4px 0px 5px 90px;
}

.cta-style-two .content-box .support-box .icon-box{
  position: absolute;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 40px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: 0px;
}

.cta-style-two .content-box .support-box p{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  
  color: #c6c6c7;
  margin-bottom: 1px;
}

.cta-style-two .content-box .support-box h3{
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 34px;
  color: #fff;
  
}

.cta-style-two .content-box .support-box h3 a{
  display: inline-block;
  color: #fff;
}

.cta-style-two .content-box .support-box h3 a:hover{

}

.cta-style-two .image-box .shape .shape-1{
  position: absolute;
  right: 40px;
  bottom: 5px;
  width: 170px;
  height: 178px;
  background-repeat: no-repeat;
}

.cta-style-two .image-box .shape .shape-2{
  position: absolute;
  right: 75px;
  bottom: -155px;
  width: 327px;
  height: 327px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  -webkit-animation: zoom-fade 8s infinite linear;
  animation: zoom-fade 8s infinite linear;
}

.cta-style-two .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 617px;
  height: 535px;
  background-repeat: no-repeat;
}

.cta-style-two .pattern-layer .pattern-2{
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 1514px;
  background-repeat: no-repeat;
}

.cta-style-two .pattern-layer .pattern-3{
  position: absolute;
  left: 280px;
  top: 60px;
  width: 255px;
  height: 254px;
  background-repeat: no-repeat;
}



/*** 

====================================================================
                        home-page-3
====================================================================

***/


/** header-style-three **/

.header-style-three{
  position: absolute;
  left: 0px;
  top: 50px;
  width: 100%;
}

.header-style-three .header-upper{
  background: transparent;
}

.header-style-three .header-upper .upper-inner{
  background: #2e3033;
  padding-right: 40px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
}

.header-style-three .header-upper .upper-inner .logo-box .logo{
  background: #f9f6f4;
}

.header-style-three .header-upper .upper-inner .logo-box .logo:before{
  background: #f9f6f4;
}

.header-style-three .header-upper .info-list li h5{
  color: #fff;
}

.header-style-three .header-upper .info-list li p{
  color: #fff;
}

.header-style-three .header-upper .info-list li p a{
  color: #fff;
}

.header-style-three .header-lower .outer-box{
  background: #fff;
  padding-left: 40px;
  padding-right: 0px;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}

.header-style-three .sticky-header .outer-box{
  padding: 0px;
}

.header-style-three .main-menu .navigation > li > a{
  padding: 15px 0px;
}

.header-style-three .outer-box .theme-btn.btn-one{
  padding: 17px 36px;
}


/** banner-style-three **/

.banner-style-three .banner-carousel .slide-item{
  padding: 375px 0px 165px 0px;
}

.banner-style-three .banner-carousel .slide-item .image-layer{
  left: inherit;
  right: 0px;
  width: 60%;
}

.banner-style-three .banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  background: #f5f0ed;
  width: calc(50% + 50px);
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 95% 20%, 95% 80%, 85% 100%, 0% 100%, 0% 80%, 0% 0%);
}

.banner-style-three .banner-carousel .slide-item:after{
  position: absolute;
  content: '';
  background: #f19d69;
  width: calc(50% + 80px);
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 92% 15%, 95% 80%, 82% 101%, 0% 100%, 0% 80%, 0% 0%);
}

.banner-style-three .banner-carousel .content-box{
  max-width: 500px;
}

.banner-style-three .banner-carousel .content-box h2,
.banner-style-three .banner-carousel .content-box p{
  color: #000;
}

.banner-style-three .banner-carousel .content-box p{
  margin-bottom: 32px;
}

.banner-style-three .banner-carousel .content-box h2{
  margin-bottom: 23px;
}

.banner-style-three .banner-carousel .owl-nav button{
  background: #fff;
}

.banner-style-three .banner-carousel .owl-nav button:hover{
  color: #fff;
}

.banner-style-three .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 45%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
}


/** feature-style-three **/

.feature-style-three{
  background: #2d2f32;
  padding: 50px 0px 45px 0px;
}

.feature-style-three .inner-container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-style-three .feature-block-three{
  max-width: 310px;
}

.feature-block-three .inner-box{
  position: relative;
  display: block;
  padding: 10px 0px 0px 110px;
}

.feature-block-three .inner-box .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 45px;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  text-align: center;
  border-radius: 50%;
  z-index: 1;
}

.feature-block-three .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-three .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.feature-block-three .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  
  color: #fff;
  margin-bottom: 17px;
}

.feature-block-three .inner-box h3 a{
  display: inline-block;
  color: #fff;
}

.feature-block-three .inner-box h3 a:hover{

}

.feature-block-three .inner-box p{
  color: #bdbec1;
}

.feature-block-three .inner-box:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.10);
  width: 1px;
  height: 100%;
  top: 0px;
  right: -70px;
}

.feature-block-three:last-child .inner-box:before{
  display: none;
}


/** about-style-three **/

.content_block_nine .content-box{
  position: relative;
  display: block;
}

.content_block_nine .content-box .image-box{
  position: relative;
  display: block;
}

.content_block_nine .content-box .image-box img{
  width: 100%;
}

.content_block_nine .content-box .image-box .image{
  position: relative;
  clip-path: polygon(6% 0%, 100% 0%, 101% 0%, 100% 100%, 0% 100%, 0% 100%, 5% 80%, 0% 23%);
}

.content_block_nine .content-box .image-box .image:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.3;
}

.content_block_nine .content-box .image-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 50px;
  height: 100%;
  right: 0px;
  top: 0px;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 50% 20%, 90% 80%, 7% 100%, 0% 100%, 0% 80%, 0% 0%);
  transform: rotate(180deg);
}

.content_block_nine .content-box .image-box .video-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.content_block_nine .content-box .image-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 110px;
  text-align: center;
  font-size: 40px;
  background: #fff;
  border-radius: 50%;
}

.content_block_nine .content-box .image-box .video-btn a:before,
.content_block_nine .content-box .image-box .video-btn a:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.content_block_nine .content-box .image-box .video-btn a:after{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.content_block_nine .content-box .text{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 220px;
  background: #fff;
  text-align: center;
  padding: 45px 30px;
  box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.content_block_nine .content-box .text .icon-box{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 200px;
  color: #fdf1e9;
}

.content_block_nine .content-box .text h2{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 16px;
}

.content_block_nine .content-box .text h5{
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.content_block_nine .content-box .image-box .shape .shape-1{
  position: absolute;
  left: -40px;
  top: 40px;
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
}

.content_block_nine .content-box .image-box .shape .shape-2{
  position: absolute;
  left: 200px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
}

.content_block_ten .content-box{
  position: relative;
  display: block;
}

.content_block_ten .content-box .text{
  margin-bottom: 34px;
}

.content_block_ten .content-box .inner-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.content_block_ten .content-box .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
  margin-bottom: 17px;
}

.content_block_ten .content-box .support-box{
  position: relative;
  display: block;
  padding: 9px 0px 9px 100px;
}

.content_block_ten .content-box .support-box .icon-box{
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 40px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: 0px;
}

.content_block_ten .content-box .support-box p{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #666668;
  margin-bottom: 6px;
}

.content_block_ten .content-box .support-box h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: #000;
  
}

.content_block_ten .content-box .support-box h3 a{
  display: inline-block;
  color: #000;
}

.content_block_ten .content-box .support-box h3 a:hover{

}

.about-style-three .pattern-layer{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 337px;
  height: 406px;
  background-repeat: no-repeat;
}

.image_block_six .image-box{
  position: relative;
  display: block;
}

.image_block_six .image-box .image{
  position: relative;
  display: block;
  clip-path: polygon(8% 0%, 100% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 10% 80%, 0% 25%);
}

.image_block_six .image-box .image img{
  width: 100%;
}

.image_block_six .image-box .icon-box{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 40px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.image_block_six .image-box .shape{
  position: absolute;
  right: -50px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
}

.service-section.alternat-2 .content_block_two .content-box .text{
  margin-bottom: 46px;
}

.service-section.alternat-2 .content_block_two .content-box .single-item{
  margin-bottom: 31px;
}

.service-section.alternat-2 .tab-btns li{
  width: calc(33.333% - 15px);
}

.service-section.alternat-2 .tab-btns li:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 15px;
  height: 100%;
  top: 0px;
  right: -14px;
  transition: all 500ms ease;
  clip-path: polygon(0% 0%, 75% 0%, 25% 30%, 50% 70%, 0% 100%, 0% 100%, 0% 50%, 0% 50%);
  z-index: 1;
}

.service-section.alternat-2 .tab-btns li:last-child:after{
  display: none;
}

.service-section.alternat-2 .tab-btns li.active-btn:after,
.service-section.alternat-2 .tab-btns li:hover:after{

}

.image_block_seven .image-box{
  position: relative;
  display: block;
}

.image_block_seven .image-box img{
  width: 100%;
}

.image_block_seven .image-box .image-1{
  clip-path: polygon(95% 0%, 85% 50%, 89% 100%, 0% 100%, 0% 0%, 25% 0%);
}

.image_block_seven .image-box .image-2{
  margin-right: -10px;
  clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%);
}

.image_block_seven .image-box .shape .shape-1{
  position: absolute;
  top: -45px;
  right: -50px;
  width: 184px;
  height: 200px;
  background-repeat: no-repeat;
}

.image_block_seven .image-box .shape .shape-2{
  position: absolute;
  left: 40px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
}

.content_block_three .content-box .inner-box li{
  position: relative;
  float: left;
  width: 20%;
}

.content_block_three .content-box .inner-box li .single-item{
  position: relative;
  display: block;
  margin-right: 30px;
  text-align: center;
  width: 120px;
}

.content_block_three .content-box .inner-box li:last-child .single-item{
  margin: 0px !important;
}

.content_block_three .content-box .inner-box li .single-item .icon-box{
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 50px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 14px;
  transition: all 500ms ease;
}

.content_block_three .content-box .inner-box li .single-item:hover .icon-box{
  color: #fff;
}

.content_block_three .content-box .inner-box li .single-item h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  
}

.content_block_three .content-box .inner-box li .single-item h4 a{
  display: inline-block;
  color: #000;
}

.content_block_three .content-box .inner-box li .single-item h4 a:hover{

}

.service-section.alternat-2 .content_block_three .content-box .text h3{
  margin-bottom: 24px;
}

.service-section.alternat-2 .content_block_three .content-box{
  margin-left: 50px;
}

.service-section.alternat-2{
  padding-top: 0px;
}

.service-section .pattern-layer .pattern-3{
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: calc(100% - 274px);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}


/** cta-style-three **/

.cta-style-three{
  padding: 71px 0px 79px 0px;
}

.cta-style-three .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-style-three .inner-box .text h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
}

.cta-style-three .inner-box .btn-box .theme-btn{
  background: #2d2f32;
  padding: 22px 41px;
}

.cta-style-three .inner-box .btn-box .theme-btn:before{
  background: #fff !important;
  opacity: 1;
}

.cta-style-three .inner-box .icon-box{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 150px;
  color: rgba(255, 255, 255, 0.10);
}


/** chooseus-style-three **/

.chooseus-style-three{
  padding: 114px 0px 70px 0px;
}

.chooseus-style-three .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.chooseus-block-one .inner-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 100px;
  margin-bottom: 42px;
}

.chooseus-block-one .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 1px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 45px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  z-index: 1;
  transition: all 500ms ease;
}

.chooseus-block-one .inner-box:hover .icon-box{
  color: #fff;
}

.chooseus-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0,0);
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
}

.chooseus-block-one .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.chooseus-block-one .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
  margin-bottom: 16px;
}


/** success-section **/

.success-section{
  background: #2d2f32;
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:8px;
  background:#4c4e51;
}

.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:8px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-box h6{
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}

.progress-box .count-text{
  position: absolute;
  top: -32px;
  right: -17px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
}

.content_block_11 .content-box{
  position: relative;
  display: block;
}

.content_block_11 .content-box .text p{
  color: #bdbec1;
}

.success-section .bg-layer{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
}

.success-section .bg-layer .bg-image{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.success-section .bg-layer .bg-image:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.1;
}

.success-section .bg-layer:before{
  position: absolute;
  content: '';
  background: #2d2f32;
  height: 100%;
  width: 47px;
  top: 0px;
  right: 0px;
  z-index: 1;
  clip-path: polygon(100% 0%, 100% 0%, 200% 0%, 100% 100%, 0% 100%, 0% 100%, 100% 80%, 0% 25%);
}

.success-section .bg-layer:after{
  position: absolute;
  content: '';
  height: 100%;
  width: 47px;
  top: 0px;
  right: 0px;
  clip-path: polygon(50% 0%, 100% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 50% 80%, 0% 25%);
}


/** team-style-two **/

.team-style-two{
  padding: 114px 0px 110px 0px;
}

.team-block-two{
  position: relative;
  max-width: 370px;
  margin: 0 auto;
}

.team-block-two .inner-box{
  position: relative;
  display: block;
  padding-left: 20px;
}

.team-block-two .inner-box .image-box{
  position: relative;
}

.team-block-two .inner-box .image-box:before{
  position: absolute;
  content: '';
  top: 0px;
  right: 0px;
  width: 40px;
  height: 100%;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 20%, 90% 80%, 7% 100%, 0% 100%, 0% 80%, 0% 0%);
  transform: rotate(180deg);
  z-index: 1;
}

.team-block-two .inner-box .image-box:after{
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 40px;
  height: 100%;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 20%, 90% 80%, 7% 100%, 0% 100%, 0% 80%, 0% 0%);
}

.team-block-two .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}

.team-block-two .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box .image img{
  opacity: 0.5;
  transform: scale(1.05);
}

.team-block-two .inner-box .image-box .social-links{
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%,-50%) scale(0,0);
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box .social-links{
  transform: translate(-50%,-50%) scale(1,1);
}

.team-block-two .inner-box .image-box .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 14px;
}

.team-block-two .inner-box .image-box .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #fff;
}

.team-block-two .inner-box .image-box .social-links li a:hover{

}

.team-block-two .inner-box .content-box{
  position: absolute;
  left: 0px;
  bottom: 40px;
  width: 268px;
  background: #fff;
  padding: 22px 30px 20px 30px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.team-block-two .inner-box .content-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 17px;
  height: 100%;
  top: 0px;
  right: -17px;
  clip-path: polygon(0% 0%, 100% 0%, 40% 30%, 60% 70%, 0% 100%, 0% 100%, 0% 100%, 0% 0%);
  transition: all 500ms ease;
}

.team-block-two .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 2px;
}

.team-block-two .inner-box .content-box h3 a{
  position: relative;
  display: inline-block;
  color: #000;
}

.team-block-two .inner-box .content-box h3 a:hover{

}

.team-block-two .inner-box .content-box .designation{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .content-box h3 a,
.team-block-two .inner-box:hover .content-box .designation{
  color: #fff;
}

.team-style-two .owl-dots{
  position: relative;
  display: block;
  margin-top: 50px;
  text-align: center;
}

.team-style-two .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.team-style-two .owl-theme .owl-dots .owl-dot.active span,
.team-style-two .owl-theme .owl-dots .owl-dot span:hover{

}


/** testimonial-style-three **/


.testimonial-style-three{
  padding-bottom: 120px;
}

.testimonial-style-three .owl-dots{
  position: relative;
  display: block;
  margin-top: 30px;
  text-align: center;
}

.testimonial-style-three .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-style-three .owl-theme .owl-dots .owl-dot.active span,
.testimonial-style-three .owl-theme .owl-dots .owl-dot span:hover{

}

.testimonial-style-three .testimonial-block-one .inner-box{
  padding: 0px;
}

.testimonial-style-three .testimonial-block-one .inner-box .light-icon{
  right: 0px;
}

.content_block_12 .content-box{
  position: relative;
  display: block;
  background: #f5f0ed;
  padding: 60px 30px 60px 60px;
}

.content_block_12 .content-box .counter-block{
  position: relative;
  display: block;
  padding: 8px 0px 5px 120px;
  margin-bottom: 50px;
}

.content_block_12 .content-box .counter-block:last-child{
  margin-bottom: 0px;
}

.content_block_12 .content-box .counter-block .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 60px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}

.content_block_12 .content-box .counter-block .count-outer{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 50px;
  
  color: #000;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.content_block_12 .content-box .shape{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_block_12 .content-box .image-layer{
  position: absolute;
  right: -100px;
  bottom: 0px;
}

.testimonial-style-three .pattern-layer{
  position: absolute;
  left: 10px;
  bottom: 120px;
  width: 40px;
  height: 328px;
  background-repeat: no-repeat;
}

.search-field-two.alternat-2{
  padding-bottom: 120px;
}

.main-footer.alternat-2 .footer-top{
  padding-top: 86px;
}


/** contact-section **/

.contact-section #contact-google-map{
  position: relative;
  width: 100%;
  height: 690px;
}

.nice-select:after{
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #6e6e6e;
  border-right: 2px solid #6e6e6e;
  right: 20px;
}

.nice-select{
  position: relative;
  display: block;
  width: 100%;
  border: none !important;
  border-radius: 0px;
  padding: 0px 0px;
  font-weight: 400;
  background: transparent;
  height: 42px;
  font-size: 16px;
  color: #6e6e6e;
  line-height: 42px;
  border-bottom: 1px solid #e5e5e5 !important;
}

.contact-section .content-inner{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 100px 0px;
  z-index: 2;
}

.contact-section .content_block_13 .content-box{
  background: #fff;
  padding: 64px 70px 70px 70px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
}

.content_block_13 .content-box .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.content_block_13 .content-box .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.content_block_13 .content-box .form-inner .form-group input[type="text"],
.content_block_13 .content-box .form-inner .form-group input[type="email"],
.content_block_13 .content-box .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 42px;
  font-size: 16px;
  color: #6e6e6e;
  line-height: 42px;
  border-bottom: 1px solid #e5e5e5;
  transition: all 500ms ease;
}

.content_block_13 .content-box .form-inner .form-group input:focus{

}

.content_block_13 .content-box .form-inner .form-group .theme-btn{
  padding: 17px 38px;
}

.content_block_13 .content-box .form-inner .form-group .message-btn{
  padding-top: 14px;
}

.content_block_13 .content-box .form-inner .form-group textarea{
  height: 120px;
  resize: none;
}


/*** 

====================================================================
                        home-page-4
====================================================================

***/

/** banner-style-four **/

.banner-style-four{
  overflow: hidden;
}

.banner-style-four .banner-carousel .slide-item:before{
  opacity: 0.6;
}

.banner-style-four .banner-carousel .slide-item .content-box p{
  margin-bottom: 32px;
}

.banner-style-four .banner-carousel .content-box{
  margin: 0 auto;
}

.banner-style-four .banner-carousel .slide-item{
  padding: 130px 0px 320px 0px;
}


/** feature-style-four **/

.feature-style-four .inner-container{
  position: relative;
  margin-top: -100px;
  z-index: 1;
}

.feature-block-four .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 0px 80px 35px 80px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.feature-block-four .inner-box:before{
  position: absolute;
  content: '';
  width: calc(100% - 170px);
  left: 85px;
  bottom: 0px;
  height: 7px;
  transform: scaleX(0);
  transition: all 500ms ease;
}

.feature-block-four .inner-box:hover:before{
  transform: scaleX(1);
}

.feature-block-four .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-top: -55px;
  top: -15px;
  margin-bottom: 46px;
}

.feature-block-four .inner-box .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 112px;
  height: 112px;
  line-height: 112px;
  text-align: center;
  font-size: 50px;
  background: #fbe3d4;
  border-radius: 50%;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 0% 94%, 0% 0%);
  transition: all 500ms ease;
}

.feature-block-four .inner-box:hover .icon-box .icon{
  color: #fff;
}

.feature-block-four .inner-box .icon-box .icon:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-four .inner-box:hover .icon-box .icon:before{
  transform: scale(1,1);
}

.feature-block-four .inner-box .icon-box .icon-shape{
  position: absolute;
  left: -49px;
  top: -28px;
  width: 210px;
  height: 233px;
  background-repeat: no-repeat;
}

.feature-block-four .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 16px;
}
 
.feature-block-four .inner-box h3 a{
  display: inline-block;
  color: #000;
}

.feature-block-four .inner-box h3 a:hover{

}

.feature-block-four .inner-box p{
  color: #000;
}


/** about-style-four **/

.about-style-four .inner-box .left-content p{
  color: #000;
  margin-bottom: 32px;
  font-weight: 500;
}

.about-style-four .inner-box .right-content p{
  margin-bottom: 25px;
}

.about-style-four .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.about-style-four .image-box .image:before{
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.about-style-four .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.about-style-four .image-box .image img{
  width: 100%;
}

.about-style-four .image-box .shape{
  position: absolute;
  top: -130px;
  right: -50px;
  width: 184px;
  height: 200px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 6s infinite linear;
  animation: zoom-fade 6s infinite linear;
}


/** service-style-three **/

.service-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
}

.service-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}

.service-block-two .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box img{
  opacity: 0.7;
  transform: scale(1.05);
}

.service-block-two .inner-box .lower-content{
  padding: 0px 40px 37px 40px;
}

.service-block-two .inner-box .lower-content .icon-box{
  position: relative;
  display: inline-block;
  margin-top: -49px;
  top: -11px;
  margin-bottom: 43px;
}

.service-block-two .inner-box .lower-content .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 96px;
  height: 96px;
  line-height: 96px;
  text-align: center;
  font-size: 40px;
  background: #fbe3d4;
  border-radius: 50%;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 0% 94%, 0% 0%);
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .lower-content .icon-box .icon{
  color: #fff;
}

.service-block-two .inner-box .lower-content .icon-box .icon:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .lower-content .icon-box .icon:before{
  transform: scale(1,1);
}

.service-block-two .inner-box .lower-content .icon-box .icon-shape{
  position: absolute;
  left: -46px;
  top: -27px;
  width: 188px;
  height: 208px;
  background-repeat: no-repeat;
}

.service-block-two .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 15px;
}

.service-block-two .inner-box .lower-content h3 a{
  display: inline-block;
  color: #000;
}

.service-block-two .inner-box .lower-content h3 a:hover{

}

.service-block-two .inner-box .lower-content p{
  margin-bottom: 16px;
}

.service-block-two .inner-box .lower-content .link a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  
  color: #000;
  text-transform: uppercase;
}

.service-block-two .inner-box .lower-content .link a:hover{

}

.service-block-two .inner-box .lower-content .link a span{
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.service-block-two .inner-box .lower-content .link a:hover span{
  padding-right: 21px;
}

.service-block-two .inner-box .lower-content .link a span:before{
  position: absolute;
  content: "\e906";
  font-family: 'icomoon';
  font-size: 14px;
  top: 0px;
  right: 0px;
  opacity: 0;
  transition: all 500ms ease;
}

.service-block-two .inner-box .lower-content .link a:hover span:before{
  opacity: 1;
}

.service-block-two .inner-box:before{
  position: absolute;
  content: '';
  width: calc(100% - 170px);
  left: 85px;
  bottom: 0px;
  height: 7px;
  transform: scaleX(0);
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover:before{
  transform: scaleX(1);
}

.service-style-three .owl-dots{
  position: relative;
  display: block;
  margin-top: 50px;
  text-align: center;
}

.service-style-three .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.service-style-three .owl-theme .owl-dots .owl-dot.active span,
.service-style-three .owl-theme .owl-dots .owl-dot span:hover{

}

.service-style-three .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** working-style-two **/


.working-style-two .sec-title{
  margin-bottom: -126px;
}

.working-style-two .tabs-content .text{
  position: relative;
  display: block;
  margin-top: 161px;
}

.working-style-two .tabs-content .text h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  padding-left: 40px;
  margin-bottom: 27px;
}

.working-style-two .tabs-content .text h3 i{
  position: absolute;
  left: 0px;
  font-size: 30px;
}

.working-style-two .tabs-content .text p{
  margin-bottom: 26px;
}

.working-style-two .tabs-content .text .theme-btn{
  padding: 17px 40px;
  margin-top: 6px;
}

.working-style-two .tabs-content .image-box{
  position: relative;
  display: block;
}

.working-style-two .tabs-content .image-box .shape{
  position: absolute;
  top: -35px;
  right: -35px;
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
}

.working-style-two .tabs-content .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.working-style-two .tabs-content .image-box .image img{
  width: 100%;
}

.working-style-two .tabs-box{
  position: relative;
  display: block;
  padding-bottom: 55px;
}

.working-style-two .tabs-box .tab-btn-box{
  position: absolute;
  right: 395px;
  bottom: 0px;
  z-index: 9;
}

.working-style-two .tabs-box .tab-btns li{
  position: relative;
  display: block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  font-size: 50px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  margin-bottom: 30px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  transition: all 500ms ease;
}

.working-style-two .tabs-box .tab-btns li:last-child{
  margin-bottom: 0px;
}

.working-style-two .tabs-box .tab-btns li.active-btn,
.working-style-two .tabs-box .tab-btns li:hover{
  color: #fff;
}


/** funfact-style-three **/

.funfact-style-three{
  padding: 100px 0px 170px 0px;
}

.funfact-style-three .inner-container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-block-three .inner-box{
  position: relative;
  display: block;
  padding: 8px 0px 5px 120px;
}

.counter-block-three .inner-box .icon-box{
  color: #fff;
  transition: all 500ms ease;
}

.counter-block-three .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0,0);
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
}

.counter-block-three .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.counter-block-three .inner-box .count-outer{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  
  margin-bottom: 11px;
  text-transform: uppercase;
}

.counter-block-three .inner-box p{
  color: #fff;
}

.funfact-style-three .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}


/** testimonial-style-four **/

.testimonial-style-four .bg-layer{
  position: absolute;
  left: 0px;
  top: -70px;
  width: calc(50% - 45px);
  height: calc(100% - 50px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-style-four:before{
  position: absolute;
  content: '';
  background: #f5f0ed;
  width: calc(50% + 45px);
  height: 100%;
  top: 0px;
  right: 0px;
}

.testimonial-style-four .testimonial-content{
  display: block;
}

.testimonial-style-four .testimonial-block-one .inner-box{
  padding: 0px;
  background: transparent;
}

.testimonial-style-four .testimonial-block-one .inner-box .light-icon{
  right: 0px;
}

.testimonial-style-four .owl-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -300px;
}

.testimonial-style-four .nav-style-one .owl-nav button{
  display: block;
  margin: 10px 0px;
}

.testimonial-style-four .pattern-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 446px;
  background-repeat: no-repeat;
}

.bg-color-3{
  background: #f5f0ed;
}


/** faq-style-two **/

.faq-style-two{
  position: relative;
}

.content_block_14 .content-box{
  padding-left: 120px;
  padding-bottom: 70px;
}

.content_block_14 .content-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.content_block_14 .content-box .image-box img{
  width: 100%;
}

.content_block_14 .content-box .image-box:before{
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.content_block_14 .content-box:hover .image-box:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.content_block_14 .content-box .support-center{
  width: 250px;
  background: #fff;
  text-align: center;
  padding: 58px 15px 59px 15px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
}

.content_block_14 .content-box .support-center .icon-box{
  position: relative;
  display: block;
  font-size: 45px;
  line-height: 40px;
  margin-bottom: 18px;
}

.content_block_14 .content-box .support-center h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 10px;
}

.content_block_14 .content-box .support-center h3 a{
  display: inline-block;
  color: #000;
}

.content_block_14 .content-box .support-center h3 a:hover{

}

.content_block_14 .content-box .support-center p{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.content_block_14 .content-box .experience-box{
  width: 250px;
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
}

.content_block_14 .content-box .experience-box .light-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 150px;
  color: rgba(255, 255, 255, 0.15);
}

.content_block_14 .content-box .experience-box h2{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.content_block_14 .content-box .experience-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
}

.faq-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}


/** pricing-style-two **/

.pricing-style-two{
  position: relative;
}

.pricing-block-two{
  position: relative;
  display: block;
  padding: 30px 30px 0px 30px;
}

.pricing-block-two:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: calc(100% - 140px);
  left: 0px;
  top: 0px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
}

.pricing-block-two .pricing-table{
  position: relative;
  display: block;
  background: #fff;
  padding: 30px 30px 40px 30px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
}

.pricing-block-two .pricing-table .table-header{
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 27px;
  border-bottom: 1px solid #e5e5e5;
}

.pricing-block-two .pricing-table .table-header .light-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 200px;
  color: #fdf4ee;
}

.pricing-block-two .pricing-table .table-header .icon-box{
  position: relative;
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
  z-index: 1;
  transition: all 500ms ease;
}

.pricing-block-two .pricing-table .table-header h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 19px;
}

.pricing-block-two .pricing-table .table-header p{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.pricing-block-two .pricing-table .table-header a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  
  color: #000;
  background: #fff;
  text-transform: uppercase;
  border: 1px solid #e7e7e7;
  padding: 16px 30px;
}

.pricing-block-two .pricing-table .table-header a:hover{
  color: #fff;
}

.pricing-block-two .pricing-table .feature-list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin-bottom: 10px;
}

.pricing-block-two .pricing-table .feature-list li:last-child{
  margin-bottom: 0px;
}

.pricing-block-two .pricing-table .feature-list li span{
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.pricing-block-two .pricing-table .feature-list li span:before{
  position: absolute;
  content: "\e90a";
  font-family: 'icomoon';
  font-size: 16px;
  left: 0px;
  top: 0px;
}

.pricing-block-two.active-block .pricing-table .table-header .icon-box{
  color: #fff;
  box-shadow: none;
}

.pricing-block-two.active-block .pricing-table .table-header a{
  color: #fff;
}

.pricing-block-two.active-block .pricing-table .table-header a span{
  position: relative;
  padding-right: 22px;
}

.pricing-block-two.active-block .pricing-table .table-header a span:before{
  position: absolute;
  content: "\e906";
  font-family: 'icomoon';
  font-size: 13px;
  top: -2px;
  right: 0px;
  font-weight: 400;
  transition: all 500ms ease;
}


/** project-style-two **/

.project-style-two{
  position: relative;
}

.project-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.project-style-two .owl-carousel{
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
}

.project-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-two .inner-box .image-box img{
  width: 100%;
}

.project-block-two .inner-box .image-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.30) 100%);
  bottom: 0px;
  right: 0px;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.owl-item.active .project-block-two .inner-box .image-box:before{
  opacity: 1;
}

.project-block-two .inner-box .view-btn{
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%,-50%);
  z-index: 2;
}

.project-block-two .inner-box .view-btn a{
  position: relative;
  display: inline-block;
  font-size: 80px;
  color: #fff;
  transform: scale(0,0);
}

.owl-item.active .project-block-two .inner-box .view-btn a{
  transform: scale(1,1);
}

.project-block-two .inner-box .text{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding-left: 50px;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.owl-item.active .project-block-two .inner-box .text{
  bottom: 50px;
  opacity: 1;
}

.project-block-two .inner-box .text h4{
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.project-block-two .inner-box .text h4 a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  
  background: #fff;
  padding: 16px 32px;
}

.project-block-two .inner-box .text h4 a:hover{
  
}

.project-block-two .inner-box .text span{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-weight: 500;
  background: #fff;
  padding: 7px 30px;
}

.project-style-two .owl-nav{
  position: absolute;
  left: 0px;
  top: 45%;
  transform: translateY(-50%);
  width: 100%;
}

.project-style-two .owl-nav button{
  position: absolute;
  top: 0px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
}

.project-style-two .owl-nav .owl-prev{
  left: -80px;
}

.project-style-two .owl-nav .owl-next{
  right: -80px;
}

.news-section.alternat-2 .news-block-one .inner-box .image-box:before{
  display: none;
}

.news-block-one .inner-box .image-box .category{
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
}

.news-block-one .inner-box .image-box .category a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  background: #fff;
  padding: 7px 30px;
}

.news-block-one .inner-box .image-box .category a:hover{
  color: #fff;
}



/*** 

====================================================================
                        home-page-5
====================================================================

***/


/** header-style-five **/

.header-style-five{
  position: relative;
  background: #fff;
}

.header-top-two{
  position: relative;
  display: block;
  border-bottom: 1px solid #ededed;
  padding: 11.5px 0px;
}

.header-top-two .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-two .top-inner .text p{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  padding-left: 27px;
}

.header-top-two .top-inner .text p i{
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 20px;
}

.header-top-two .top-inner .text p span{
  font-weight: 500;
}

.header-top-two .top-inner .info{
  position: relative;
  display: flex;
  align-items: center;
}

.header-top-two .top-inner .info li{
  position: relative;
  display: inline-block;
  margin-right: 30px;
}

.header-top-two .top-inner .info li:last-child{
  margin: 0px !important;
}

.header-top-two .top-inner .info li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #000;
}

.header-top-two .top-inner .info li a:hover{

}


/** header-upper-two **/

.header-upper-two{
  position: relative;
  padding: 25px 0px;
}

.header-upper-two .upper-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-upper-two .upper-inner .logo-box{
  padding: 0px 0px;
  margin: 0px;
}

.header-upper-two .upper-inner .option-block{
  position: relative;
  display: flex;
  align-items: center;
}

.header-upper-two .upper-inner .option-block .support-center{
  position: relative;
  display: block;
  padding: 0px 0px 0px 50px;
  margin-right: 60px;
}

.header-upper-two .upper-inner .option-block .support-center .icon-box{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 40px;
  line-height: 40px;
  color: #c0c0c1;
}

.header-upper-two .upper-inner .option-block .support-center p{
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 0px;
}

.header-upper-two .upper-inner .option-block .support-center h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  
  color: #000;
}

.header-upper-two .upper-inner .option-block .support-center h6 a{
  display: inline-block;
  color: #000;
}

.header-upper-two .upper-inner .option-block .support-center h6 a:hover{

}

.header-upper-two .upper-inner .option-block .search-box-outer{
  position: relative;
  display: inline-block;
  width: 500px;
  border: 1px solid #e8e8e8;
  border-radius: 30px;
  padding-left: 30px;
}

.header-upper-two .upper-inner .option-block .search-box-outer .select-box{
  position: relative;
  float: left;
  width: 160px;
}

.header-upper-two .upper-inner .option-block .search-box-outer .select-box:before{
  position: absolute;
  content: '';
  background: #e6e6e6;
  width: 1px;
  height: 24px;
  top: 12px;
  right: 12px;
}

.header-upper-two .upper-inner .option-block .search-box-outer .nice-select{
  border: none !important;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  height: 48px;
  line-height: 48px;
}

.header-upper-two .upper-inner .option-block .search-box-outer .nice-select:after {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  right: 39px;
}

.header-upper-two .upper-inner .option-block .search-box-outer .search-form{
  float: left;
  width: 308px;
}

.header-upper-two .upper-inner .option-block .search-box-outer .search-form .form-group{
  position: relative;
  margin: 0px;
}

.header-upper-two .upper-inner .option-block .search-box-outer .search-form .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  font-size: 15px;
  color: #888888;
  padding: 0px 65px 0px 10px;
}

.header-upper-two .upper-inner .option-block .search-box-outer .search-form .form-group button{
  position: absolute;
  top: -1px;
  right: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

.header-upper-two .upper-inner .other-info .info-list{
  position: relative;
  display: flex;
  align-items: center;
}

.header-upper-two .upper-inner .other-info .info-list li{
  margin-right: 22px;
}

.header-upper-two .upper-inner .other-info .info-list li:last-child{
  margin: 0px !important;
}

.header-upper-two .upper-inner .other-info .info-list li a{
  position: relative;
  display: inline-block;
  font-size: 26px;
  color: #000;
}

.header-upper-two .upper-inner .other-info .info-list li a:hover{

}

.header-upper-two .upper-inner .other-info .info-list li.cart-box a{
  padding-right: 14px;
}

.header-upper-two .upper-inner .other-info .info-list li.cart-box a span{
  position: absolute;
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  width: 21px;
  height: 21px;
  line-height: 21px;
  text-align: center;
  border-radius: 50%;
  top: -15px;
  right: 0px;
}

.header-style-five .header-lower{
  background: #2d2f32;
}

.header-style-five .outer-box{
  padding: 0px;
}

.header-style-five .nav-right{
  position: relative;
  display: flex;
  align-items: center;
}

.main-header .language{
  position:relative;
  display: inline-block;
  margin-right: 30px;
}

.main-header .language span{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  padding-right: 16px;
}

.main-header .language span:after{
  position: absolute;
  content: "\e91d";
  font-family: 'icomoon';
  font-size: 10px;
  top: 1px;
  right: 0px;
  transition: all 500ms ease;
}

.main-header .language:hover span:after{
  transform: rotate(180deg);
}

.main-header .language span:before{
  position: absolute;
  content: '';
  background: transparent;
  width: 100%;
  height: 10px;
  bottom: -10px;
}

.main-header .language .lang-dropdown{
  position: absolute;
  right: 0;
  top: 100%;
  width: 150px;
  background: #2d2f32;
  padding: 5px 0px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  margin-top: 5px;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

.main-header .language:hover .lang-dropdown{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.main-header .language .lang-dropdown li{
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.main-header .language .lang-dropdown li:last-child{
  border: none;
}

.main-header .language .lang-dropdown li a{
  position: relative;
  display: block;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-align: left;
}

.main-header .language .lang-dropdown li a:hover{
  
}

.main-header .currency-list{
  position:relative;
  display: inline-block;
}

.main-header .currency-list span{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  padding-right: 16px;
}

.main-header .currency-list span:after{
  position: absolute;
  content: "\e91d";
  font-family: 'icomoon';
  font-size: 10px;
  top: 1px;
  right: 0px;
  transition: all 500ms ease;
}

.main-header .currency-list:hover span:after{
  transform: rotate(180deg);
}

.main-header .currency-list span:before{
  position: absolute;
  content: '';
  background: transparent;
  width: 100%;
  height: 10px;
  bottom: -10px;
}

.main-header .currency-list .currency-dropdown{
  position: absolute;
  right: 0;
  top: 100%;
  width: 120px;
  background: #2d2f32;
  padding: 5px 0px;
  opacity: 0;
  margin-top: 5px;
  visibility: hidden;
  z-index: 1;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

.main-header .currency-list:hover .currency-dropdown{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.main-header .currency-list .currency-dropdown li{
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.main-header .currency-list .currency-dropdown li:last-child{
  border: none;
}

.main-header .currency-list .currency-dropdown li a{
  position: relative;
  display: block;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-align: left;
}

.main-header .currency-list .currency-dropdown li a:hover{
  
}

.header-style-five .main-menu .navigation > li > a{
  color: #fff;
  padding: 20px 0px;
}

.header-style-five .sticky-header{
  background: #2d2f32;
}


/** banner-style-five **/

.banner-style-five{
  position: relative;
  background: #ededed;
  padding: 50px 0px;
}

.banner-style-five .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-style-five .slider-content{
  position: relative;
  display: block;
  background: -webkit-linear-gradient(45deg, #f34b00, #fd7f05 100%);
  padding: 75px 120px 85px 120px;
  overflow: hidden;
}

.banner-style-five .slider-content .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-style-five .slider-content .content-box{
  max-width: 320px;
  width: 100%;
}

.banner-style-five .slider-content .image-box{
  position: absolute;
  top: 0px;
  right: 0px;
}

.banner-style-five .slider-content .content-box h2{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.banner-style-five .slider-content .content-box h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.banner-style-five .slider-content .content-box p{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 22px;
}

.banner-style-five .slider-content .content-box a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background: #2d2f32;
  padding: 12px 41px;
  z-index: 1;
}

.banner-style-five .slider-content .content-box a:hover{
  color: #2d2f32;
}

.banner-style-five .slider-content .content-box a:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.banner-style-five .slider-content .content-box a:hover:before{
  width: 100%;
}


.banner-style-five .owl-nav{
  position: absolute;
  left: 0px;
  top: 45%;
  transform: translateY(-50%);
  width: 100%;
}

.banner-style-five .owl-nav button{
  position: absolute;
  top: 0px;
  font-size: 28px;
}

.banner-style-five .owl-nav button.owl-prev{
  left: -215px;
}

.banner-style-five .owl-nav button.owl-next{
  right: -215px;
}

.banner-style-five .owl-dots{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: 90px;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  height: 26px;
  line-height: 26px;
}

.banner-style-five .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.banner-style-five .owl-theme .owl-dots .owl-dot.active span,
.banner-style-five .owl-theme .owl-dots .owl-dot span:hover{

}

.banner-style-five .banner-info{
  background: #fff;
  padding: 26px 60px 24px 60px;
}

.banner-style-five .banner-info .single-info{
  position: relative;
  display: block;
  padding: 0px 0px 0px 70px;
}

.banner-style-five .banner-info .single-info:before{
  position: absolute;
  content: '';
  background: #e5e5e5;
  width: 1px;
  height: 50px;
  top: 4px;
  right: 15px;
}

.banner-style-five .banner-info .info-column:last-child .single-info:before{
  display: none;
}

.banner-style-five .banner-info .single-info .icon-box{
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 50px;
}

.banner-style-five .banner-info .single-info h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.banner-style-five .banner-info .single-info p{
  font-size: 15px;
  line-height: 26px;
}


/** shop-section **/

.shop-section{
  padding: 50px 0px;
background: url(../images/slider2.jpg);
background-attachment: fixed;
position: relative;
background-position: center;
background-size: cover;
}


.shop-section .small-title-box h3 {
color: #fff;	
}


.shop-section .auto-container { 
position: relative;
z-index:1;
}

.shop-section:after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000c;
background: linear-gradient( to right , #000000e6 , #06163299);

}


.tabs-box .tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

.tabs-box .tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.tabs-box .tabs-content {
  position: relative;
  display: block;
}

.tabs-box .tab.active-tab .shop-block-one {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.tabs-box .tab .shop-block-one {
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}

.shop-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border: 2px solid #fff;
  text-align: center;
  transition: all 500ms ease;
}

.shop-block-one .inner-box:hover{
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.shop-block-one .inner-box .image-box{
  position: relative;
  display: block;
}

.shop-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.shop-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;height: 220px;
}

.shop-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.03);
}

.shop-block-one .inner-box .image-box .option-list{
  position: absolute;
  bottom: 0px;
  width: calc(100% - 60px);
  left: 30px;
  background: #fff;
  padding: 17px 23px;
  text-align: center;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
  transform: scale(0,0);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}

.shop-block-one .inner-box:hover .image-box .option-list{
  transform: scale(1,1);
  opacity: 1;
}

.shop-block-one .inner-box .image-box .option-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 5px;
}

.shop-block-one .inner-box .image-box .option-list li:last-child{
  margin: 0px !important;
}

.shop-block-one .inner-box .image-box .option-list li a{
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 40px;
  background: #ededed;
  font-size: 16px;
  color: #000;
  text-align: center;
  border-radius: 50%;
}

.shop-block-one .inner-box .image-box .option-list li a:hover{
  color: #fff;
}

.shop-block-one .inner-box .image-box .hot{
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 13px;
  line-height: 27px;
  color: #fff;background: #f2270f;
  padding: 0px 16px;z-index: 2;
}

.shop-block-one .inner-box .image-box .new{
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 13px;
  line-height: 27px;
  color: #fff;
  padding: 0px 16px;background: #15ad64;z-index: 2;
}


.shop-block-one .inner-box .image-box .sale{
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 13px;
  line-height: 27px;
  color: #fff;
  padding: 0px 16px;z-index: 2;
}

.shop-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 8px 12px;border-top: 1px dashed #ddd;
}

.shop-block-one .inner-box .lower-content h6{
  position: relative;
  display: grid;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 0;
height: 40px;
overflow: hidden;
text-transform: capitalize;
align-items: center;
}

.shop-block-one .inner-box .lower-content h6 a{
  display: inline-block;
  color: #000;
}

.shop-block-one .inner-box .lower-content h6 a:hover{

}

.shop-block-one .inner-box .lower-content .rating li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ffc92e;
}

.shop-block-one .inner-box .lower-content .rating{
  margin-bottom: 5px;
}

.shop-block-one .inner-box .lower-content .price{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #15ad64;
}

.small-title-box{
  position: relative;
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

/*
.small-title-box:before{
  position: absolute;
  content: '';
  width: 70px;
  height: 2px;
  left: 0px;
  bottom: -1px;
}*/

.small-title-box h3{
  position: relative;
  font-size: 22px;
  font-weight: normal;text-transform: capitalize;margin-bottom: 10px;
}

.shop-section .tab-btn-box{
  position: absolute;
  right: 0px;
  top: 4px;
  padding-right: 67px;
  z-index: 1;
}

.shop-section .tab-btn-box .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  margin-right: 30px;
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-section .tab-btn-box .tab-btns li:last-child{
  margin: 0px !important;
}

.shop-section .tab-btn-box .tab-btns li:hover,
.shop-section .tab-btn-box .tab-btns li.active-btn{

}

.owl-nav{
  position: absolute;
  top: -67px;
  left: 0px;
}

.owl-nav button{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  z-index: 1;
  transition: all 500ms ease;
width:40px;
height:40px;
background: #67bb00;
margin-right: 5px;
border-radius: 0 50% 50%;
}

.owl-nav button:hover{

}

/***************/





.custom-nav .owl-nav{
  position: absolute;
  top: -55px;
  right: 0px;
}



.custom-nav .owl-dots{
  position: relative;
  display: block;
  margin-top: 0px;
  text-align: center;
}

.custom-nav .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 8px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 8px;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.custom-nav .owl-dots .owl-dot.active span,
.custom-nav .owl-dots .owl-dot span:hover{
  width: 25px;
}


/** promotion-section **/

.promotion-section{
  background: #f2f2f2;
}

.promotion-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  padding: 36px 40px 40px 40px;
  background: -webkit-linear-gradient(45deg, #8b12ab, #d755bd 100%);
  min-height: 370px;
}

.promotion-block:nth-child(2) .promotion-block-one .inner-box{
  background: -webkit-linear-gradient(45deg, #0e7cad, #51e9c9 100%);
}

.promotion-block:last-child .promotion-block-one .inner-box{
  background: -webkit-linear-gradient(45deg, #e7594a, #f1b540 100%);
}

.promotion-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  
}

.promotion-block-one .inner-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  
  text-transform: uppercase;
}

.promotion-block-one .inner-box .btn-box{
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 1;
}

.shop-btn{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  
  color: #000;
  text-transform: uppercase;
  background: #fff;
  padding: 7.5px 19px;
  z-index: 1;
}

.shop-btn i{
  position: relative;
  margin-left: 6px;
  font-size: 12px;
}

.shop-btn:hover{
  color: #fff;
}

.shop-btn:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background: #000;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.shop-btn:hover:before{
  width: 100%;
}

.promotion-block-one .inner-box .image-box{
  position: absolute;
  bottom: 90px;
  right: 60px;
}

.promotion-block-one .inner-box .shape .shape-1{
  position: absolute;
  top: -100px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  -webkit-animation: zoom-fade 8s infinite linear;
  animation: zoom-fade 8s infinite linear;
}

.promotion-block-one .inner-box .shape .shape-2{
  position: absolute;
  top: -100px;
  right: -200px;
  width: 440px;
  height: 420px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  -webkit-animation: zoom-fade 7s infinite linear;
  animation: zoom-fade 7s infinite linear;
}

.promotion-block-one .inner-box .shape .shape-3{
  position: absolute;
  right: 7px;
  bottom: 30px;
  width: 76px;
  height: 166px;
  background-repeat: no-repeat;
}


/** deals-section **/

.deals-section{
  background: #f2f2f2;
  padding-top: 41px;
}

.deals-section .small-title-box .link{
  position: absolute;
  top: 5px;
  right: 0px;
}

.deals-section .small-title-box .link a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
}

.deals-section .small-title-box .link a i{
  position: relative;
  margin-left: 6px;
  font-size: 12px;
}

.deals-section .small-title-box .link a:hover{

}

.deals-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  padding: 45px 30px 50px 245px;
}

.deals-block-one .inner-box .cs-countdown .count-col{
  position: relative;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  float: left;
  width: 60px;
  height: 60px;
  background: #f2f2f2;
  border-radius: 50%;
  padding-top: 10px;
}

.deals-block-one .inner-box .cs-countdown .count-col:last-child{
  margin: 0px !important;
}

.deals-block-one .inner-box .cs-countdown .count-col span{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 18px;
  
  color: #000;
  margin-bottom: 0px;
}

.deals-block-one .inner-box .cs-countdown .count-col h6{
  position: relative;
  font-size: 12px;
  line-height: 12px;
  color: #6e6e6e;
  font-weight: 400;
  text-transform: capitalize;
}

.deals-block-one .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 243px;
}

.deals-block-one .inner-box .image-box .discount{
  position: absolute;
  top: 28px;
  right: 45px;
  font-size: 13px;
  line-height: 27px;
  color: #fff;
  text-align: center;
  padding: 0px 11px;
}

.deals-block-one .inner-box .content-box h5{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 5px;
}

.deals-block-one .inner-box .content-box h5 a{
  display: inline-block;
  color: #000;
}

.deals-block-one .inner-box .content-box h5 a:hover{

}

.deals-block-one .inner-box .content-box .rating li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 14px;
  margin-right: 5px;
  color: #ffc92e;
}

.deals-block-one .inner-box .content-box .rating li:last-child{
  margin: 0px !important;
}

.deals-block-one .inner-box .content-box .rating{
  margin-bottom: 4px;
}

.deals-block-one .inner-box .content-box .price{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #000;
  font-weight: 500;
  margin-bottom: 16px;
}

.deals-block-one .inner-box .content-box p{
  margin-bottom: 22px;
}

.shop-section.style-two .shop-block-one .inner-box{
  margin-bottom: 30px;
}

.shop-block-two .inner-box{
  position: relative;
  display: block;
  padding: 34px 40px 80px 40px;
  background: -webkit-linear-gradient(90deg, #1258c1, #3bc0fe 100%);
  overflow: hidden;
  min-height: 830px;
}

.shop-block-two .inner-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.shop-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 23px;
}

.shop-block-two .inner-box h3 span{
  display: block;
  font-weight: 500;
}

.shop-block-two .inner-box .image-box{
  position: relative;
  display: block;
  margin-top: 130px;
  text-align: center;
}

.shop-block-two .inner-box .shape .shape-1{
  position: absolute;
  left: -65px;
  bottom: -200px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  -webkit-animation: zoom-fade 6s infinite linear;
  animation: zoom-fade 6s infinite linear;
}

.shop-block-two .inner-box .shape .shape-2{
  position: absolute;
  left: -65px;
  bottom: -160px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  -webkit-animation: zoom-fade 8s infinite linear;
  animation: zoom-fade 8s infinite linear;
}

.shop-block-two .inner-box .shape .shape-3{
  position: absolute;
  left: -130px;
  top: 50%;
  transform: translateY(-50%);
  width: 184px;
  height: 200px;
  background-repeat: no-repeat;
}

.shop-block-two .inner-box .shape .shape-4{
  position: absolute;
  right: -130px;
  top: 150px;
  width: 184px;
  height: 200px;
  background-repeat: no-repeat;
}

.shop-section.style-two{
  padding-top: 50px;
  padding-bottom: 0px;
}

.shop-section.style-four .shop-block-one .inner-box {
  margin-bottom: 30px;
}

.shop-section.style-three{
  padding-top: 47px;
  padding-bottom: 74px;
}

.shop-section.style-four{
  padding-top: 0px;
  padding-bottom: 50px;
}

.shop-section.style-four .shop-block-two .inner-box{
  background: -webkit-linear-gradient(90deg, #522bde, #b172f6 100%);
}

.shop-section.style-four .owl-nav{
  right: -300px;
}


/** promotion-style-two **/

.promotion-style-two{
  background: #f2f2f2;
}

.promotion-style-two .inner-container{
  background: -webkit-linear-gradient(0deg, #df2e7f, #f79751 100%);
  padding: 91px 30px 87px 30px;
  overflow: hidden;
}

.promotion-style-two .inner-container .text{
  max-width: 400px;
}

.promotion-style-two .inner-container h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  
  text-transform: uppercase;
  margin-bottom: 4px;
}

.promotion-style-two .inner-container h3{
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 32px;
  color: #fff;
  
}

.promotion-style-two .inner-container .image{
  position: absolute;
  top: 0px;
  right: 0px;
}

.promotion-style-two .inner-container .shape .shape-1{
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  left: 190px;
  top: -310px;
  -webkit-animation: zoom-fade 8s infinite linear;
  animation: zoom-fade 8s infinite linear;
}

.promotion-style-two .inner-container .shape .shape-2{
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  right: 300px;
  bottom: -220px;
  -webkit-animation: zoom-fade 6s infinite linear;
  animation: zoom-fade 6s infinite linear;
}

.promotion-style-two .inner-container .shape .shape-3{
  position: absolute;
  left: 10px;
  bottom: 6px;
  width: 148px;
  height: 58px;
  background-repeat: no-repeat;
}

.promotion-style-two .inner-container .shape .shape-4{
  position: absolute;
  left: 370px;
  top: 0px;
  width: 184px;
  height: 92px;
  background-repeat: no-repeat;
}

.shop-block-three .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 27px 30px 49px 150px;
  margin-bottom: 30px;
}

.shop-block-three .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 150px;
}

.shop-block-three .inner-box .content-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

.shop-block-three .inner-box .content-box h6 a{
  display: inline-block;
  color: #000;
}

.shop-block-three .inner-box .content-box h6 a:hover{

}

.shop-block-three .inner-box .content-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ffc92e;
}

.shop-block-three .inner-box .content-box .rating{
  margin-bottom: 5px;
}

.shop-block-three .inner-box .content-box .price{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
}

.shop-section.style-five{
  padding-bottom: 50px;
}



/*** 

====================================================================
                        home-page-6
====================================================================

***/


/** banner-style-six **/

.banner-style-six{
  padding-top: 50px;
}

.banner-style-six .shop-category{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e6e6e6;
}

.banner-style-six .shop-category h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 26px;
  
  padding: 18px 30px 19px 60px;
  border-bottom: 1px solid #e6e6e6;
  text-transform: uppercase;
}

.banner-style-six .shop-category h6 i{
  position: absolute;
  left: 30px;
  top: 23px;
  font-weight: 700;
}

.banner-style-six .shop-category .category-list > li{
  position: relative;
  display: block;
}

.banner-style-six .shop-category .category-list > li > a{
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid #edf1f5;
  padding: 15px 30px 14px 30px;
}

.banner-style-six .shop-category .category-list > li > a:hover{

}

.banner-style-six .shop-category .category-list > li.dropdown > a:before{
  position: absolute;
  content: "\e906";
  font-family: 'icomoon';
  font-size: 10px;
  top: 16px;
  right: 27px;
  font-weight: 700;
  transition: all 500ms ease;
}

.banner-style-six .shop-category .category-list > li:last-child > a{
  border-bottom: none;
}

.banner-style-six .shop-category .category-list .dropdown ul{
  position: absolute;
  top: 15px;
  left: 100%;
  width: 220px;
  background: #fff;
  border: 1px solid #edf1f5;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  z-index: 2;
  transition: all 500ms ease;
}

.banner-style-six .shop-category .category-list .dropdown:hover ul{
  top: 0px;
  opacity: 1;
  visibility: visible;
}

.banner-style-six .shop-category .category-list .dropdown ul li a{
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid #edf1f5;
  padding: 8px 30px 7px 30px;
}

.banner-style-six .shop-category .category-list .dropdown ul li:last-child a{
  border-bottom: none;
}

.banner-style-six .shop-category .category-list .dropdown ul li a:hover{

}

.banner-style-six .slider-content{
  position: relative;
  display: block;
  background: #f2f2f2;
  padding: 80px 50px 86px 80px;
  overflow: hidden;
}

.banner-style-six .slider-content .shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 288px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-style-six .slider-content .content-box{
  max-width: 350px;
}

.banner-style-six .slider-content h2{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 13px;
}

.banner-style-six .slider-content h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.banner-style-six .slider-content h3 span{
  display: block;
  font-weight: 500;
}

.banner-style-six .slider-content p{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 22px;
}

.banner-style-six .slider-content .image-box{
  position: absolute;
  right: 80px;
  bottom: 80px;
}

.banner-style-six .owl-dots{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: 90px;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  height: 26px;
  line-height: 26px;
}

.banner-style-six .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.banner-style-six .owl-theme .owl-dots .owl-dot.active span,
.banner-style-six .owl-theme .owl-dots .owl-dot span:hover{

}

.clients-section.shop-page{
  padding: 50px 0px;
  border-bottom: 1px solid #e5e5e5;
}

.clients-section.shop-page .clients-logo img{
  opacity: 0.5;
}

.clients-section.shop-page .clients-logo img:hover{
  opacity: 1;
}

.sec-title h3{
  font-size: 26px;
}


/** category-section **/

.category-section{
  padding: 50px 0px;
background: #f6f6f6;
}

.category-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  padding: 25px;
  z-index: 1;
  margin-bottom: 15px;
  transition: all 500ms ease;background: #fff;text-align: center;
}

.category-block-one .inner-box:hover{

}

.category-block-one .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.category-block-one .inner-box:hover:before{
  height: 100%;
}

.category-block-one .inner-box .icon-box{

  left: 12px;
  top: 13px;
  display: grid;
align-items: center;
padding: 10px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 40px;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  text-align: center;margin: 20px auto;
  transition: all 500ms ease;background: #fff;text-align: center;
}



.dl-more {
display: flex;
color: #3fa796;align-items: center;justify-content: center;
}

.dl-more i {

margin-left:5px;
}

.category-block-one .inner-box .icon-box img { 
margin: 0 auto;
width: 90%;
}

.category-block-one .inner-box:hover .icon-box{
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.category-block-one .inner-box h4{
position: relative;
display: block;
font-size: 17px;
line-height: 30px;
margin-bottom: 7px;
transition: all 500ms ease;
text-transform: capitalize;
}


.category-block-one .inner-box span{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  transition: all 500ms ease;
}
.category-block-one .inner-box:hover i,
.category-block-one .inner-box:hover h4,
.category-block-one .inner-box:hover span{
  color: #fff;
}


/** promotion-style-three **/

.promotion-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #ededed;
  padding: 60px 30px 66px 30px;
  min-height: 270px;
}

.promotion-block-two .inner-box .shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 222px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.promotion-block-two .inner-box .image-box{
  position: absolute;
  top: 0px;
  right: 0px;
}

.promotion-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  
}

.promotion-block:first-child .promotion-block-two .inner-box h3{
  color: #000;
}

.promotion-block-two .inner-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  
  color: #fff;
  text-transform: uppercase;
}

.promotion-block:first-child .promotion-block-two .inner-box h6{
  
}

.promotion-block:nth-child(2) .promotion-block-two .inner-box{
  background: -webkit-linear-gradient(45deg, #0c72a3, #5bf5d1 100%);
}

.promotion-block:last-child .promotion-block-two .inner-box{
  background: -webkit-linear-gradient(45deg, #ef6056, #fed171 100%);
}

.shop-section.alternat-2{
  background: #fff;
}

.shop-section.alternat-2 .shop-block-one .inner-box{
  border: 2px solid #e6e6e6;
}



/** deals-style-two **/

.deals-style-two{
  padding: 74px 0px 80px 0px;
}

.deals-style-two .small-title-box{
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.deals-style-two .small-title-box h3{
  color: #fff;
}

.deals-style-two .deals-block-one .inner-box{
  border: none;
}

.deals-style-two .deals-block-one .inner-box{
  padding: 72px 30px 75px 245px;
}

.deals-style-two .owl-nav{
  position: absolute;
  top: -67px;
  right: 0px;
}

.deals-style-two .owl-nav button{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  z-index: 1;
  transition: all 500ms ease;
}

.deals-style-two .owl-nav button:hover{

}

.deals-style-two .owl-nav button.owl-prev{
  margin-right: 20px;
}


.shop-section.style-six .shop-block-one .inner-box{
  margin-bottom: 10px;
}

.promotion-style-two.alternat-2 .inner-container{
  background: -webkit-linear-gradient(0deg, #c44b23, #ffa35f 100%);
}

.white-bg{
  background: #fff !important;
}

.bg-color-4{
  background: #f2f2f2;
}

.shop-section.home-6 .shop-block-one .inner-box,
.shop-section.home-6 .shop-block-three .inner-box{
  border: 1px solid #fff;
}



/*** 

====================================================================
                        About-page
====================================================================

***/


/** page-title **/

.page-title{
  position: relative;
  padding: 104px 0px 106px 0px;
  overflow: hidden;
}

.page-title:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.5;
}

.page-title .content-box h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-title .content-box .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  line-height: 26px;
  padding-right: 17px;
  margin-right: 3px;
}

.page-title .content-box .bread-crumb li:last-child{
  padding: 0px !important;
  margin: 0px !important;
}

.page-title .content-box .bread-crumb li a{
  display: inline-block;
  color: #a9a9aa;
}

.page-title .content-box .bread-crumb li:before{
  position: absolute;
  content: "\e906";
  font-family: 'icomoon';
  font-size: 10px;
  top: 0px;
  right: 0px;
  color: #a9a9aa;
}

.page-title .content-box .bread-crumb li:last-child:before{
  display: none;
}

.image_block_eight .image-box{
  margin-right: 30px;
  padding-right: 70px;
  padding-bottom: 130px;
}

.image_block_eight .image-box img{
  width: 100%;
}

.image_block_eight .image-box .image-1{
  position: relative;
  display: block;
  overflow: hidden;
}

.image_block_eight .image-box .image-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  border: 10px solid #fff;
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.image_block_eight .image-box .image-1:before{
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.image_block_eight .image-box:hover .image-1:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.image_block_eight .image-box .icon-box{
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 1;
}

.image_block_eight .image-box .shape .shape-1{
  position: absolute;
  top: -30px;
  right: 40px;
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
}

.image_block_eight .image-box .shape .shape-2{
  position: absolute;
  left: -50px;
  bottom: 80px;
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
}

.about-section .pattern-layer-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 337px;
  height: 406px;
  background-repeat: no-repeat;
}

.testimonial-style-two.about-page{
  padding: 115px 0px 0px 0px;
}

.testimonial-style-two.about-page .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 500px;
  background: #26282e;
}


/*** 

====================================================================
                        Service-page
====================================================================

***/


.service-style-two.service-page-1{
  padding-bottom: 90px;
}

.service-style-two.service-page-1 .service-block-one .inner-box{
  margin-bottom: 30px;
}

.service-style-three.service-page-2{
  padding: 115px 0px 90px 0px;
}

.service-style-three.service-page-2 .service-block-two .inner-box{
  margin-bottom: 30px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.service-page-3{
  padding: 115px 0px 70px 0px;
}


/** service-details **/

.service-details{
  padding: 120px 0px;
}

.service-sidebar{
  position: relative;
  display: block;
}

.service-sidebar .accordion-box .block .acc-btn .icon-outer{
  transform: rotate(0deg);
  top: 26px;
}

.service-sidebar .accordion-box .block .acc-btn .icon-outer:before{
  position: absolute;
  content: "\e948";
  font-family: 'icomoon';
  top: 0px;
  right: 0px;
  font-size: 18px;
  font-weight: 700;
}

.service-sidebar .accordion-box .block .acc-btn{
  padding: 23px 50px 21px 30px;
}

.service-sidebar .accordion-box .block .acc-btn.active .icon-outer:before{
  content: '\e947';
}

.service-sidebar .accordion-box .acc-content{
  position: relative;
  padding-bottom: 20px;
}

.service-sidebar .accordion-box .acc-content .service-list li{
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.service-sidebar .accordion-box .acc-content .service-list li:last-child{
  margin-bottom: 0px;
}

.service-sidebar .accordion-box .acc-content .service-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  padding-left: 20px;
}

.service-sidebar .accordion-box .acc-content .service-list li a:hover{

}

.service-sidebar .accordion-box .acc-content .service-list li a:before{
  position: absolute;
  content: '\e906';
  font-family: 'icomoon';
  font-size: 12px;
  left: 0px;
  top: 0px;
  font-weight: 700;
}

.service-sidebar .accordion-box .block{
  margin-bottom: 20px;
}

.service-sidebar .accordion-box .block:last-child{
  margin-bottom: 0px;
}

.service-details-content{
  position: relative;
  display: block;
}

.service-details-content h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  
  margin-bottom: 13px;
}

.service-details-content .content-one{
  margin-bottom: 64px;
}

.service-details-content .content-one .text p{
  margin-bottom: 52px;
}

.service-details-content .content-one .text p:last-child{
  margin-bottom: 0px;
}

.service-details-content .content-one .text{
  margin-bottom: 27px;
}

.service-details-content .content-one .image-box{
  position: relative;
  display: block;
  margin-bottom: 62px;
}

.service-details-content .content-one .image-box img{
  width: 100%;
}

.service-details-content .content-two{
  margin-bottom: 64px;
}

.service-details-content .content-two img{
  width: 100%;
}

.service-details-content .content-three h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

.service-details-content .content-three p{
  margin-bottom: 26px;
}

.service-details-content .content-three .list-style-one{
  margin-bottom: 65px;
}

.service-details-content .content-three .theme-btn{
  padding: 17px 32px;
}

.team-section.team-page-1 .team-block-one .inner-box{
  margin-bottom: 23px;
}

.team-section.team-page-1{
  padding-bottom: 90px;
}

.team-style-two.team-page-2 .team-block-two .inner-box{
  margin-bottom: 70px;
}

.team-style-two.team-page-2{
  padding-bottom: 50px;
}


/** team-details **/

.team-details{
  padding: 120px 0px;
}

.team-details .image-box{
  position: relative;
  display: block;
}

.team-details .image-box .image{
  position: relative;
  display: block;
  border-radius: 50%;
}

.team-details .image-box .image img{
  width: 100%;
  border-radius: 50%;
}

.team-details .image-box .shape{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 184px;
  height: 204px;
  background-repeat: no-repeat;
}

.team-details .content-box{
  position: relative;
  display: block;
}

.team-details .content-box h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  
  margin-bottom: 9px;
}

.team-details .content-box .designation{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 25px;
}

.team-details .content-box p{
  margin-bottom: 27px;
}

.team-details .content-box .info-list li{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 10px;
}

.team-details .content-box .info-list li:last-child{
  margin-bottom: 0px;
}

.team-details .content-box .info-list li span{
  position: relative;
  display: inline-block;
  width: 165px;
  font-size: 18px;
  
  color: #000;
}

.team-details .content-box .info-list li a{
  display: inline-block;
  color: #6e6e6e;
}

.team-details .content-box .info-list li a:hover{

}

.team-details .content-box .info-list{
  margin-bottom: 33px;
}

.team-details .content-box .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 20px;
}

.team-details .content-box .social-links li:last-child{
  margin: 0px !important;
}

.team-details .content-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border: 1px solid #e7e7e7;
  font-size: 16px;
  color: #808080;
  border-radius: 50%;
  text-align: center;
}

.team-details .content-box .social-links li a:hover{
  color: #fff;
}

.team-details .pattern-layer{
  position: absolute;
  right: 100px;
  bottom: 0px;
  width: 231px;
  height: 392px;
  background-repeat: no-repeat;
}


/** personal-info **/

.personal-info{
  padding: 114px 0px 111px 0px;
}

.personal-info .text h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  
  margin-bottom: 23px;
}

.personal-info .text p{
  margin-bottom: 26px;
}

.personal-info .text p:last-child{
  margin-bottom: 0px;
}


/** skills-section **/

.skills-section{
  padding: 80px 0px 112px 0px;
}

.skills-section .skills-inner{
  position: relative;
  display: block;
}

.skills-section .progress-box h6,
.skills-section .progress-box .count-text{
  font-weight: 400;
  color: #000;
}

.skills-section h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  
  margin-bottom: 13px;
}

.skills-section .skills-inner .text{
  margin-bottom: 17px;
}

.skills-section .progress-box .bar{
  background: #edeae6;
}

.skills-section .progress-box .bar-inner,
.skills-section .progress-box .bar{
  height: 6px;
}

.skills-section .progress-box h6{
  margin-bottom: 4px;
}

.skills-section .education-inner{
  position: relative;
  display: block;
}

.skills-section .education-inner .text{
  margin-bottom: 22px;
}

.skills-section .education-inner .single-item{
  position: relative;
  display: block;
}

.skills-section .education-inner .single-item span{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  color: #fff;
  background: #26282e;
  padding: 7px 21px;
  text-align: center;
  margin-bottom: 25px;
}

.skills-section .education-inner .single-item span:before{
  position: absolute;
  content: '';
  background: #26282e;
  width: 10px;
  height: 10px;
  left: 0px;
  bottom: -10px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.skills-section .education-inner .single-item h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  
  margin-bottom: 12px;
}


/*** 

====================================================================
                        Project-page
====================================================================

***/

.project-page-section{
  position: relative;
}

.project-page-section .outer-container{
  margin: 0px 15px;
}

.project-page-section .masonry-item{
  padding: 0px;
}

.project-page-section .upper-box{
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.project-page-section .upper-box .filters{
  position: absolute;
  right: 0px;
  bottom: 11px;
  z-index: 1;
}

.project-page-section .upper-box .filter-tabs li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  margin-right: 35px;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.project-page-section .upper-box .filter-tabs li:last-child{
  margin: 0px !important;
}

.project-page-section .upper-box .filter-tabs li.active,
.project-page-section .upper-box .filter-tabs li:hover{

}

.project-page-two .upper-box .filter-tabs li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  margin-right: 35px;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.project-page-two .upper-box .filter-tabs li:last-child{
  margin: 0px !important;
}

.project-page-two .upper-box .filter-tabs li.active,
.project-page-two .upper-box .filter-tabs li:hover{

}

.project-block-three .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 43px;
}

.project-block-three .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-three .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-three .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.project-block-three .inner-box:hover .image-box .image img{
  transform: scale(1.05);
  opacity: 0.2;
}

.project-block-three .inner-box .image-box .view-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.project-block-three .inner-box .image-box .view-btn a{
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: #fff;
  transform: scale(0,0);
}

.project-block-three .inner-box:hover .image-box .view-btn a{
  transform: scale(1,1);
}

.project-block-three .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 17px;
}

.project-block-three .inner-box .lower-content h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
  margin-bottom: 4px;
}

.project-block-three .inner-box .lower-content h4 a{
  display: inline-block;
  color: #000;
}

.project-block-three .inner-box .lower-content h4 a:hover{

}

.project-block-three .inner-box .lower-content span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.project-page-two{
  padding: 115px 0px 70px 0px;
}


/** project-details **/

.project-details{
  padding: 120px 0px 112px 0px;
}

.project-sidebar{
  position: relative;
  display: block;
}

.project-sidebar .text{
  margin-bottom: 27px;
}

.project-sidebar .text h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  
  margin-bottom: 23px;
}

.project-sidebar .project-info li{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 14px;
}

.project-sidebar .project-info li:last-child{
  margin-bottom: 0px;
}

.project-sidebar .project-info li span{
  position: relative;
  display: inline-block;
  width: 120px;
  font-size: 18px;
  
  color: #000;
}

.project-sidebar .project-info li a{
  color: #6e6e6e;
}

.project-sidebar .project-info li a:hover{

}

.project-sidebar .project-info li.social-links a{
  display: inline-block;
  font-size: 15px;
  color: #bebebe;
  margin-right: 20px;
}

.project-sidebar .project-info li.social-links a:last-child{
  margin: 0px !important;
}

.project-sidebar .project-info li.social-links a:hover{

}

.project-details-content{
  position: relative;
  display: block;
}

.project-details-content img{
  width: 100%;
}

.project-details-content .content-one{
  position: relative;
  display: block;
  margin-bottom: 63px;
}

.project-details-content .content-one .image-box{
  position: relative;
  display: block;
  margin-bottom: 68px;
}

.project-details-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 15px;
}

.project-details-content p{
  margin-bottom: 26px;
}

.project-details-content .text p:last-child{
  margin-bottom: 0px;
}

.project-details-content .content-two .image-box{
  margin-bottom: 64px;
}

.project-details-content .content-two .list-style-one{
  margin-bottom: 28px;
}

.project-details .nav-btn{
  position: relative;
  display: block;
  margin-top: 104px;
}

.project-details .nav-btn h6{
  font-size: 15px;
  line-height: 26px;
  
  text-transform: uppercase;
}

.project-details .nav-btn h6 a{
  display: inline-block;
  color: #000;
}

.project-details .nav-btn h6 a:hover{

}

.project-details .nav-btn h6 a i{
  position: relative;
  top: 2px;
  font-size: 22px;
}

.project-details .nav-btn .prev-btn h6 a i{
  margin-right: 6px;
}

.project-details .nav-btn .next-btn h6 a i{
  margin-left: 6px;
}


/** testimonial-style-five **/

.testimonial-style-five{
  padding: 115px 0px 90px 0px;
}

.testimonial-style-five .testimonial-block-one .inner-box{
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 30px;
}


/** testimonial-style-six **/

.testimonial-style-six{
  padding: 115px 0px 90px 0px;
}

.testimonial-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 50px 30px 43px 30px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 30px;
}

.testimonial-block-two .inner-box .author-thumb{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 24px;
}

.testimonial-block-two .inner-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-block-two .inner-box p{
  margin-bottom: 15px;
  line-height: 28px;
}

.testimonial-block-two .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
  margin-bottom: 4px;
}

.testimonial-block-two .inner-box .designation{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 7px;
}

.testimonial-block-two .inner-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #ffc92e;
}

.faq-page-section .sec-title p{
  color: #000;
}


/** contact-style-two **/

.contact-style-two .bg-layer{
  position: absolute;
  left: 0px;
  bottom: -65px;
  background: #faf9f8;
  width: 100%;
  height: calc(100% - 80px);
}

.contact-style-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 65px 70px 70px 70px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
}


/** appointment-section **/

.content_block_13 .content-box .form-inner .form-group i{
  position: absolute;
  top: 13px;
  right: 15px;
  color: #6e6e6e;
  font-size: 16px;
  z-index: 1;
}

.error-section{
  padding: 150px 0px 150px 0px;
}

.error-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% + 65px);
  background-size: cover;
  background-repeat: no-repeat;
}

.error-section .error-image{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.error-section h2{
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 21px;
}

.error-section p{
  margin-bottom: 34px;
  font-size: 20px;
  line-height: 30px;
}

.error-section .theme-btn{
  padding: 17px 33px;
}

.error-section .theme-btn i{
  position: relative;
  top: 2px;
  margin-right: 8px;
}



/*** 

====================================================================
                        Shop-page
====================================================================

***/


/** shop-page-section **/

.shop-page-section{
  position: relative;
  padding: 120px 0px;
}

.shop-sidebar{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
  padding: 43px 30px 40px 30px;
}

.shop-sidebar .widget-title{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.shop-sidebar .widget-title h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
}

.shop-sidebar .search-widget .form-group{
  position: relative;
  margin-bottom: 0px;
}

.shop-sidebar .search-widget .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #808080;
  padding: 10px 20px 10px 50px;
  transition: all 500ms ease;
}

.shop-sidebar .search-widget .form-group button{
  position: absolute;
  left: 21px;
  top: 14px;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: #808080;
  transition: all 500ms ease;
}

.shop-sidebar .search-widget .form-group input:focus{

}

.shop-sidebar .search-widget .form-group input:focus + button,
.shop-sidebar .search-widget .form-group button:hover{

}

.shop-sidebar .search-widget{
  padding-bottom: 30px;
  margin-bottom: 23px;
  border-bottom: 1px solid #e5e5e5;
}

.shop-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.shop-sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}

.shop-sidebar .category-widget .category-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  padding-left: 18px;
}

.shop-sidebar .category-widget .category-list li a i{
  position: absolute;
  left: 0px;
  top: 7px;
  font-size: 12px;
  font-weight: 700;
}

.shop-sidebar .category-widget .category-list li a:hover{

}

.shop-sidebar .category-widget .widget-title{
  margin-bottom: 15px;
}

.shop-sidebar .category-widget{
  padding-bottom: 25px;
  margin-bottom: 23px;
  border-bottom: 1px solid #e5e5e5;
}


.range-slider .title:before {
  position: absolute;
  content: '$';
  left: -5px;
  top: -18px;
  color: #919191;
  font-size: 15px;
}

.range-slider .input{
  color:#919191;
  max-width: 75px;
}

.range-slider .input input{
  background:none;
  color:#919191;
  font-size:15px;
  line-height: 26px;
  text-align:left;
  width: 80px;
}

.range-slider .ui-widget.ui-widget-content{
  height:3px;
  border:none;
  margin-bottom:18px;
  background:#f0f0f0; 
}

.range-slider .ui-slider .ui-slider-range{
  top:0px;
  height:3px;
}

.range-slider .ui-state-default,
.range-slider .ui-widget-content .ui-state-default{
  top:-5px;
  width:13px;
  height:13px;
  border: none;
  border-radius:50%;
  cursor:pointer; 
  margin-left: 0px;;
}

.range-slider .ui-slider .ui-slider-range{
  
}

.shop-sidebar .price-filter .pull-right p{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  color: #808080;
  margin-right: 5px;
}

.shop-sidebar .price-filter{
  padding-bottom: 25px;
  margin-bottom: 22px;
  border-bottom: 1px solid #e5e5e5;
}

.shop-sidebar .price-filter .filter-btn{
  position: relative;
  font-size: 15px;
  line-height: 24px;
  color: #000;
  text-transform: uppercase;
}

.shop-sidebar .tags-widget .tags-list{
  margin: 0px -5px;
}

.shop-sidebar .tags-widget .tags-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin: 0px 5px;
  margin-bottom: 10px;
}

.shop-sidebar .tags-widget .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  border: 1px solid #e5e5e5;
  padding: 4px 13px;
  text-align: center;
}

.shop-sidebar .tags-widget .tags-list li a:hover{
  color: #fff;
}

.wrapper.list .shop-list-content{
  display: block;
}

.wrapper.list .shop-grid-content{
  display: none
}

.wrapper.grid .shop-list-content{
  display: none;
}

.wrapper.grid .shop-grid-content{
  display: block
}

.shop-page-section .item-shorting .left-column .btn-box button{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #242426;
  margin-right: 12px;
  transition: all 500ms ease;
}

.shop-page-section .item-shorting .left-column .btn-box button:last-child{
  margin: 0px !important;
}

.shop-page-section .item-shorting .nice-select{
  height: auto;
  line-height: 26px;
  border: none !important;
  font-size: 16px;
  font-weight: 500;
  
  color: #000;
  padding-left: 0px;
  padding-right: 35px;
}

.shop-page-section .item-shorting .nice-select:after{
  right: 0px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  top: 10px;
}

.shop-page-section .item-shorting .nice-select .list{
  min-width: 160px;
}

.shop-page-section .shop-block-one .inner-box{
  margin-bottom: 30px;
}

.shop-page-section .item-shorting .text p span{
  color: #000;
}

.shop-page-section .item-shorting{
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}


/** shop-details **/

.product-details-content .image-box{
  background: #fff;
}

.product-details-content .image-box img{
  width: 100%;
}

.product-details-content .image-box .preview-link a{
  background: #f7f7f7;
  color: #000;
}

.product-details-content .image-box .preview-link a:hover{
  color: #fff;
}

.product-details-content .product-details .rating li {
  color: #ffc92e;
}

.product-details-content .product-details .rating li a:hover{

}

.product-details-content .product-details .price{

}

.product-details-content .product-details .addto-cart-box .clearfix li a{
  color: #000;
  background: #fff;
}

.product-details-content .product-details .addto-cart-box .clearfix li a:hover{
  color: #fff;
}

.product-details-content .product-details .other-option .list li{
  color: #7a7b80;
}

.product-details-content .product-details .addto-cart-box .theme-btn{
  padding: 12px 30px;
}

.product-details-content .product-details .other-option .list li a{
  color: #848484;
}

.shop-details .product-discription .tab-btn-box .tab-btns li{
  cursor: pointer;
}

.shop-details .product-discription .tab-btn-box .tab-btns li.active-btn,
.shop-details .product-discription .tab-btn-box .tab-btns li:hover{
  color: #000;
}

.shop-details .product-discription .tab-btn-box .tab-btns li:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 2px;
  left: 0px;
  bottom: -27px;
  transition: all 500ms ease;
}

.shop-details .product-discription .tab-btn-box .tab-btns li.active-btn:before,
.shop-details .product-discription .tab-btn-box .tab-btns li:hover:before{
  width: 100%;
}


.product-details-content .product-details .addto-cart-box .item-quantity {
  position: relative;
  display: inline-block;
  max-width: 106px;
  height: 50px;
  width: 100%;
  float: left;
  padding: 0px 40px 0px 0px;
  margin-right: 10px;
  background: #fff;
  z-index: 1;
  border-radius: 0px;
}

.product-details-content .product-details .addto-cart-box input.quantity-spinner {
  line-height: 48px;
  height: 48px;
  width: 43px !important;
  padding: 0px !important;
  box-shadow: none !important;
  border: none;
  text-align: center;
  font-size: 16px;
  
  color: #101010;
  background: transparent;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  position: absolute;
  background: transparent;
  padding: 0px 0px;
  right: -17px;
  top: 4px;
  border-right: none;
  border-radius: 0px;
  z-index: 1;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
  position: absolute;
  background: transparent;
  padding: 0px 0px;
  right: -18px;
  top: 17px;
  border-left: none;
  margin-top: 0px;
  border-radius: 0px;
  z-index: 1;
}

.bootstrap-touchspin .glyphicon-chevron-up:before {
  content: "\f107";
  font-size: 18px;
  font-style: normal;
  color: #b3b3b3;
  font-family: 'Font Awesome 5 pro';
  font-weight: 400;
  transition: all 500ms ease;
}

.bootstrap-touchspin .glyphicon-chevron-down:before {
  content: "\f106";
  font-size: 18px;
  font-style: normal;
  color: #b3b3b3;
  font-weight: 400;
  font-family: 'Font Awesome 5 pro';
  transition: all 500ms ease;
}

.bootstrap-touchspin .glyphicon-chevron-up:hover:before,
.bootstrap-touchspin .glyphicon-chevron-down:hover:before{
  color: #101010;
}

.bootstrap-touchspin .input-group-btn-vertical{
  position: absolute;
  width: 100%;
}

.bootstrap-touchspin .input-group-btn-vertical i{
  top: 0px;
  left: 7px;
  font-size: inherit !important; 
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
  margin-top: 0px;
}

.shop-details .product-discription .customer-inner .rating li{
  color: #ffc92e;
}

.shop-details .product-discription .customer-inner .customer-review{
  border-bottom: 1px solid #e5e5e5;
}

.shop-details .product-discription .comment-form input,
.shop-details .product-discription .comment-form textarea{
  border: 1px solid #e6e6e6;
}

.shop-details .product-discription .comment-form textarea{
  height: 170px;
  resize: none;
}

.shop-details .product-discription .check-box label{
  color: #808080;
}

.cart-section .othre-content .update-btn button:hover{
  color: #fff !important;
}

.shop-details .product-discription .theme-btn{
  padding: 16px 30px;
}

.default-form input[type='text'],
.default-form input[type='email'],
.default-form input[type='tel'],
.default-form input[type='password'],
.default-form textarea{
  position: relative;
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #fff;
  font-size: 15px;
  color: #808080;
  padding: 15px 20px;
  border-radius: 0px;
  background: transparent;
  border: 1px solid #e6e6e6;
  transition: all 500ms ease;
}

.default-form input:focus,
.default-form textarea:focus{

}

.shop-details .product-discription .comment-form textarea {
  height: 170px;
  resize: none;
}

.shop-details .product-discription .tab-btn-box{
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 33px;
  border-bottom: 1px solid #e5e5e5;
}


/** cart-section **/


.cart-section .item-quantity {
  position: relative;
  display: inline-block;
  max-width: 100px;
  height: 50px;
  width: 100%;
  float: left;
  padding: 0px 40px 0px 0px;
  background: #fff;
  z-index: 1;
  border-radius: 0px;
}

.cart-section input.quantity-spinner {
  line-height: 48px;
  height: 48px;
  width: 43px !important;
  padding: 0px !important;
  box-shadow: none !important;
  border: none;
  text-align: center;
  font-size: 16px;
  
  color: #000;
  background: transparent;
}

.cart-section .table-outer {
  overflow-x: auto;
  position: relative;
  width: 100%;
}

.cart-section .cart-table {
  min-width: 1170px;
  width: 100%;
}

.cart-section .cart-table thead tr th {
  line-height: 24px;
  min-width: 110px;
  padding: 21px 0px 20px 0px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.cart-section .cart-table tbody tr{
  border-bottom: 1px solid #e6e6e6;
}

.cart-section .cart-table .cart-header{
  background: #fff;
}

.cart-section .cart-table tbody tr td.prod-column{
  padding: 30px 0px;
}

.cart-section .cart-table tbody tr .prod-column .column-box {
  min-height: 100px;
  position: relative;
  padding: 30px 0px 24px 250px;
}

.cart-section .cart-table tbody tr .prod-column .column-box .prod-thumb img {
  display: block;
  max-width: 100%;
}

.cart-section .cart-table tbody tr .prod-column .column-box .prod-thumb{
  position: absolute;
  left: 100px;
  top: 0px;
  width: 110px;
  height: 110px;
  background: #fff;
}

.cart-section .cart-table tbody tr .prod-column .column-box .title{
  padding-left: 20px;
}

.cart-section .cart-table tbody tr .prod-column .column-box .remove-btn{
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 54px;
  font-size: 14px;
  color: #000;
  font-weight: 900;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 500ms ease;
}

.cart-section .cart-table tbody tr .prod-column .column-box .remove-btn:hover{
  color: #fff;
}

.cart-section .cart-table tbody tr td.price {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  position: relative;
  padding: 30px 0px 30px 0px;
}

.cart-section .cart-table thead tr th:last-child{
  text-align: center;
}

.cart-section .cart-table tbody tr .sub-total {
  font-size: 15px;
  padding: 27px 0px 27px 0px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

.cart-section .cart-table tbody tr td.qty{
  position: relative;
}

.cart-section .cart-table .prod-title{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  color: #000;
  font-weight: 500;
}

.cart-section .othre-content{
  position: relative;
  display: block;
  padding: 30px 0px;
  margin-bottom: 65px;
}

.cart-section .othre-content .update-btn button{
  background: transparent;
  transition: all 500ms ease;
}

.cart-section .othre-content .coupon-box{
  position: relative;
  width: 530px;
  padding-right: 183px;
}

.cart-section .othre-content .coupon-box input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  max-width: 347px;
  font-size: 15px;
  height: 50px;
  color: #808080;
  font-size: 16px;
  background: #fff;
  padding: 10px 30px 10px 30px;
}

.cart-section .othre-content .coupon-box button{
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 12px 15px;
  width: 173px;
}

.cart-section .othre-content .coupon-box button i{
  position: relative;
  font-size: 20px;
  top: 2px;
  font-weight: 700;
  margin-left: 8px;
}

.cart-section .othre-content .coupon-box input:focus + button,
.cart-section .othre-content .coupon-box button:hover{
  color: #fff;
}

.cart-section .othre-content .update-btn button{
  color: #6e6e6e !important;
  padding: 12px 30px;
  font-size: 15px;
  
  background: #fff;
}

.cart-section .othre-content .update-btn button:hover{
  color: #fff !important;
}

.cart-section .othre-content .update-btn button i{
  position: relative;
  top: 2px;
  font-size: 20px;
  margin-left: 8px;
  font-weight: 700;
}

.cart-section .othre-content .update-btn button span:after{
  color: #fff;
}

.cart-section .othre-content .update-btn button:hover:before{
  background: #fff;
}

.cart-section .othre-content .update-btn button:hover:after {
    border-right: 2px solid #fff !important;
    border-top: 2px solid #fff !important;
}

.cart-section .cart-total .total-cart-box{
  position: relative;
}

.cart-section .cart-total .total-cart-box h3{
  margin-bottom: 23px;
}

.cart-section .cart-total .total-cart-box .list{
  border: 1px solid #e6e6e6;
}

.cart-section .cart-total .total-cart-box .list li{
  position: relative;
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  padding: 12px 30px;
  border-bottom: 1px solid #e6e6e6;
}

.cart-section .cart-total .total-cart-box .list li:last-child{
  border-bottom: none;
}

.cart-section .cart-total .total-cart-box .list li span{
  float: right;
  color: #848484;
  font-weight: 400;
}

.cart-section .cart-total .total-cart-box .list li:last-child span{
  font-weight: 700;
  color: #172746;
}

.cart-section .cart-total .total-cart-box .theme-btn{
  padding: 12px 35px;
  width: 100%;
}

.cart-section .cart-total .total-cart-box .list li:before{
  position: absolute;
  content: '';
  background: #e6e6e6;
  width: 1px;
  height: 100%;
  left: 165px;
  top: 0px;
}


/** checkout-section **/

.checkout-section .coupon-box{
  background: #fff;
}

.checkout-section .coupon-box a:hover{
  text-decoration: underline;
}

.checkout-section .upper-box .single-box:last-child{
  margin-bottom: 0px;
}

.checkout-section .upper-box .single-box a{
  
}

.checkout-section .customer a:hover,
.checkout-section .coupon a:hover{
  text-decoration: underline;
}

.checkout-section .billing-form .form-group{
  margin-bottom: 23px;
}

.checkout-section .billing-form .form-group:last-child{
  margin-bottom: 0px;
}

.checkout-section .billing-form .form-group input[type='text'],
.checkout-section .billing-form .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
  background: #fff;
  font-size: 15px;
  color: #848484;
  padding: 10px 15px;
  transition: all 500ms ease;
}

.checkout-section .billing-form .form-group label{
  color: #000;
}

.checkout-section .billing-form .form-group input:focus{

}

.checkout-section .billing-form .form-group .nice-select{
  border-radius: 0px;
  border: 1px solid #fff !important;
  width: 100%;
  font-size: 15px;
  color: #848484;
  background: #fff;
  height: 45px;
  line-height: 45px;
  font-weight: 400;
  padding: 0px 20px;
}

.checkout-section .billing-form .form-group .nice-select .list{
  width: 100%;
}

.checkout-section .billing-form .form-group input.address{
  margin-bottom: 10px;
}

.checkout-section .billing-form .form-group input:focus{
  
}

.checkout-section .billing-form .select-box .ui-state-default{
  width: 100% !important;
}

.checkout-section .billing-form .select-box .ui-selectmenu-button span.ui-icon:before{
  color: #848484;
}

.checkout-section .additional-info .note-book textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 133px;
  background: #fff;
  color: #6e6e6e;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  resize: none;
  transition: all 500ms ease;
}

.checkout-section .additional-info .note-book textarea:focus{
  
}

.checkout-section .order-info{
  background: #fff;
}

.checkout-section .order-info .order-list li{
  border-bottom: 1px solid #e6e6e6;
}

.checkout-section .order-info .order-list li:last-child{
  border-bottom: none;
}

.checkout-section .order-info .order-list li span.light{
  color: #848484;
}

.checkout-section .payment-info{
  background: #fff;
}

.checkout-section .payment-info .payment-inner .option-block{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.checkout-section .payment-info .check-box input:checked + label:before{
  background: transparent;
  border-color: #e5e5e5;
}

.checkout-section .payment-info .check-box label:after{
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 2px;
  left: 5px;
  top: 9px;
}

.checkout-section .payment-info .check-box{
  margin-bottom: 0px;
}

.checkout-section .payment-info .payment-inner .btn-box .theme-btn-two{
  padding: 16px 30px;
}

.checkout-section .payment-info .payment-inner{
  background: #fafafa;
}

.checkout-section .payment-info .payment-inner .option-block{
  border-bottom: 1px solid #e6e6e6;
}

.checkout-section .payment-info .payment-inner .option-block:last-child{
  border-bottom: none;
}

.checkout-section .payment-info .theme-btn{
  padding: 12px 35px;
}

.checkout-section .payment-info .theme-btn i{
  font-size: 20px;
  position: relative;
  top: 2px;
  margin-left: 8px;
  font-weight: 700;
}

.checkout-section .additional-info label{
  color: #000;
}

.checkout-section .payment-info .option-block .link a{
  color: #000;
}

/** check-box **/

.check-box input {
  display: none;
}

.check-box{
  margin-bottom: 9px;
}

.check-box:last-child{
  margin-bottom: 0px;
}

.check-box label {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  padding-left: 27px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
  transition: all 500ms ease;
}

.check-box input:checked + label{
  color: #1e2c36;
}

.check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 4px;
  width: 17px;
  height: 17px;
  border-style: solid;
  border-width: 1px;
  border-color: #dedede;
  border-radius: 2px;
}

.check-box label:after {
  position: absolute;
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  font-size: 9px;
  left: 0px;
  top: 5px;
  width: 17px;
  height: 17px;
  line-height: 17px;
  color: #fff;
  opacity: 0;
  font-weight: 400;
  text-align: center;
}

.check-box input:checked + label:after {
  opacity: 1;
}


/*** 

====================================================================
                        Blog-page
====================================================================

***/

.blog-grid{
  padding: 120px 0px 70px 0px;
}

.blog-grid .news-block-one .inner-box{
  box-shadow: none;
  margin-bottom: 42px;
}

.blog-grid .news-block-one .inner-box .lower-content {
  padding: 29px 30px 0px 0px;
}

.sidebar-page-container{
  position: relative;
}

.sidebar-page-container .news-block-one .inner-box .image-box:before{
  display: none;
}

.sidebar-page-container .news-block-one .inner-box{
  box-shadow: none;
  margin-bottom: 50px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content {
  padding: 22px 30px 43px 0px;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar-page-container .news-block-one .inner-box .lower-content h3{
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 12px;
}

.news-block-one .inner-box .image-box .video-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.news-block-one .inner-box .image-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 96px;
  background: #fff;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
}

.news-block-one .inner-box .image-box .video-btn a:before,
.news-block-one .inner-box .image-box .video-btn a:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.news-block-one .inner-box .image-box .video-btn a:after{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.news-block-one .inner-box .owl-nav{
  position: absolute;
  left: 0px;
  top: 45%;
  transform: translateY(-50%);
  width: 100%;
}

.news-block-one .inner-box .owl-nav .owl-prev{
  position: absolute;
  left: 30px;
}

.news-block-one .inner-box .owl-nav .owl-next{
  position: absolute;
  right: 30px;
}

.news-block-one .inner-box .quote-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 33px 75px 29px 40px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 11px;
}

.news-block-one .inner-box .quote-box .icon-box{
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fdf1e9;
}

.news-block-one .inner-box .quote-box p{
  font-size: 18px;
  line-height: 28px;
  color: #000;
  margin-bottom: 8px;
}

.news-block-one .inner-box .quote-box h6{
  font-size: 16px;
  line-height: 24px;
  
}

.sidebar-page-container .pagination li a{
  border: 1px solid #e5e5e5;
}

.sidebar-page-container .pagination li a.current,
.sidebar-page-container .pagination li a:hover{

}

.blog-sidebar{
  position: relative;
  display: block;
}

.blog-sidebar .sidebar-widget{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  padding: 33px 40px 40px 40px;
  margin-bottom: 50px;
}

.blog-sidebar .sidebar-widget:last-child{
  margin-bottom: 0px;
}

.blog-sidebar .widget-title{
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.blog-sidebar .widget-title h4{
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.blog-sidebar .search-widget .form-group{
  position: relative;
  margin: 0px;
}

.blog-sidebar .search-widget .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #808080;
  padding: 10px 20px 10px 60px;
  transition: all 500ms ease;
}

.blog-sidebar .search-widget .form-group button {
  position: absolute;
  left: 30px;
  top: 19px;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: #808080;
  transition: all 500ms ease;
}

.blog-sidebar .search-widget .form-group input:focus{

}

.blog-sidebar .search-widget .form-group input:focus + button,
.blog-sidebar .search-widget .form-group button:hover{

}

.blog-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.blog-sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}

.blog-sidebar .category-widget .category-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  padding-left: 18px;
}

.blog-sidebar .category-widget .category-list li a i{
  position: absolute;
  left: 0px;
  top: 7px;
  font-size: 12px;
  font-weight: 700;
}

.blog-sidebar .category-widget .category-list li a:hover{

}

.blog-sidebar .category-widget .widget-title{
  margin-bottom: 15px;
}

.blog-sidebar .category-widget{
  padding-bottom: 32px;
}

.blog-sidebar .post-widget .post{
  position: relative;
  display: block;
  padding: 0px 0px 23px 100px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 105px;
}

.blog-sidebar .post-widget .post:last-child{
  border-bottom: none;
  margin-bottom: 0px;
}

.blog-sidebar .post-widget .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 4px;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.blog-sidebar .post-widget .post .post-thumb img{
  width: 100%;
  transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb img{
  opacity: 0.2;
}

.blog-sidebar .post-widget .post h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 9px;
}

.blog-sidebar .post-widget .post h5 a{
  display: inline-block;
  color: #000;
}

.blog-sidebar .post-widget .post h5 a:hover{

}

.blog-sidebar .post-widget .post .post-date{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #6e6e6e;
  padding-left: 25px;
}

.blog-sidebar .post-widget .post .post-date i{
  position: absolute;
  left: 0px;
  top: 4px;
}

.blog-sidebar .post-widget .widget-title{
  margin-bottom: 18px;
}

.blog-sidebar .post-widget{
  padding-bottom: 20px;
}

.blog-sidebar .tags-widget .tags-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog-sidebar .tags-widget .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  border: 1px solid #e5e5e5;
  padding: 7px 13px;
}

.blog-sidebar .tags-widget .tags-list li a:hover{
  color: #fff;
}

.blog-sidebar .tags-widget{
  padding-bottom: 30px;
}

.blog-details-content{
  position: relative;
  display: block;
}

.blog-details-content .news-block-one .inner-box .lower-content{
  padding-bottom: 0px;
  border-bottom: none;
}

.blog-details-content .news-block-one .inner-box .lower-content p{
  margin-bottom: 26px;
}

.blog-details-content .news-block-one .inner-box{
  margin-bottom: 64px;
}

.blog-details-content .content-one .quote-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 33px 75px 29px 40px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 63px;
}

.blog-details-content .content-one .quote-box .icon-box{
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fdf1e9;
}

.blog-details-content .content-one .quote-box p{
  font-size: 18px;
  line-height: 28px;
  color: #000;
  margin-bottom: 8px;
}

.blog-details-content .content-one .quote-box h6{
  font-size: 16px;
  line-height: 24px;
  
}

.blog-details-content .content-one h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 16px;
}

.blog-details-content .content-one{
  margin-bottom: 34px;
}

.blog-details-content .content-two .text h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 14px;
}

.blog-details-content .content-two .text p{
  margin-bottom: 16px;
}

.blog-details-content .content-two .image-box{
  position: relative;
  display: block;
}

.blog-details-content .content-two .image-box img{
  width: 100%;
}

.blog-details-content .content-two{
  margin-bottom: 63px;
}

.blog-details-content .content-three h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  
  margin-bottom: 16px;
  margin-right: 7px;
}

.blog-details-content .content-three{
  margin-bottom: 62px;
}

.blog-details-content .post-tags .tags-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.blog-details-content .post-tags .tags-list li:last-child{
  margin: 0px !important;
}

.blog-details-content .post-tags .tags-list li h6{
  position: relative;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
}

.blog-details-content .post-tags .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  border: 1px solid #e5e5e5;
  padding: 7px 13px;
}

.blog-details-content .post-tags .tags-list li a:hover{
  color: #fff;
}

.blog-details-content .post-tags{
  margin-bottom: 70px;
}

.blog-details-content .author-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  padding: 45px 40px 42px 170px;
  margin-bottom: 60px;
}

.blog-details-content .author-box .author-thumb{
  position: absolute;
  left: 40px;
  top: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.blog-details-content .author-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.blog-details-content .author-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  
  margin-bottom: 11px;
}

.blog-details-content .comments-form-area .group-title{
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.blog-details-content .comments-form-area .group-title h3{
  font-size: 24px;
  line-height: 32px;
  
}

.blog-details-content .comments-form-area .form-group{
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.blog-details-content .comments-form-area .form-group input[type="text"],
.blog-details-content .comments-form-area .form-group input[type="email"],
.blog-details-content .comments-form-area .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 42px;
  font-size: 16px;
  color: #6e6e6e;
  line-height: 42px;
  border-bottom: 1px solid #e5e5e5;
  transition: all 500ms ease;
}

.blog-details-content .comments-form-area .form-group textarea{
  height: 120px;
  resize: none;
}

.blog-details-content .check-box label{
  font-size: 16px;
  color: #6e6e6e;
}

.blog-details-content .comments-form-area .form-group input:focus,
.blog-details-content .comments-form-area .form-group textarea:focus{

}

.blog-details-content .comments-form-area .form-group .theme-btn{
  padding: 12px 25px;
}

.blog-details-content .comments-form-area .form-group .theme-btn i{
  position: relative;
  font-size: 22px;
  margin-left: 8px;
  top: 2px;
}

.blog-details-content .news-block-one .inner-box .image-box img{
  opacity: 1 !important;
  transform: scale(1) !important;
}


/** google-map-section **/

.google-map-section{
  position: relative;
}

.google-map-section #contact-google-map{
  position: relative;
  width: 100%;
  height: 500px;
}


/** contact-style-three **/

.contact-style-three{
  position: relative;
  padding: 115px 0px 120px 0px;
}

.contact-style-three .contact-info{
  position: relative;
  display: block;
}

.contact-style-three .contact-info h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  
  margin-bottom: 23px;
}

.contact-style-three .contact-info p{
  color: #000;
  margin-bottom: 15px;
}

.contact-style-three .contact-info .info-list li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 14px;
}

.contact-style-three .contact-info .info-list li:last-child{
  margin-bottom: 0px;
}

.contact-style-three .contact-info .info-list li a{
  display: inline-block;
  color: #787878;
}

.contact-style-three .contact-info .info-list li:last-child a{
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.contact-style-three .contact-info .info-list li a:hover{

}

.contact-style-three .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.contact-style-three .form-inner .form-group input[type="text"],
.contact-style-three .form-inner .form-group input[type="email"],
.contact-style-three .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 42px;
  font-size: 16px;
  color: #6e6e6e;
  line-height: 42px;
  border-bottom: 1px solid #e5e5e5;
  transition: all 500ms ease;
}

.contact-style-three .form-inner .form-group textarea{
  height: 120px;
  resize: none;
}

.contact-style-three .form-inner .form-group input:focus,
.contact-style-three .form-inner .form-group textarea:focus{

}

.contact-style-three .form-inner .form-group .check-box label{
  font-size: 16px;
  color: #6e6e6e;
}

.contact-style-three .form-inner .form-group .theme-btn{
  padding: 12px 25px;
}

.contact-style-three .form-inner .form-group .theme-btn i{
  position: relative;
  font-size: 22px;
  margin-left: 8px;
  top: 2px;
}



/*****************************/







/* Top Left*/

.top-left {
    position: relative;
    float: right;
}

.top-left .info {
    position: relative;
    float: right;
}

.top-left .info li {
    position: relative;
    float: left;
    font-size: 14px;
    line-height: 24px;
    color: #111;
    font-weight: 400;
    padding: 0px 0px;
    margin-left: 39px;
}

.top-left .info li:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -20px;
    height: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.30);
}

.top-left .info li:first-child:before {
    display: none;
}

.top-left .info li a {
    position: relative;
    display: inline-block;
    color: #111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.top-left .info li a .icon {
    position: relative;
    padding-right: 5px;
}

.top-left .info .search-btn {
    position: relative;
}

.top-left .info .search-toggler {
    position: relative;
    padding: 0;
    background: none;
    margin: 0;
    line-height: 24px;
    color: #111;
    font-size: 14px;
    cursor: pointer;
}

.top-left .top-right {
    float: right;
    background: linear-gradient( to bottom, #fbfbfb, #f1f1f1);
    border-left: 1px solid #ebebeb;
    background: linear-gradient( to bottom, #fbfbfb, #f1f1f1);
    border-right: 1px solid #ebebeb;
    line-height: 40px;
}

.header-top .top-right .select-box a i {
    position: absolute;
    right: 5px;
}

.header-top .top-right .select-box a {
    color: #111;
    display: block;
    padding: 0 25px 0 10px;
    position: relative;
}

.top-left .social-links {
    position: relative;
    margin-bottom: 0;
}

.top-left .social-links li {
    position: relative;
    float: left;
    color: #111;
    line-height: 24px;
    width: 40px;
    text-align: center;
    height: 40px;
    overflow: hidden;
}

.top-left .social-links li a > div {
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 40px;
    transition: all ease-in-out 0.4s;
    top: 0;
    background: #f1f1f1;
    background: linear-gradient( to bottom, #fbfbfb, #f1f1f1);
}

.top-left .social-links li:hover a > div {
    top: -40px;
}

.main-ico {
    border-left: 1px solid #ebebeb;
}

.top-left .social-links li:last-child .main-ico {
    border-right: 1px solid #ebebeb;
}

.hover-ico span {
    display: block;
    line-height: 40px;
    color: #fff;
}

.hover-ico .facebook {
    background: #3b5998
}

.hover-ico .twitter {
    background: #55acee
}

.hover-ico .youtube {
    background: #ff0000
}

.hover-ico .linkedin {
    background: #007bb5
}

.hover-ico .instagram {
    background: #e95950
}

.top-left .social-links li a {
    position: relative;
    display: block;
    color: #383838;
    font-size: 13px;
    line-height: 24px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}






.iton {
position: relative;
padding-left: 60px;
}


.iton h5 {
color:#fff;
font-size: 17px;
}

.iton p {
color:#fff;
}

.iton .icon-box {
position: absolute;
left: 0;
font-size: 30px;
line-height: 50px;}


.header-upper ul.social-info li {
float: left;
width: 45px;
height: 45px;
background: #eee;
border-radius: 50%;
margin-left: 4px;border-radius: 0 50% 50%;
}


.header-upper ul.social-info li a {
  display: block;
  color: #000;
  font-size: 15px;
  text-align: center;
  padding-right: 0;
  line-height: 45px;
}
.header-upper ul.social-info li a:hover {
  color: #1e7c81;
}



/*** 

====================================================================
	Main Slider Banner
====================================================================

***/

.main-slider{
	position:relative;
	background-size:cover;
}

.main-slider.style-two{

}

.main-slider .slider-outer .owl-item{
	position:relative;
}

/*

.main-slider .owl-item:before{
    position: absolute;
    content: '';
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: inline-block;
    background: #0003;
}
*/
.main-slider .auto-container{
	position:relative;
}

.main-slider .slide{
	position:relative;
	background-repeat:no-repeat;
	background-position:right top;
background-size: 100% 100%;
height: 550px;

display: grid;
text-align: center;
align-items: center;
width: 100%;
overflow: hidden;
}



.main-slider .owl-item img {
transition: all ease-in-out 3s;

height: 100%;

width: 100%;
}


/*
.main-slider .owl-item.active img {
transform:scale(1);
 }*/




.decrepation-sl {
position: absolute;
width: 100%;

}






.main-slider .slide:after {

	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:100%;
	background-color:#0f0b0b99;
background: linear-gradient( to right , #000000b3 , #06163299);
background: linear-gradient( to right , #00000080 , #0003);
}


.main-slider .slide .container {
	position:relative;
z-index:10;
}

.main-slider .slide.style-two{
	background-size:cover;
	background-position:center bottom;
}

.main-slider .slide .content{
	position:relative;

}

.main-slider .slide .content.alternate{
padding: 45px;
width: 52%;
margin: 0 auto;
display: block;float:left;
position: relative;margin-bottom: 0;text-align: left;
padding-left: 0;
}


.fl-right {
float: right;
}


.fl-left {
float: left;
}

/*

.main-slider .slide .content.alternate:after {
position: absolute;
content: '';
top: 30px;
left: 30px;
width: 80px;
height: 2px;
background-color: #7b0c0c;
}
*/

.main-slider.style-three .slide .content{
	padding:270px 0px 170px;
}

.main-slider.style-four .content{
	max-width:610px;
	padding:140px 50px 140px;
	background-color:rgba(0,0,0,0.85);
}

.main-slider.style-four .content .title{
	color:#f91101;
	font-weight:600;
}

.main-slider.style-four .content h1:before{
	position:absolute;
	content:'';
	left:-50px;
	top:0px;
	width:5px;
	height:100%;
	background-color:#f71101;
}

.main-slider.style-four .content h1{
	color:#ffffff;
	font-size:60px;
	font-weight:700;
	line-height:1.2em;
	padding-bottom:0px;
	margin-bottom:15px;
}

.main-slider.style-four .content h1:after{
	display:none;
}

.main-slider.style-four .content .text{
	color:#ffffff;
}

.main-slider .title{
	position:relative;
	color:#fff;
	opacity: 0;
	font-size:15px;
	letter-spacing:1px;
	margin-bottom:15px;
	text-transform:capitalize;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.main-slider .active .title{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 600ms;
}

.main-slider h1{
	position:relative;
	color:#fff;
	opacity: 0;
	line-height:1.3em;
	padding-bottom:20px;
	margin-bottom:30px;
	text-transform:capitalize;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
font-size:26px;
}

.main-slider h1:after{
	position:absolute;
	left:0px;
	bottom:0px;
	content:'';
	width:10px;
	height:4px;
	background-color:#fff;
transition: all ease-in-out 1s;
transition-delay: 0.5s;
}


.main-slider .active h1:after{
	width:100px;

 }

.main-slider h1 span{
	color:#ed8800;text-transform: uppercase;font-weight: bold;margin-bottom: 20px;


}

.main-slider h1 span.alternate{
	display:block;
	background: linear-gradient(to right, #f44c01 0%, #ff7a01 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.main-slider h1.alternate{
padding-bottom: 0px;
margin-bottom: 0;
font-size: 24px;
text-transform: capitalize;
font-weight: normal;
}

.main-slider h1.alternate,
.main-slider h1.alternate span{
	color:#ffffff;
}

.main-slider h1.alternate:after{
	display:none;
}

.main-slider h1.style-two{
	color:#ffffff;
	font-size:60px;
	font-weight:700;
	padding-bottom:0px;

}

.main-slider h1.style-two span{
	color:#ad8e63;
}

.main-slider h1.style-two:after{
	display:none;
}

.main-slider .active h1{
	opacity: 1;

	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 500ms;
}

.main-slider .text{
	position:relative;
	color:#1a1e66;
	font-size:18px;
	opacity:0;
	line-height: 1.6em;
	font-weight:400;

	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;

	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
font-size: 20px;
line-height: 25px;
font-weight: 400;
}

.main-slider .text.alternate{
	color:#ffffff;
}


.main-slider .active .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 500ms;
}




/*
.main-slider .active h1 {-webkit-animation: 1s .3s bounceInLeft both;}
.main-slider .active p {-webkit-animation: 1s .3s fadeInUp both;animation: 1s .3s fadeInUp both;}

*/






.main-slider .btn-box{
	opacity:0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.main-slider .active .btn-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 2000ms;
}

.main-slider .link-box{
	position:relative;
	opacity:0;
	z-index:10;
	margin-right:30px;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.main-slider .link-box .theme-btn{
	margin-right:20px;
	margin-bottom:10px;
}

.main-slider .active .link-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 2500ms;
}

.main-slider .business-image-box{
	position:absolute;
	right:0px;
	top:0px;
	z-index:1;
	right:-250px;
}

.main-slider .owl-dots {
position: absolute;
left: 50px;
bottom: 20px;

    text-align: center;
}

.main-slider .owl-dots .owl-dot{
	position:relative;
width: 30px;
height: 2px;
	margin:0px 4px;
	overflow: hidden;
	display:inline-block;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;background: #ffffff80;
}


/*
.main-slider .owl-dots .owl-dot:before{
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 50%;
	background-color: #fff;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}*/

.main-slider .owl-dots .owl-dot.active,
.main-slider .owl-dots .owl-dot:hover{
	background: #fff;
}

.main-slider .owl-nav{
	position:absolute;
	left:0px;
	top:50%;
	z-index:1;
	width:100%;
	margin-top:-25px;
}

.main-slider .owl-nav .owl-prev{
position: absolute;
width: 50px;
height: 50px;
left: 0;
color: #fff;
font-size: 24px;
text-align: center;
line-height: 48px;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
border-radius: 0 !important;
background: linear-gradient(120deg,#fff6 ,#2a2a2ab3 ) !important;
border-left: 0;
font-size: 54px !important;
background: none !important;
opacity:0;
}

.main-slider .owl-nav .owl-next{
position: absolute;
width: 50px;
height: 50px;
right: 0;
color: #fff;
font-size: 24px;
text-align: center;
line-height: 48px;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
border-radius: 0 !important;
background: linear-gradient(120deg,#fff6 ,#2a2a2ab3 ) !important;
border-right: 0;
font-size: 54px !important;
background: none !important;
opacity:0;
}

.main-slider:hover .owl-nav > div {
opacity:1;
}

.main-slider.style-three .owl-nav .owl-prev,
.main-slider.style-three .owl-nav .owl-next{
	border-color:#7e6a46;
	color:#7e6a46;
}

.main-slider.style-three .owl-nav .owl-prev:hover,
.main-slider.style-three .owl-nav .owl-next:hover{
	border-color:#7e6a46;
	background-color:#7e6a46;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover{
	color:#298ece;
	border-color:#ed8800;
	background-color:#ed8800;
opacity:1;
}



.main-slider:hover .owl-nav .owl-prev,
.main-slider:hover .owl-nav .owl-next{
opacity:1;
}



.main-slider.style-four .owl-nav .owl-prev,
.main-slider.style-four .owl-nav .owl-next{
	border:none;
	color:#ffffff;
	border-radius:50%;
	background-color:rgba(0,0,0,0.60);
}




.y-color {
color: #298ece !important;
width: 100%;
display: inline-block;
font-size: 34px;}


.top-right {
display: inline-flex;
margin-right: 20px;
padding: 14px 10px;
border-right: 1px solid #fefefe1a;
}

.social-icon-one li a {
color:#fff;
}

.social-icon-one li {
float: none;
margin: 0 10px;
display: inline-block;
}


/************************************************/





.small-title-box .bar {
    height: 4px;
    width: 85px;
background: #68bc00;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin: auto
}

.small-title-box .bar::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 10px;
    background: #fff;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG
}


@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(85px)
    }
}

@keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(85px);
        transform: translateX(85px)
    }
}



/*** 

====================================================================
	Projects Section
====================================================================

***/

.projects-section{
	position:relative;
	padding:50px 0px;
}

.projects-section .sec-title .text{
	position:relative;
	color:#848484;
	font-size:18px;
	line-height:1.7em;
	font-weight:400;
}

.projects-section .sec-title .view_all{
	position: relative;
    color: #67bb00;
    font-weight: 600;
    font-size: 14px;
	float:right;
    padding-bottom: 2px;
    text-transform: uppercase;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    border-bottom: 1px solid #67bb00;
}

.projects-section .sec-title .view_all .icon{
	position:relative;
	margin-left:5px;
}

.projects-section .sec-title .view_all:hover{
	color:#020e28;
}

.projects-section .project-block{
	position:relative;
	padding:5px;
}

.project-block .inner-box{
	position:relative;
	overflow:hidden;border-radius: 5px;
}

.project-block .inner-box .image{
	position:relative;
}

.project-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
height: 240px;
object-fit: cover;
}

.project-block .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.project-block .inner-box .image .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
background: linear-gradient(to top, #000000 0%, transparent 50%);
background: linear-gradient(to top, #000 0%, #1b35624d 50%);
background: linear-gradient(to top, #05051de6 0%, #1b35624d 50%);
background: linear-gradient(to top, #05051de6 0%, #0505054d 50%);
}

.project-block .inner-box:hover .image .overlay-box:before{
	opacity:1;
}

.project-block .inner-box .image .overlay-box .content{
	position:absolute;
	content:'';
	left:0px;
	bottom:-38px;
	max-width:390px;
	width:100%;
	padding:15px;
	transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.project-block .inner-box .image .overlay-box .content h3{
	position:relative;
	font-weight:500;
	font-size:17px;text-transform: capitalize;
}

.project-block .inner-box .image .overlay-box .content h3 a{
	position:relative;
	color:#020e28;
	transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;color: #fff;
}

.project-block .inner-box:hover .image .overlay-box .content h3 a{
	color:#ffffff;
}

.project-block .inner-box .image .overlay-box .content .text{
	position:relative;
	color:#ffffff;
	font-size:14px;
	margin-top:10px;
	transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.project-block .inner-box .image .overlay-box .content .text .icon{
	margin-left:5px;
}

.project-block .inner-box:hover .image .overlay-box .content{
	background-color:#1e7c81;
	bottom:0px;
}

.project-block .inner-box:hover .image .overlay-box .content .text{
	margin-top:0px;
}






/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position:relative;
	background-color:#020e28;
}

.main-footer .widgets-section{
	position:relative;
	padding:60px 0px 20px;
}

.main-footer .footer-widget{
	position:relative;
	margin-bottom:30px;
}

.main-footer .footer-title{
	position:relative;
	margin-bottom:25px;
}

.main-footer .footer-title h2{
	position:relative;
	font-size:20px;
	font-weight:500;
	color:#ffffff;
	padding-bottom:18px;
	text-transform:capitalize;
}

.main-footer .footer-title h2:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:35px;
	height:4px;
	background-color:#67bb00;
}

.main-footer .logo-widget{
	position:relative;
margin-bottom: 0;
}




.main-footer .logo-widget .widget-content{
	position:relative;
}

.main-footer .logo-widget .logo{
	position:relative;
	margin-bottom:25px;
}

.main-footer .logo-widget .logo img {
width:100px;
}

.main-footer .logo-widget .widget-content .text{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:400;
	margin-bottom:12px;
}

.main-footer .logo-widget .widget-content .list{
	position:relative;
	margin-bottom:20px;
}

.main-footer .logo-widget .widget-content > .list > li{
	position:relative;
	color:#c4c4c4;
	font-size:16px;
	padding-right:12px;
	margin-right:12px;
	line-height:1.2em;
	display:inline-block;
	border-right:1px solid #414a5e;
}

.main-footer .logo-widget .widget-content > .list > li:last-child{
	border-right:0px;
	margin-right:0px;
	padding-right:0px;
}

.main-footer .logo-widget .widget-content .timing{
	position:relative;
	color:#ffffff;
	font-size:16px;
	line-height:1.8em;
	padding-bottom:28px;
	margin-bottom:25px;
	border-bottom:1px solid rgba(255,255,255,0.10);
}

.main-footer .logo-widget .widget-content .timing span{
	font-weight:500;
	display:block;
}

.main-footer .logo-widget .widget-content .social-icon-one li{
margin: 0;
margin-right: 2px;
width: 40px;
height: 40px;
text-align: center;
background: #1e2b47;
line-height: 40px;
border-radius: 0 50% 50%;
}

.main-footer .links{
	position:relative;
}

.main-footer .links li{
	position:relative;
	margin-bottom:16px;
width: 50%;
float: left;
text-transform: capitalize;
}

.main-footer .links li a{
	position:relative;
	color:#c4c4c4;
	font-size:16px;
	padding-bottom:5px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-footer .links li a:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:0;
	height:2px;
	opacity:0;
	background-color:#67bb00;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-footer .links li a:hover::after{
	opacity:1;width:20px;
}

.main-footer .links li a:hover{
	color:#ffffff;
}

.main-footer .footer-bottom{
	position:relative;
	background-color:#04133233;
background-color: #eaeaea1a;
}

.main-footer .footer-bottom.style-two{
	padding-top:0px;
}

.main-footer .footer-bottom.style-two .copyright{
	border-top:0px;
	margin-top:10px;
}

.main-footer .footer-bottom .title-column{
	position:relative;
}

.main-footer .footer-bottom .title-column .text{
position: relative;
color: #ffffff;
font-size: 15px;
font-weight: 500;
margin-bottom: 10px;
text-transform: capitalize;
}

.main-footer .footer-bottom .title-column .text .icon{
position: absolute;
left: 0px;
top: 0;
color: #67bb00;
font-size: 20px;
}




.main-footer .footer-bottom .subscribe-form{
	margin-bottom:0;
}

.main-footer .footer-bottom .subscribe-form .form-group{
	position:relative;
	display:block;
	margin-bottom:0;
}

.main-footer .footer-bottom .subscribe-form .form-group input[type="text"],
.main-footer .footer-bottom .subscribe-form .form-group input[type="email"]{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:10px 0px;
	height:55px;
	font-size:14px;
	color:#ffffff;
	background:none;
	font-weight:400;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
background: #ffffff1a;
padding: 15px;
line-height: 40px;
}

.main-footer .footer-bottom .subscribe-form .form-group button{
	position:absolute;
	right:0px;
	top:0;
	font-size:14px;
	color:#67bb00;
	background:none;
	letter-spacing:1px;
	text-transform:uppercase;
	height: 55px;
padding: 0 10px;
border-left: 1px solid #fff3;
border-radius: 0;
}

.main-footer .footer-bottom .copyright{
	position:relative;
	text-align:center;
	color:#ffffff;
	padding:8px 0px;font-size: 14px;
}



.list-style-two{
	position:relative;
}

.list-style-two li{
	position:relative;
	padding-left:50px;
	color:#c4c4c4;
	font-size:16px;
	margin-bottom:10px;
}

.list-style-two li .icon{
	position:absolute;
	left:0px;
	top:7px;
	line-height:1em;
	font-size:30px;
	font-weight:300;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
color: #fff;
}

.list-style-two li a{
	position:relative;
	font-weight:500;
	display:block;
	color:#ffffff;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.list-style-two li:hover a{
	color:#67bb00;
	text-decoration:underline;
}

.list-style-two li:hover .icon{
	color:#67bb00;
}


.main-footer .footer-bottom.toptop {
padding:25px 0;background: none;
}



.main-footer .toptop .footer-title {
margin-bottom:10px;
}




/***

====================================================================
        Innovation Section
====================================================================

***/

.innovation-section {
    position: relative;
    padding: 55px 0;
}

.innovation-section .content-column {
    position: relative;
}

.innovation-section .content-column .inner-column {
    position: relative;
    padding-top: 95px;
}

.innovation-section .content-column .bold-text {
    position: relative;
    color: #222222;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 700;
    margin-bottom: 20px;
}

.innovation-section .content-column .text {
    position: relative;
    color: #555555;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 400;
    margin-bottom: 45px;
}

.innovation-section .content-column .inner-column .counter-box {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-right: -80px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.15);
}

.innovation-section .content-column .inner-column .fact-counter .column {
    padding: 0px;
    float: left;
}

.innovation-section .content-column .inner-column .fact-counter .column:last-child .inner {
    border-right: none;
}


/* Fact Counter */

.fact-counter {
    position: relative;
}

.fact-counter .column {
    position: relative;
}

.fact-counter .column .inner {
    position: relative;
    padding: 45px 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    border-right: 1px solid #dddddd;
}

.fact-counter .count-outer {
    position: relative;
    margin: 0px 0px;
    font-weight: 300;
    color: #df6512;
    font-size: 40px;
}

.fact-counter .count-outer .count-text {
    position: relative;
    font-weight: 300;
    color: #df6512;
    font-size: 40px;
    display: inline-block;
}

.fact-counter .column .counter-title {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    display: block;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 0px;
    margin-bottom: 0px;
}

.innovation-section .images-column {
    position: relative;
}

.innovation-section .images-column .inner-column {
    position: relative;
}

.innovation-section .images-column .image {
    position: relative;
}

.innovation-section .images-column .image img {
    position: relative;
    width: 100%;
    display: block;
}

.services-section {
    position: relative;
    padding-bottom: 70px;
}







/*** 
=============================================
    About Style2 Area Css
=============================================
***/
.about-style2-area{
    position: relative;
    display: block;
    background: #ffffff;
}


.about-style2_image_box {
    position: relative;
    display: block;
    max-width: 535px;
    width: 100%;
    z-index: 11;
}
.about-style2_image_box .inner{
    position: relative;
    display: block;
    overflow: hidden;
} 
.about-style2_image_box .inner img{
    width: 100%;
    transition: all 3500ms ease;    
}

.about-style2_image_box .experience-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    right: 0;
    bottom: 0;
    width: 300px;
    box-shadow: 0px 0px 13.5px 1.5px rgba(0, 0, 0, 0.05);
    padding: 15px 30px 15px;
    padding-right: 0px;
}

.about-style2_image_box .experience-box .left{
    position: relative;
    display: block;
}
.about-style2_image_box .experience-box .left .counting {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.about-style2_image_box .experience-box .left .counting span {
    position: relative;
    display: inline-block;
    font-size: 48px;
    line-height: 42px;
    font-weight: 800;
    color: #1e7c81;
}
.about-style2_image_box .experience-box .left .counting .icon{
    position: relative;
    display: block;
    padding-left: 3px;
}
.about-style2_image_box .experience-box .left .counting .icon i {
    font-size: 20px;
    font-weight: 700;
}
.about-style2_image_box .experience-box .left p {
    color: #222222;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin: 0;
}
.about-style2_image_box .experience-box .right{
    position: relative;
    display: block;
}
.about-style2_image_box .experience-box .right span::before {
    color: #cddfec;
    font-size: 156px;
}


.about-style2-area {
padding: 50px 0;
}

.about-style2_text_box{
    position: relative;;
    display: block;
}
.about-style2_text_box .sec-title {
    padding-bottom: 15px;
}
.about-style2_text_box .inner-content{
    position: relative;
    display: block;
}
.about-style2_text_box .inner-content .top_text {
    position: relative;
    display: block;
    margin-bottom: 24px;
}
.about-style2_text_box .inner-content .text {
    position: relative;
    display: block;
    margin-bottom: 20px;
}
.about-style2_text_box .inner-content .text p{
margin-bottom: 20px;
}
.about-style2_text_box .inner-content .top_text p{
    color: #222222;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin: 0;

}
.about-style2_text_box .inner-content ul {
    position: relative;
    display: block;
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-top: 25px;
}
.about-style2_text_box .inner-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    border-right: 1px solid #eee;
    padding-right: 25px;
    margin-right: 25px;
}
.about-style2_text_box .inner-content ul li:last-child{
    border: none;
    padding-right: 0px;
    margin-right: 0px;
}
.about-style2_text_box .inner-content ul li .icon{
    position: relative;
    display: block;
}
.about-style2_text_box .inner-content ul li .icon .inner{
    position: relative;
    display: block;
}
.about-style2_text_box .inner-content ul li .icon .inner span::before {
    font-size: 55px;
    padding-right: 15px;
}
.about-style2_text_box .inner-content ul li .title{
    position: relative;
    display: block;
}
.about-style2_text_box .inner-content ul li .title h3 {
    font-size: 16px;
    line-height: 26px;
}





.our-experience-years {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 40px 10px;
  background-color: #fff;
  text-align: center;
}

.our-experience-years .year-outline {
  background-image: url("../images/outline.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.our-experience-years .year-outline h2 {
  font-size: 115px;
  margin-bottom: 0;
  line-height: 1;
}

.our-experience-years p {
  color: #1E7C81;
  font-weight: 700;
}

.our-experience-years p span {
  color: #2a2b30;
}






/****************** New animation for contacts fixed icons *************/


.all-ioc {
position: fixed;
z-index: 9;
left: -7px;
bottom: -20px;
width: 60px;
height: 60px;
display: block;
}

.show-icons {
position: absolute;
bottom: 45px;
left: 30px;
width: 60px;
height: 60px;
color: #ffffff;
font-size: 33px;
text-transform: uppercase;
line-height: 60px;
text-align: center;
z-index: 999;
cursor: pointer;
border-radius: 3px;
-webkit-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
border-radius: 50%;/*
background: -webkit-linear-gradient(#0e2f35, #67bb00, #0e2f35);*/
background: #67bb00;



	
}


.show-icons .ico-img {
display: block;
width: 100% !important;
height: 100% !important;
z-index: 6;
background-size: 80%;
background-image: url("../images/button.png");
background-repeat: no-repeat;
background-position: 50%;
background-color: #67bb00;
border-radius: 50%;
}

.show-icons:hover {
	color:#0e2f35;
background: -webkit-linear-gradient(#fbfbfb, #fff);

}


.sonar-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: #414141;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}


.sonar-wave {
  animation: amo-button-wave infinite 2.6s 0s linear;

}


@keyframes amo-button-wave {
  0% {
      transform: scale(1, 1);
      opacity: 0.45
  }
  40% {
      opacity: 0.45
  }
  100% {
      transform: scale(1.35, 1.35);
      opacity: 0
  }
}








.sonar-wave2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: #414141;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}



.sonar-wave2 {
  animation: amo-button-wave2 infinite 2.6s 0s linear;
}




.sonar-wave2 {
animation-delay: 0.8s;
}




@keyframes amo-button-wave2 {
  0% {
      transform: scale(1, 1);
      opacity: 0.45
  }
  40% {
      opacity: 0.45
  }
  100% {
      transform: scale(1.35, 1.35);
      opacity: 0
  }
}





.whats-icon{
position: absolute;
bottom: 50px;
left: 34px;
width: 50px;
height: 50px;
color: #ffffff;
font-size: 23px;
text-transform: uppercase;
line-height: 50px;
text-align: center;
z-index: 99;
cursor: pointer;
border-radius: 3px;
background: #4dc247;
-webkit-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
border-radius: 50%;opacity: 0;	
}


.whats-icon a { 
color: #fff;
}


.whats-icon:hover a {
	color:#fff;

}


.whats-icon:hover{
	color:#fff;
	background:#212121;
}






.phone-icon{
position: absolute;
bottom: 50px;
left: 34px;
width: 50px;
height: 50px;
color: #ffffff;
font-size: 23px;
text-transform: uppercase;
line-height: 50px;
text-align: center;
z-index: 99;
cursor: pointer;
border-radius: 3px;
background: #123377;
-webkit-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
border-radius: 50%;opacity: 0;	
}


.phone-icon a { 
color: #fff;
}


.phone-icon:hover a {
	color:#fff;

}


.phone-icon:hover{
	color:#fff;
	background:#212121;
}
















.messenger-icon{
position: absolute;
bottom: 50px;
left: 34px;
width: 50px;
height: 50px;
color: #ffffff;
font-size: 23px;
text-transform: uppercase;
line-height: 50px;
text-align: center;
z-index: 99;
cursor: pointer;
border-radius: 3px;
background: #006AFF;
-webkit-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
border-radius: 50%;opacity: 0;	
}


.messenger-icon a { 
color: #fff;
}


.messenger-icon:hover a {
	color:#fff;

}


.messenger-icon:hover{
	color:#fff;
	background:#212121;
}



.all-ioc.active .phone-icon {
left: 210px;opacity: 1;
}


.all-ioc.active .whats-icon {
left: 100px;opacity: 1;
}

.all-ioc.active .messenger-icon {
left: 155px;opacity: 1;
}




.lang-box {
float: right;
}

.lang-box a {
display: block;
color: #fff;
line-height: 45px;

border-radius: 50px 0 50px 50px;

background: #eee;

padding: 0 20px;
background: linear-gradient( to right , #1e7c81 ,#065f63);
}


.lang-box a i,
.lang-box a img {
margin-left: 5px;
}






#customers table {
width: 100%;
margin: 30px 0;color: #000
}


#customers {
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
text-transform: capitalize;
text-align: center;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}


#customers table tr:first-child {

  background-color: #04AA6D;  color: white;

}
