/**
* Template Name: NewBiz - v2.1.0
* Template URL: https://bootstrapmade.com/newbiz-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #65ac4c;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #65ac4c;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #65ac4c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#navbar_top {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  /*position: fixed;*/
  top: 0;
  width: 100%;
}

#navbar_top.header-scrolled {
  height: 60px;
  padding: 10px 0;
}

@media (max-width: 991px) {
  #navbar_top {
    height: 60px;
    padding: 10px 0;
  }
}

#navbar_top .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #navbar_top .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

#navbar_top .logo h1 a, #navbar_top .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#navbar_top .logo img {
  padding: 0;
 margin: -10px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #00365c;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
    color: #65ac4c;
    border-bottom: 2px solid #65ac4c;
    padding: 10px;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #00365c;
}

.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  color: #65ac4c;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #00365c;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/******************* banner css start ****************/
.tag-line {
    font-weight: 700 !important;
    font-size: 20px !IMPORTANT;
}
.carousel-indicators {
    top: 82%;
}
.scroll-down:before {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid white;
    border-width: 0px 0 2px 2px;
    margin-left: 8px;
    margin-top: 5px;
}

.scroll-banner {
    position: relative;
}
.scroll-down {
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}
.scroll-down {
    position: absolute;
    bottom: 12px;
    left: 50%;
    margin-left: -16px;
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid #FFF;
    background-size: 14px auto;
    border-radius: 50%;
    z-index: 2;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    transform: scale(1);
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
#main-slide .carousel-control {
    display: none;
    transition: all .3s ease-in-out
}
#main-slide .carousel-indicators {
    cursor: pointer;
    bottom: 100px
}
#main-slide:hover .carousel-control {
    display: block;
    transition: all .3s ease-in-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}
#main-slide .carousel-item img {
    position: relative;
}
#main-slide .carousel-inner .carousel-item::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}
#main-slide .carousel-item .carousel-caption {
    opacity: 0;
    transition: opacity 100ms ease 0s;
    z-index: 0
}
#main-slide .carousel-item .carousel-caption h4 {
    font-size: 18px;
    color: #f3f3f3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px
}
#main-slide .carousel-item .carousel-caption .heading {
    font-size: 43px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0px;
}
#main-slide .carousel-item .carousel-caption .heading span {
    color: #4064d7
}
#main-slide .carousel-item .carousel-caption p {
    color: #fff;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 500;
}
#main-slide .carousel-item.active .carousel-caption {
    opacity: 1;
    transition: opacity 100ms ease 0s;
    z-index: 1
}
#main-slide .carousel-caption {
    color: #fff;
    top: 29%;
}
#main-slide .carousel-caption .btn {
    margin: 0px 10px;
}
#main-slide .carousel-control-next,
#main-slide .carousel-control-prev {
    opacity: 1;
    box-shadow: none
}
#main-slide .carousel-control-prev span {
    padding: 15px
}
#main-slide .carousel-control-next span {
    padding: 15px
}
#main-slide .carousel-control .fa-angle-left,
#main-slide .carousel-control .fa-angle-right {
    position: absolute;
    z-index: 5;
    display: inline-block
}
#main-slide .carousel-control .fa-angle-left {
    left: 50px;
}
#main-slide .carousel-control .fa-angle-right {
    right: 50px;
}
#main-slide .carousel-control span {
    line-height: 12px;
    font-size: 35px;
    width: 45px;
    border: 2px solid #fff;
    height: 45px;
    display: block;
    border-radius: 30px;
    background: 0 0;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}
#main-slide .carousel-control span:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border-color: #fff
}

.btn-common {
    background-color: transparent;
    position: relative;
    z-index: 1;
    color: #fff !IMPORTANT;
    border-radius: 50px;
    font-size: 20px;
    border: 2px solid #fff;
    padding: 10px 30px;
}
.btn-common:hover {
    background-color: #fff;
    color: #222!IMPORTANT;
    border-radius: 50px;
    font-size: 20px;
    border: 2px solid #fff;
    padding: 10px 30px;
}
@media(min-width:320px) and (max-width:480px) {
    #main-slide .carousel-item .carousel-caption .heading {
        letter-spacing:0
    }
    #main-slide .carousel-item .carousel-caption p {
        /* display:none */
    }
    #main-slide .carousel-caption .btn {
        margin:0;
        padding:7px 9px;
        font-size:12px;
        text-transform:capitalize
    }
    #main-slide .carousel-caption {
        top:3%;
    }
    #main-slide .carousel-item .carousel-caption .heading {
        margin-bottom:0
    }
    #main-slide .carousel-control span {
        line-height:26px;
        font-size:14px;
        width:30px;
        height:30px
    }
}

@media(max-width:767px){
    .carousel-caption {
    padding-top: 5px;
}
/*#main-slide .carousel-caption {
    top:-2%; 
}*/
.carousel-indicators {
    display:none
}
#main-slide .carousel-item .carousel-caption .heading {
    font-size: 15px;
    line-height: 20px;
}
#main-slide .carousel-item .carousel-caption h4 {
    font-size:10px;
    margin-bottom:0
}
#main-slide .carousel-item .carousel-caption p {
    font-size: 12px;
    padding: 0px;
    margin-bottom: 5px;
}
#main-slide .carousel-item .carousel-caption .heading {
    /*margin-bottom: 10px;*/
}
/*.banner-sec {
    margin-top: 16%;
}*/

.scroll-down {
    display: none;
}
#main-slide .carousel-control .fa-angle-left {
    left: 8px;
    top: 50px;
}
#main-slide .carousel-control .fa-angle-right {
    right: 8px;
    top: 50px;
}
#main-slide .carousel-control-next span,#main-slide .carousel-control-prev span {
    padding: 0px;
}
.tag-line {
    font-weight: 700 !important;
    font-size: 10px !important;
}
#navbar_top .logo img {
    width: 223px;
    margin-top: 0px;
}
}

/******************* banner css End ****************/

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
}

@media (max-width: 991px) {
  #intro {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}

#intro .intro-img {
  width: 50%;
  float: right;
}

@media (max-width: 991px) {
  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

#intro .intro-info {
  width: 50%;
  float: left;
}

@media (max-width: 991px) {
  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#intro .intro-info .btn-get-started, #intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #65ac4c;
  border: 2px solid #65ac4c;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #65ac4c;
  border-color: #65ac4c;
  color: #fff;
}

/* BreadCrumbs */
.breadcrumbs {
  text-align: center;
  padding: 90px 0;
  background: url('../img/services-bg.png');
  position: relative;
  background-repeat: no-repeat;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}
.breadcrumbs::before {
  opacity: 0.8;
}
.breadcrumbs h2 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 40px;
  position: relative;
}
.breadcrumbs ul li{
  display:inline-block;
}
.breadcrumbs ul li a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  display: ;
}
.breadcrumbs li + li::before {
  color: #b9b9b9;
  content: "/";
  padding:0 5px;
  font-family: 'FontAwesome';
  content: "\f105";
  font-size:15px;
}
.breadcrumbs ul li.active a {
  color: #fff;
  border-radius: 5px;
}

.overlay{
  position:relative;
}
.overlay::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.8;
  /*background: #2A2D2F;*/
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
  margin-bottom: 30px;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #ecf5ff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
/*.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
*/
/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
  display: flex;
  align-items: center;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
  font-size: 20px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #65ac4c;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #65ac4c;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #65ac4c;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

.about-feature {
  padding: 10px;
}

/* Services Section
--------------------------------*/
.services-section {
    margin-bottom: 50px;
}

#services {
  padding: 60px 0 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  /*margin-left: 40px;*/
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #65ac4c;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#why-us {
  padding: 60px 0;
  background: #004a99;
}

#why-us .section-header h3, #why-us .section-header p {
  color: #fff;
}

#why-us .card {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

@media (max-width: 991px) {
  #why-us .card {
    margin: 0;
  }
}

#why-us .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

.services-new {
    margin-top: 30px;
}


.serviceBox{
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 0px 25px 40px;
    margin: 20px 0 0;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    height: 170px;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);

}
.serviceBox:hover{ box-shadow: 0 10px 10px rgba(0,0,0,0.2); }
.serviceBox:before,
.serviceBox:after{
    content: "";
    background: linear-gradient(to top,#65ac4c,#65ac4c);
    width: 10px;
    border-radius: 0 100px 100px 0;
    position: absolute;
    top: 92px;
    bottom: 30px;
    left: 0;
}
.serviceBox:after{
    border-radius: 100px 0 0 100px;
    left: auto;
    right: 0;
}
.serviceBox .service-icon{
    color: #fff;
    background: linear-gradient(-45deg,#023e62 49%,#2585be 50%);
    font-size: 30px;
    line-height: 55px;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 100px;
    border: 15px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: all 0.3s ease;
}
.serviceBox:hover .service-icon i{
    transform: rotateX(360deg);
    transition: all 0.3s;
}
.serviceBox .title{
    color: #023e62;
    font-size: 17px;
    font-weight: 600;
    /*text-transform: uppercase;*/
    margin: 0 0 10px;
}
.serviceBox .description{
    color: #444;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}
.serviceBox.pink:before,
.serviceBox.pink:after{ background: linear-gradient(to top,#f53985 49%,#fd47a4); }
.serviceBox.pink .service-icon{ background:linear-gradient(-45deg,#f53985 49%,#fd47a4 50%); }
.serviceBox.pink .title{ color: #f53985; }
.serviceBox.purple:before,
.serviceBox.purple:after{ background: linear-gradient(to top,#8b33cc 49%,#a23adc); }
.serviceBox.purple .service-icon{ background:linear-gradient(-45deg,#8b33cc 49%,#a23adc 50%); }
.serviceBox.purple .title{ color: #8b33cc; }
.serviceBox.blue:before,
.serviceBox.blue:after{ background: linear-gradient(to top,#038bec 49%,#01aeee); }
.serviceBox.blue .service-icon{ background:linear-gradient(-45deg,#038bec 49%,#01aeee 50%); }
.serviceBox.blue .title{ color: #038bec; }
@media only screen and (max-width:990px){
    .serviceBox{ margin: 20px 0 50px; }
}
/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #65ac4c;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: #65ac4c;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #65ac4c;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #65ac4c;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #65ac4c !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/* Testimonials Section
--------------------------------*/
section#testimonials {
    padding: 50px 0px;
}
.testimonial {
    box-shadow: 2px 5px 10px #29292970;
}
.testimonial .pic img {
    width: 90px;
    height: auto;
}
.testimonial{
    background: #fff;
    text-align: center;
    padding: 30px 30px 50px;
    margin: 0 15px 100px;
    position: relative;
}
.testimonial:before,
.testimonial:after{
    content: "";
    border-top: 40px solid #fff;
    border-right: 125px solid transparent;
    position: absolute;
    bottom: -40px;
    left: 0;
}
.testimonial:after{
    border-right: none;
    border-left: 125px solid transparent;
    left: auto;
    right: 0;
}
.testimonial .icon{
    display: inline-block;
    font-size: 80px;
    color: #65ac4c;
    margin-bottom: 20px;
    opacity: 0.6;
}
.testimonial .description{
    font-size: 15px;
    color: #777;
    text-align: left;
    margin-bottom: 30px;
    opacity: 0.8;
}
.testimonial .testimonial-content{
    width: 100%;
    position: absolute;
    left: 0;
}
.testimonial .pic{
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px 2px #daad86;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.testimonial .title{
    font-size: 15px;
    font-weight: bold;
    color: #222;
    text-transform: capitalize;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #ffd9b8;
}
#testimonials .owl-theme .owl-controls{
    margin-top: 0;
}
#testimonials .owl-theme .owl-controls .owl-page span{
    width: 32px;
    height: 10px;
    background: #fff;
    border: 2px solid #65ac4c;
    margin: 5px;
    opacity: 1;
}
#testimonials .owl-theme .owl-controls .owl-page.active span,
#testimonials .owl-theme .owl-controls.clickable .owl-page:hover span{
    background:#65ac4c;
    border-color: #fff;
}
@media only screen and (max-width: 650px) and (min-width: 400px){
    .testimonial:before{ border-right: 325px solid transparent; }
    .testimonial:after{ border-left: 325px solid transparent; }
}

/* Team Section
--------------------------------*/
.member img {
    height: 260px;
    object-fit: cover;
}
#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #65ac4c;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
 /* border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;*/
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;*/
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #65ac4c;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #65ac4c;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #65ac4c;
}

#contact .social-links a:hover {
  background: #65ac4c;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #65ac4c;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #65ac4c;
}

#contact .php-email-form input {
  padding: 20px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type="submit"] {
  background: #65ac4c;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #00365c;
  cursor: pointer;
}

button:focus{outline: 0px;}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.nav>li {
    position: relative;
    display: block;
}
.tab .nav-tabs > li{
    margin-right: 2px;
    padding-bottom: 25px;
}
.tab .nav-tabs > li > a{
    border: none;
    padding: 10px 32px;
    color:#fff;
    background: #023e62;
    border-radius:0;
}
.tab .nav-tabs > li > a > i{
    font-size:14px;
    margin-right:10px;
}
.tab .nav-tabs > li.active > a,
.tab .nav-tabs > li.active > a:focus,
.tab .nav-tabs > li.active > a:hover{
    border: none;
    background: #65ac4c;
    color:#fff;
    transition:background 0.20s linear;
}

.tab .tab-content{
    background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
    border-top: 5px solid #65ac4c;
    border-bottom: 5px solid #65ac4c;
    padding:30px 25px;
}

.tab {
    margin-top: 50px;
}

.tab-content h3 {
    margin: 0px;
    font-size: 25px;
    line-height: 35px;
}

.tab-content h3:before {
    content:"\f101";
    font-family: FontAwesome;
    color:#023e62;
    margin-right:5px;

 }

.tab-content p{margin-left:30px}
@media only screen and (max-width: 480px){
    .tab > .nav-tabs li{
        /*width:100%;*/
    }
    .tab .nav-tabs > li > a{
          padding: 12px;
          font-size: 14px;;
    }
    .tab .nav-tabs > li.active:after {
        border:none;
    }
}

/*--------------------------------------------------------------
# Mission
--------------------------------------------------------------*/
h3.mission-text {
    color: #fff;
    margin-bottom: 30px;
}

.main-timeline{
    font-family: 'Poppins', sans-serif;
    position: relative;
}
.main-timeline:before{
    content: '';
    width: 5px;
    height: 100%;
    border-left: 5px dashed #fff;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
}
.main-timeline:after{
    content: '';
    display: block;
    clear: both;
}
.main-timeline .timeline{
    width: calc(50% + 25px);
    padding: 0;
    margin: 0 0 0 50px;
    float: right;
    position: relative;
}
.main-timeline .timeline-content{
    color: #fff;
    padding: 15px 60px 15px 75px;
    border-top: 3px solid #fff;
    display: block;
    position: relative;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after{
    content: '';
    background: linear-gradient(to bottom,#FF4568,#FD2661);
    height: 100%;
    width: 50px;
    position: absolute;
    left: 0;
    top: 0;
}
.main-timeline .timeline-content:after{
    background: #fff;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    left: auto;
    right: 0;
    top: -5px;
}
.main-timeline .timeline-icon{
    color: #fff;
    font-size: 40px;
    text-shadow: 0 0 5px rgba(0,0,0,0.1);
    position: absolute;
    top: 7px;
    right: 0;
}
.main-timeline .title{
    color: #FD2661;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 7px 0;
}
.main-timeline .description{
    font-size: 17px;
    letter-spacing: 1px;
    text-align: justify;
    margin: 0;
}

.main-timeline .description {
    text-transform: capitalize;
}
.main-timeline .timeline:nth-child(even){
    margin: 0 50px 0 0;
    float: left;
}
.main-timeline .timeline:nth-child(even) .timeline-content{ padding: 20px 70px 15px 60px; }
.main-timeline .timeline:nth-child(even) .timeline-content:before{
    left: auto;
    right: 0;
}
.main-timeline .timeline:nth-child(even) .timeline-content:after{
    right: auto;
    left: 0;
}
.main-timeline .timeline:nth-child(even) .timeline-icon{
    right: auto;
    left: 0;
}
.main-timeline .timeline:nth-child(4n+2) .timeline-content:before{
    background: linear-gradient(to bottom,#FF8A2D,#FE6529);
}
.main-timeline .timeline:nth-child(4n+2) .title{ color: #FE6529; }
.main-timeline .timeline:nth-child(4n+3) .timeline-content:before{
    background: linear-gradient(to bottom,#01A9DA,#0076F4);
}
.main-timeline .timeline:nth-child(4n+3) .title{ color: #0076F4; }
.main-timeline .timeline:nth-child(4n+4) .timeline-content:before{
    background: linear-gradient(to bottom,#3CECA3,#11AD9F);
}
.main-timeline .timeline:nth-child(4n+4) .title{ color: #11AD9F; }
@media screen and (max-width:767px){
    .main-timeline .timeline-icon {
    display: none;
    }
    .main-timeline:before{
        transform: translateX(0);
        left: 22px;
    }
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 100%;
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content{
        padding: 15px 60px 15px 70px;
    }
    .main-timeline .timeline:nth-child(even) .timeline-content:before{
        right: auto;
        left: 0;
    }
    .main-timeline .timeline:nth-child(even) .timeline-content:after{
        right: 0;
        left: auto;
    }
    .main-timeline .timeline:nth-child(even) .timeline-icon{
        left: auto;
        right: 0;
    }
}
@media screen and (max-width:567px){
    .main-timeline .title{ font-size: 18px; }
}

.mission-section {
    padding: 50px 0px;
    background: #023e62;
}
       
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*

================================================

23. Footer Wrapper

================================================

*/
ul {
    list-style-type: none;
}
h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}
.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}
.mg-top-10 {
    margin-top: 10px;
}

.footer-wrapper {float:left;width:100%;}

/*** Footer Top Area ***/

.footer-top-area {

  background: #171717;

  padding: 68px 0 60px;

}

.footer-widget-heading h3 {

  color: #65ac4c;

  font-size: 18px;

  padding-bottom: 10px;

  position: relative;

  font-weight: bolder;

}

.footer-widget-heading h3:before {

  background: #65ac4c;

  bottom: -11px;

  content: "";

  height: 1px;

  left: 0;

  position: absolute;

  width: 50px;

}

i.fa.fa-map-marker {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
}

.footer-widget-content p {
   display: inline;
  color: #fff;

  font-weight: 600;

}
.footer-conatct-menu li a:hover{color:#65ac4c;}

.footer-about-info-area .footer-widget-content {

  margin-top: 35px;

}

.footer-widget-content {

  margin-top: 30px;

}

.footer-social-menu li a {background: #1c1f23 none repeat scroll 0 0;border-radius: 2px;color: #9fa4af;display: block;font-size: 16px;height: 40px;line-height: 40px;text-align: center;width: 40px;}

.footer-social-menu li a:hover, .footer-widget-menu li a:focus {

  background: #002752;

  color: #ffffff;

}

.footer-widget-menu {

  padding-top: 15px;

}

.footer-widget-menu li {

  display: inline-block;

  margin-bottom: 5px;

  margin-right: 5px;

}

.footer-widget-menu li a {

  border: 1px solid #363636;

  border-radius: 2px;

  color: #fff;

  display: block;

  font-size: 12px;

  letter-spacing: 1px;

  padding: 5px 13px;

  text-align: center;

  text-transform: uppercase;

  font-weight: 800;

}

.footer-widget-menu li a:hover, .footer-widget-menu li a:focus {

  background: #002752;

  color: #ffffff;

}

.footer-conatct-menu li a {

    color: #fff;

    font-size: 14px;

    font-weight: 800;

}

.footer-conatct-menu li a i {

  padding-right: 10px;

}

.footer-instagram a {

  display: inline-block;

  float: left;

  margin-bottom: 5px;

  overflow: hidden;

  padding: 0 2.5px;

  width: 33.3333%;

}

.footer-instagram a img {

  width: 100%;

  padding:0px;

  background:#fff;

  margin:0 0 4px;

  border:1px solid #65ac4c;

}

/*** Copyright Wrapper ***/

.copyright-wrapper {

  background: #101010;

  width: 100%;

  float: left;

  padding: 15px 0;

}

.copyright-wrapper p {

  margin: 0;

  text-align: center;

  color: #b2b2b2;

}


.call-to-action {
    padding: 66px 0 67px;
    width: 100%;
    /* float: left; */
    background: #00365c;
    position:relative;
    text-align:center;
}
.call-to-action h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    margin: 0 0 16px;
    color: #333;
}
.call-to-action p {
  color: #333;
  margin: 0;
  font-size: 18px;
}

@media screen and (max-width: 767px){
.footer-tags-widget {
    margin-top: 20px;
}
.footer-widget-heading h3 {
    text-align: center;
    margin-top: 10px;
}
.footer-widget-heading h3:before {
    background: #65ac4c;
    bottom: -7px;
    content: "";
    height: 1px;
    left: 166px;
    position: absolute;
    width: 50px;
}
.footer-widget-content {
    margin-top: 12px;
    text-align: center;
}
.footer-top-area {
    padding: 15px;
}
}
