/*================================================
            0 BASE CSS
==================================================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700|Poppins:400,700|Roboto+Slab:400,700');
html, body {
    height: 100%;
    vertical-align: baseline;
}
body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
/* font-family: 'Montserrat', sans-serif; */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
}
a:focus {
    outline: 0 solid;
}
img {
    height: auto;
}
a{
   transition: 0.4s;
}
html,
body {
    height: 100%;
}
a:hover {
    text-decoration: none;
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.navbar-inverse {
  position: fixed;
  padding: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  z-index: 5000;
}
/*================================================
             2. PRELOADER
==================================================*/
#loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9999999;
      overflow: hidden;
 }
  .no-js #loader-wrapper {
      display: none;
 }
  #loader {
      display: block;
      position: relative;
      left: 50%;
      top: 50%;
      width: 150px;
      height: 150px;
      margin: -75px 0 0 -75px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #222;
      -webkit-animation: spin 1.7s linear infinite;
      animation: spin 1.7s linear infinite;
      z-index: 11;
 }
  #loader:before {
      content: "";
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #222;
      -webkit-animation: spin-reverse .6s linear infinite;
      animation: spin-reverse .6s linear infinite;
 }
  #loader:after {
      content: "";
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #222;
      -webkit-animation: spin 1s linear infinite;
      animation: spin 1s linear infinite;
 }
  @-webkit-keyframes spin {
      0% {
          -webkit-transform: rotate(0deg);
     }
      100% {
          -webkit-transform: rotate(360deg);
     }
 }
  @keyframes spin {
      0% {
          -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
     }
      100% {
          -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
     }
 }
  @-webkit-keyframes spin-reverse {
      0% {
          -webkit-transform: rotate(0deg);
     }
      100% {
          -webkit-transform: rotate(-360deg);
     }
 }
  @keyframes spin-reverse {
      0% {
          -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
     }
      100% {
          -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
     }
 }
  #loader-wrapper .loader-section {
      background-color: #fff;
      position: fixed;
      top: 0;
      width: 51%;
      height: 100%;
      z-index: 10;
 }
  #loader-wrapper .loader-section.section-left {
      left: 0;
 }
  #loader-wrapper .loader-section.section-right {
      right: 0;
 }
 /* Loaded styles */
  .loaded #loader-wrapper .loader-section.section-left {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
      -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 }
  .loaded #loader-wrapper .loader-section.section-right {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
      -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 }
  .loaded #loader {
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
 }
  .loaded #loader-wrapper {
      visibility: hidden;
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      -webkit-transition: all 0.3s 1s ease-out;
      transition: all 0.3s 1s ease-out;
 }
/*================================================
             3. BACK TO TOP
==================================================*/
.scrollup {
   position: fixed;
    width: 35px;
    height: 70px;
    line-height: 50px;
    text-align: center;
    background-color: rgb(249, 186, 72);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    animation-delay: .95s;
    display: inline-block;
    transform: rotate(180deg);
    bottom: 8%;
    right: 3%;
    z-index: 3;
    opacity: 18;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.scrollup:hover {
  background-color: rgba(38, 71, 108,.99);
  transition: 1s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}
.back-to-top span {
  padding-bottom: 10px;
}
.back-to-top--active {
  visibility: visible;
  -webkit-animation: back-to-top .5s ease-in;
  animation: back-to-top .5s ease-in;
  transition: width 3s;
}
.scroll_effects {
    background: url("../images/scrolling-icon.png");
    width: 19px;
    height: 16px;
    display: inline-block;
    -webkit-animation-name: scroll_effects;
    animation-name: scroll_effects;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes scroll_effects {
    from,
    to {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes scroll_effects {
    from,
    to {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/*================================================
             4. HEADER SECTION
==================================================*/
a:focus, a:hover {
  color: #ffffff;
  text-decoration: none;
}
a:focus {
  outline: 0 solid;
}
.navbar-expand-lg .navbar-collapse {
  display: flex !important;
}
.navbar-header {
  width: 100%;
}
.navbar-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.navbar {
  background-color: none !important;
}
.navbar-brand {
    position: relative;
    padding: 25px 15px 30px;
    height: auto;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.navbar-brand:before,
.navbar-brand:after {
  background: #26476c;
  content: "";
  position: absolute;
  top: -6px;
  bottom: 5px;
  right: 0;
  left: -600px;
  z-index: -100;
}
.navbar-brand:after {
    left: 0;
    right: -72px;
    -webkit-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
            transform: skew(-30deg);
    border-radius: 0 5px 5px 0;
}
.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
    background: transparent;

}
.bg-inverse {
    background: transparent;
}
.navbar-inverse .navbar-nav {
    position: relative;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    margin-top: 7px;
    margin-bottom: 10px;
}
.navbar-inverse .navbar-nav:before,
.navbar-inverse .navbar-nav:after {
    display: block;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.navbar-inverse .navbar-nav:after {
    background: rgba(38, 71, 108,.8);
    content: "";
    position: absolute;
    left: -128px;
    right: -20000px;
    top: 0;
    bottom: 0;
    -webkit-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    z-index: -200;
    border-radius: 5px 0 0 5px;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: outside none none;
  margin-bottom: 0;
  padding-left: 0;
}
.navbar-expand-lg .navbar-nav {
  flex-direction: row;
}
.navbar-inverse .navbar-nav li {
  padding: 25px 10px 23px 10px;
  border-bottom: 2px solid rgba(38, 71, 108,.7);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  overflow: hidden;
}
.navbar-inverse .navbar-nav .nav-link {
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.navbar-inverse .navbar-nav .active>.nav-link, .navbar-inverse .navbar-nav .nav-link.active {
  color: #f9ba48;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.navbar-inverse .navbar-nav > li.active, .navbar-inverse .navbar-nav > li:hover {
    border-bottom: 2px solid #f9ba48;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
}
.navbar-nav li a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding-top: 5px;
  position: relative;
  transition: 0.5s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.navbar-inverse .navbar-nav .nav-link:focus, .navbar-inverse .navbar-nav .nav-link:hover {
  color: #f9ba48;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.top-nav-collapse .navbar-brand {
    padding-top: 7px;
    padding-bottom: 20px;
    transition: 0.5s;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}
.top-nav-collapse .navbar-brand:after {
    right: -100px;
    transition: 0.5s;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}
.top-nav-collapse .navbar-nav {
    margin-top: 0;
    transition: 0.5s;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}
.top-nav-collapse .navbar-nav:after {
    background: #26476c;
    left: -344px;
    transition: 0.5s;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}
.top-nav-collapse .navbar-nav > li {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.title {
  text-align: left;
}
.title h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0C94B8;
  line-height: 1.2;
  text-transform: uppercase;
}
.title .soft-wihte {
  color: #ffffff;
  margin-bottom: 0px;
  font-weight: 400;
}
.title h2 {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.title .soft {
  color: #0C94B8;
}
.title p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  line-height: 1.6;
}
.title .animition {
  margin-top: 0px;
}
.header-btn {
  color: #ffffff;
  outline: none;
  border: 2px solid #26476c;
  background-color: #26476c;
  padding: 15px 25px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header-btn:hover {
  background-color: transparent;
}
.title-btn {
  margin-top: 10px;
  color: #ffffff;
  font-weight: 700;
  outline: none;
  border: 2px solid #0C94B8;
  padding: 10px 20px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: capitalize;
  border-radius: 5px;
  box-shadow: inset 0 0 0 0 #0C94B8;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.title-btn:hover {
  box-shadow: inset 0 100px 0 0 #0C94B8;
}
.navbar-brand {
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.nav-row {
  width: inherit;
}
.main-menu ul.navbar-nav {
    float: right;
}
.navbar-inverse .navbar-nav > li.active:after {
  opacity: 1;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.navbar-inverse .navbar-nav > li:after {
    position: relative;
    bottom: -22px;
    content: '';
    left: 50%;
    display: block;
    height: 5px;
    width: 5px;
    opacity: 0;
    margin: 0 0 -3px -2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #f9ba48;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
}
.navbar-inverse .navbar-nav > li.test-class:after {
  bottom: -19px;
}
/*================================================
             6. SLIDER SECTION
==================================================*/
.single-slider{
  background: url("../images/slider/3.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  text-align: center;
  overflow: hidden;
	height: 100vh;
}
.single-slider2{
  background: url("../images/slider/2.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  text-align: center;
  overflow: hidden;
	height: 100vh;
}
.single-slider3{
  background: url("../images/slider/1.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  text-align: center;
  overflow: hidden;
	height: 100vh;
}
.slider-overlay {
  background-color: rgba(0,0,0,0.2);
  height: 100vh;
  padding: 70px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.title {
  margin-top: 200px;
}
.title h5 {
  font-size: 40px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}
.title h4 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  line-height: 50px;
}
.title .color {
  color: #f9ba48;
}
/*slider text animation-delay */
.carousel-single-item .owl-stage .active .title h4, .carousel-single-item .owl-stage .active .title h5, .carousel-single-item .owl-stage .active .title .btn {
  opacity: 1;
  transform: translateY(0)translateX(0);
}
.carousel-single-item .slider-overlay .title h5 {
  transform: translateY(60px);
  transition-delay: 0.1s;
  transition-duration: 1s;
  opacity: 0;
}
.carousel-single-item .slider-overlay .title h4 {
  transform: translateY(60px);
  transition-delay: 0.6s;
  transition-duration: 1s;
  opacity: 0;
}
.carousel-single-item .slider-overlay .title .btn {
  overflow: visible;
  background-image: none;
  transform: translateY(60px);
  transition-delay: 1s;
  transition-duration: 1s;
  opacity: 0;
  transition-property: transform, opacity;
}
.carousel-single-item .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top:52%;
}
.carousel-single-item .owl-prev, .carousel-single-item .owl-next {
	border: 1px solid rgba(38, 71, 108,.7);
	text-align: center;
	display: inline-block;
	width: 51px;
  height: 51px;
	background: rgba(38, 71, 108,.7);
	color: #ffffff;
	transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.carousel-single-item .owl-prev .fa , .carousel-single-item .owl-next .fa {
  line-height: 50px;
  font-size: 34px;
}
.carousel-single-item .owl-prev:focus, .carousel-single-item .owl-next:focus {
	border: 1px solid rgba(38, 71, 108,.99);
}
.carousel-single-item .owl-prev:hover, .carousel-single-item .owl-next:hover {
	background: rgba(38, 71, 108,.99);
  color: #fff;
  border: 1px solid rgba(38, 71, 108,.99);
}
.carousel-single-item .owl-prev {
  position: relative;
  float: left;
  margin-left: 1px;
}
.carousel-single-item .owl-next {
  position: relative;
  float: right;
  margin-right: 1px;
}
/*================================================
             7. ABOUT SECTION
==================================================*/
.about-section {
  padding-top: 60px;
  padding-bottom: 90px;
}
.sub-about {
  padding-top: 30px;
  padding-bottom: 30px;
}
.about-sub-2 {
  padding-bottom: 30px;
}
.about-image {
  overflow: hidden;
  -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}
.about-image:hover {
  background-color: rgba(198,192,192,.2);
  transform: scale(1,1);
}
.about-image img {
  width: 100%;
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  -o-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
}
.about-image:hover img {
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.about-content {
  padding: 40px;
}
.sub-title {
  line-height: 50px;
  font-size: 30px;
  font-weight: 700;
  color: #0C94B8;
  text-transform: capitalize;
}
.about-details p {
  color: #000000;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
}
.about-section-ul {
  padding-left: 0px;
  font-size: 15px;
  color: #000000;
  font-weight: 400;
}
.about-section-ul li{
  list-style: none;
  line-height: 28px;
}
.about-small-icon {
  color: #0C94B8;
  margin-left: 5px;
  margin-right: 10px;
}
.btn-all-post {
  text-transform: uppercase;
  background-color: transparent;
  color: #000000;
  font-weight: 700;
  outline:none;
  border: 2px solid #2c6ab0;
  padding: 10px 40px;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 0 #2c6ab0;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.btn-all-post:hover {
  box-shadow: inset 0 100px 0 0 #2c6ab0;
  color: #ffffff;
}
/*================================================
             8. COUNTER SECTION
==================================================*/
.counter-section {
  background-image: url('../images/counter/counter-bg-2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.counter-section .overlay {
  background-color: rgba(0,0,0,0.8);
}
.icon-box-2 {
  text-align: center;
  color: #ffffff;
  transition: 1s;
}
.counter-wrapper .col-md-3 {
  padding-top: 90px;
  padding-bottom: 90px
}
.counter-column span {
  font-size: 35px;
  line-height: 50px;
  color: #3a7cc5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  text-align: center;
}
.counter-column h3 {
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
}
/*================================================
             9. SERVICES SECTION
==================================================*/
.services-section {
  padding-top: 60px;
  padding-bottom: 80px;
}
.concern-text {
  font-size: 16px;
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
}
.service-sub {
  padding-top: 30px;
}
.service-block-3 {
  margin-bottom: 40px;
  background: #f7f7f7;
  color: #737f8a;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.services-section .service-block-3:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: -1;
    background-color: transparent;
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #3a7cc5;
    border-right: 2px solid #3a7cc5;
    transition: all 0.9s ease-in-out 0s;
    -webkit-transition: all 0.9s ease-in-out 0s;
    -moz-transition: all 0.9s ease-in-out 0s;
    -o-transition: all 0.9s ease-in-out 0s;
    -ms-transition: all 0.9s ease-in-out 0s;
}
.services-section .service-block-3:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: -1;
    background-color: transparent;
    top: 0;
    left: 0;
    border-top: 2px solid #3a7cc5;
    border-left: 2px solid #3a7cc5;
    transition: all 0.9s ease-in-out 0s;
    -webkit-transition: all 0.9s ease-in-out 0s;
    -moz-transition: all 0.9s ease-in-out 0s;
    -o-transition: all 0.9s ease-in-out 0s;
    -ms-transition: all 0.9s ease-in-out 0s;
}
.service-block-3 .single-icon {
  margin: 0 auto 15px;
}
.service-block-3 h3 {
  font-weight: 700;
  color: #202020;
  font-size: 20px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.service-block-3 p {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
}
.services-section .service-block-3:hover:before {
    width: 100%;
    height: 100%;
}
.services-section .service-block-3:hover:after {
    width: 100%;
    height: 100%;
}
/*================================================
             10. PORTFOLIO SECTION
==================================================*/
.portfolio-section {
  padding-top: 60px;
  padding-bottom: 90px;
  background: #f5f5f5;
}
.work-heading h2{
	color:#010101;
	font-size:30px;
	font-weight:500;
	font-family: "Montserrat", sans-serif;
	padding-bottom:15px;
	text-align:center;
}
.work-heading p{
	color:#444;
	font-size:15px;
	font-weight:400;
	font-family: "Montserrat", sans-serif;
	line-height:28px;
	text-align:center;
	padding-bottom:80px;
}
.work-wrapper .mix {
  display: none;
	margin-bottom:25px;
}
.filter-button-group ul {
  text-align: center;
	margin:0px auto;
  margin-bottom: 50px;
  padding-left: 0px;
}
.filter-button-group ul li {
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: #000000;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    margin-right: 15px;
}
.filter-button-group ul li:hover {
    color: #f9ba48;
    border-radius: 0px;
    cursor: pointer;
}
.filter-button-group li.active {
    background: none;
    color: #f9ba48;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
.work-items {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.work-items img {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
}
.work-items .overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    left: 0;
    top: 100%;
    width: 100%;
    position: absolute;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.work-items .buttons {
    position: absolute;
    top: -100%;
    left: 50%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.work-items .buttons .fa {
    margin: 0 1px;
    background: rgb(256, 256, 256);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #000000;
    display: inline-block;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.work-items .buttons .fa:hover{
	background: rgb(249, 186, 72);
	color:#fff;
}
.work-items:hover .buttons {
    top: 50%;
}
.work-items:hover .overlay {
    top: 0;
}
.work-btn {
    color: #FFF;
	  width:20%;
    background: #2196f3;
    border: 2px solid #2196f3;
    padding: 14px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    display:block;
  	margin:0px auto;
	  margin-top:40px;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #2196f3;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
}
.work-btn:hover {
    box-shadow: inset 0 100px 0 0 #fff;
    color: #444;
}
.esgbox-overlay {z-index: 99998 !important}
.esgbox-wrap {z-index: 99999 !important}

/*====================Portfolio Top Nav Active and Houver Effect================================*/
.filter-button-group ul li:after, .filter-button-group ul li:before, .filter-button-group ul li span:after, .filter-button-group ul li span:before {
    width: 9px;
    height: 9px;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.4s ease-out;
    content: '';
    border: 2px solid #eaa407;
    border-width: 2px 2px 0 0;
}
.filter-button-group ul li span {
    padding: 5px 30px;
    position: relative;
    outline: none !important;
    display: inline-block;
    vertical-align: top;
}
.filter-button-group ul li:before, .filter-button-group ul li:after, .filter-button-group ul li span:before, .filter-button-group ul li span:after {
    width: 0;
    height: 0;
    transition: all 0.4s ease-out;
    opacity: 0;
}
.filter-button-group ul .active:after,
.filter-button-group ul .active:before,
.filter-button-group ul .active span:after,
.filter-button-group ul .active span:before,
.filter-button-group ul li:hover:before,
.filter-button-group ul li:hover:after,
.filter-button-group ul li:hover span:before,
.filter-button-group ul li:hover span:after {
    width: 9px;
    height: 9px;
    opacity: 1;
}
.filter-button-group ul li span:after, .filter-button-group ul li span:before {
    right: auto;
    left: 0;
    border-width: 2px 0 0 2px;
}
.filter-button-group ul li:after, .filter-button-group ul li span:after {
    top: auto;
    bottom: 0;
    border-width: 0 2px 2px 0;
}
.filter-button-group ul li span:after {
    border-width: 0 0 2px 2px;
}
/*================================================
             11. Videos Section
==================================================*/
.fetuered-videos #featured-videos-section .single-videos {
  position: relative;
  overflow: hidden;
}
.fetuered-videos #featured-videos-section .single-videos .images {
  position: relative;
  overflow: hidden;
}
.fetuered-videos #featured-videos-section .single-videos .images:after {
  background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.fetuered-videos #featured-videos-section .single-videos .images:hover h3 a {
  color: #fbc02d;
}
.fetuered-videos #featured-videos-section .single-videos .images:hover .overley {
  opacity: 1;
  transform: scaleY(1);
  z-index: 10;
}
.fetuered-videos #featured-videos-section .single-videos .images a {
  display: block;
}
.fetuered-videos #featured-videos-section .single-videos .images a img {
  transition: all 0.5s ease 0s;
}
.fetuered-videos #featured-videos-section .single-videos .images .overley {
  position: absolute;
  left: 0;
  right: 0;
  text-align: left;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  transform: scaleY(0);
  transform-origin: 0 1 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
  padding: 30px;
}
.fetuered-videos #featured-videos-section .single-videos .images .overley .videos-icon {
  padding: 20% 0;
  text-align: center;
}
.fetuered-videos #featured-videos-section .single-videos h3 {
  margin-bottom: 0px;
}
.fetuered-videos #featured-videos-section .single-videos h3 a {
  color: #ffffff;
  transition: all 0.5s ease 0s;
  font-size: 18px;
}
.fetuered-videos #featured-videos-section .single-videos h3 a:hover {
  color: #fbc02d;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-next {
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 0;
  opacity: 1;
  margin: 2px;
  right: 0;
  position: absolute;
  top: -64px;
  border: 1px solid #ddd;
  transition: all 0.5s ease 0s;
  text-align: center;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-next i {
  color: #101010 !important;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-next:hover {
  background: #fbc02d;
  border: 1px solid #fbc02d;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-next:hover i {
  color: #ffffff !important;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-next i {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fbc02d;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-prev {
  background: transparent;
  width: 30px;
  text-align: center;
  height: 30px;
  border-radius: 0;
  opacity: 1;
  margin: 2px;
  right: 35px;
  position: absolute;
  top: -64px;
  border: 1px solid #ddd;
  transition: all 0.5s ease 0s;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-prev i {
  color: #101010 !important;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-prev:hover {
  background: #fbc02d;
  border: 1px solid #fbc02d;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-prev:hover i {
  color: #ffffff !important;
}
.fetuered-videos #featured-videos-section .owl-nav .owl-prev i {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fbc02d;
}
.owl-carousel .owl-item img {
  display: inline;
  width: auto;
}
/*================================================
             11. TEAM SECTION
==================================================*/
.team-section {
  padding-top: 60px;
  padding-bottom: 100px;
}
.team-sub {
  padding-top: 30px;
}
.team-member {
  background: #f7f7f7;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
  float: left;
}
.team-member:hover .mask {
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: rotateY(0deg) scale(1, 1);
          transform: rotateY(0deg) scale(1, 1);
}
.member-photo {
  overflow: hidden;
  position: relative;
  width: 260px;
  margin: 0 auto;
}
.member-photo:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.member-photo img {
  width: 100%;
  transition: all 0.4s ease 0s;
}
.member-photo .mask {
  background: rgba(38, 71, 108,.7);
  position: absolute;
  text-align: center;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all .5s ease-out 0s;
  -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
          transform: rotateY(180deg) scale(0.5, 0.5);
}
.member-photo .mask ul {
  text-align: center;
  position: relative;
  top: 150px;
}
.member-photo .mask ul li a {
  border: 1px solid #fff;
  color: #fff;
  display: block;
  margin-left: 22px;
  font-size: 20px;
  height: 35px;
  line-height: 35px;
  float: left;
  text-align: center;
  width: 35px;
}
.member-photo .mask ul li a:hover {
  background-color: #fff;
  color: rgba(38, 71, 108,.99);
  border: 1px solid transparent;
}
.member-meta {
  padding: 15px;
}
.member-meta h4 {
  color: #202020;
  margin: 0;
  line-height: 40px;
  font-weight: 700;
  font-size: 19px;
}
.member-meta span {
  color: #2196f3;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
/* .team-slider .owl-nav {
  position: relative;
	text-align: center;
  margin-top: 30px;
}
.owl-prev, .owl-next {
	border: 0px;
	text-align: center;
	border-radius: 5%;
	display: inline-block;
	width: 40px;
	background: rgba(38, 71, 108,.99);
	color: #ffffff;
	transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.owl-prev:focus, .owl-next:focus {
	border: 0px;
}
.owl-prev:hover, .owl-next:hover {
  color: rgb(249, 186, 72);
}
.owl-prev {
	margin-right: 10px;
}
.owl-next {
  margin-left: 10px;
} */
/*================================================
             14. CONTACT SECTION
==================================================*/
.contact-section {
  padding-top: 60px;
  background: #f5f5f5;
}

.con-text {
    margin-left: 25px;
    position: relative;
    padding-left: 10px;
    color: #26476c;
    font-size: 16px;
    display: inline-block;
    text-align: left;
}
.con-text:before {
    position: absolute;
    content: "";
    right: 100%;
    border: .5px solid #26476c;
    top: 5px;
    bottom: 5px;
}
.con-text:after {
    font-size: 20px;
    position: absolute;
    content: "\f041";
    font-family: "fontAwesome";
    padding-right: 10px;
    right: 100%;
    top: 5px;
    bottom: 5px;
}
.in-map:after {
    content: "\f041";
}
.in-envelope:after {
    content: "\f0e0";
}
.in-phone:after {
    content: "\f095";
}
.contact-form {
  padding-top: 50px;
}
.contact-form .form-group {
    margin-bottom: 30px;
}
.contact-form .form-btn {
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 15px;
    margin-bottom: 60px;
}
.contact-title {
  padding-top: 15px;
  padding-bottom: 15px;
}
.contact-title h2 {
  font-weight: 700;
  color: #202020;
  font-size: 38px;
}
.contact-title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #26476c;
}
.contact-form .form-control {
  background-color: transparent;
  border: 1px solid #cccccc;
  color: #000000;
}
.form-control:focus ,.btn-send:focus ,.btn:focus {
  box-shadow: none;
}
.btn-send {
  background-color: transparent;
  color: #000000;
  outline:none;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid #3a7cc5;
  padding: 10px 40px;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 0 #3a7cc5;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.btn-send:hover {
  box-shadow: inset 0 100px 0 0 #3a7cc5;
}
.contact-form input:hover, .contact-form textarea:hover, #contact-submit:hover {
    border-color: #3a7cc5;
    color: #000000;
}
.contact-title hr {
  border-top: 5px solid #3a7cc5;
  margin: 0 auto 10px;
  width: 6%;
}
.google-map-area {
  margin-top: 15px;
}
.map {
    height: 400px;
}
/*================================================
             15. FOOTER SECTION
==================================================*/
.footer {
  background-color: #040202;
  padding: 30px 0;
}
.footer_social {
  padding-top: 30px;
  padding-bottom: 20px;
}
.footer_social ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.footer_social ul li {
  display: inline-block;
  padding-left: 10px;
}
.footer_social ul li:first-child {
  padding-left: 0px;
}
.footer_social ul li a {
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 21px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  -webkit-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s;
  width: 40px;
}
.footer_social li:hover a{
  border-radius: 50%;
}
.footer_facebook {
  background: #5D82D1;
}
.footer_twitter {
  background: #40BFF5;
}
.footer_google {
  background: #EB5E4C;
}
.footer_linkedin {
  background: #238CC8;
}
.footer_youtube {
  background: #FF0000;
}
.footer_skype {
  background: #00AFF0;
}
.footer_instagram {
  background: #3F729B;
}
.footer_pinterest {
  background: #BD081C;
}
.footer_copyright {
  color: #fff;
  margin: 0;
  font-size: 14px;
}
.footer_copyright span {
  color: #3a7cc5;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}
.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
/*================================================
        VIDEO SECTION
==================================================*/
.video-section h2 {
  padding-top: 50px;
}
#featured-videos-section {
  margin-top: 20px;
}
#featured-videos-section .videos-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
}
#featured-videos-section .videos-text a {
  font-size: 12px;
  color: #ffffff;
}
#featured-videos-section .date {
  color: #ffffff;
  font-size: 12px;
}
#featured-videos-section .single-videos {
  position: relative;
  overflow: hidden;
}
#featured-videos-section .single-videos .images {
  position: relative;
  overflow: hidden;
}
#featured-videos-section .single-videos .images:after {
  background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
#featured-videos-section .single-videos .images:hover h3 a {
  color: #fbc02d;
}
#featured-videos-section .single-videos .images:hover .overley {
  opacity: 1;
  transform: scaleY(1);
  z-index: 10;
}
#featured-videos-section .single-videos .images a {
  display: block;
}
#featured-videos-section .single-videos .images a img {
  transition: all 0.5s ease 0s;
}
#featured-videos-section .single-videos .images .overley {
  position: absolute;
  left: 0;
  right: 0;
  text-align: left;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  transform: scaleY(0);
  transform-origin: 0 1 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
  padding: 30px;
}
#featured-videos-section .single-videos .images .overley .videos-icon {
  padding: 20% 0;
  text-align: center;
}
#featured-videos-section .single-videos h3 {
  margin-bottom: 0px;
}
#featured-videos-section .single-videos h3 a {
  color: #ffffff;
  transition: all 0.5s ease 0s;
  font-size: 18px;
}
#featured-videos-section .single-videos h3 a:hover {
  color: #fbc02d;
}
#featured-videos-section .owl-nav .owl-next {
  background: #fbc02d;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 45%;
  border: 1px solid #fbc02d;
  transition: all 0.5s ease 0s;
  text-align: center;
  right: 0;
}
#featured-videos-section .owl-nav .owl-next i {
  color: #ffffff !important;
  transition: all 0.5s ease 0s;
}
#featured-videos-section .owl-nav .owl-next:hover {
  background: #fbc02d;
  border: 1px solid #fbc02d;
  color: #000000;
}
#featured-videos-section .owl-nav .owl-next:hover i {
  color: #000000 !important;
}
#featured-videos-section .owl-nav .owl-next i {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  color: #fbc02d;
}
#featured-videos-section .owl-nav .owl-prev {
  background: #fbc02d;
  color: #000;
  width: 40px;
  text-align: center;
  height: 40px;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 45%;
  border: 1px solid #fbc02d;
  transition: all 0.5s ease 0s;
}
#featured-videos-section .owl-nav .owl-prev i {
  color: #ffffff !important;
  transition: all 0.5s ease 0s;
}
#featured-videos-section .owl-nav .owl-prev:hover {
  background: #fbc02d;
  border: 1px solid #fbc02d;
}
#featured-videos-section .owl-nav .owl-prev:hover i {
  color: #000000 !important;
}
#featured-videos-section .owl-nav .owl-prev i {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  color: #fbc02d;
}


/*======= NEW Button Style =========*/
.new-btn {
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  color: #000000;
  transition: all 0.5s ease-in-out;
  border: 2px solid #26476c;
  font-weight: 400;
  font-size: 20px;
  position: relative;
  text-align: center;
}
.new-btn:before {
    background: #26476c;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform-origin: 0 0;
}
.new-btn:hover {
    color: #fff;
}
.new-btn:hover:before {
    transform: scaleX(1);
    opacity: 1;
    z-index: -1;
}




.btn-1{
  position: relative;
  border: 2px solid #f9c23c;
  padding: 10px 30px;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
}
.btn-1 p{
   text-transform: uppercase;
   text-align: center;
   color: #000000;
   font-weight: 400;
   font-size: 20px;
   margin: 0;
   margin-left: 30px;
   transition: all 0.5s ease;
   font-family: 'Montserrat', sans-serif;
}
.send{
  position: absolute;
  top:15px;
  left: 30px;
  color: #f9ba48;
  transition: all 0.5s ease;
}
.send2{
  position: absolute;
  top:80px;
  left: 30px;
  color: #ffffff;
  transition: all 0.5s ease;
}
/* Hover effects */
.btn-1:hover{
  background: #f9c23c;
  transition: all 0.5s ease;
}
.btn-1:hover p{
  color: #000000;
  transition: all 0.5s ease;
  animation: move 1s linear 1s forwards;
}

.btn-1:hover .send{
  top: -50px;
  transition: all 0.5s ease;
}

.btn-1:hover .send2{
  top: 15px;
  transition: all 0.5s ease;
  animation: sending 1s linear 1s forwards;
}
/* CSS3 animation keyframes */
@keyframes sending{
  0%{
    transform: translateY(0);
  }
  100%{
    transform: translate(40px, -60px);
  }
}

@keyframes move{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-18px);
  }
}
