/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.grecaptcha-badge { visibility: hidden; }

body{
  font-family: "Montserrat", sans-serif;
  color: #555555;
}

a{
  text-decoration: none;
  color: #2ca4a3;
}

a:hover{
  color: #2ca4a3;
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Montserrat", sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top{
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:#2ca4a3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i{
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover{
  background: #abdada;
  color: #fff;
}

.back-to-top.active{
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px){
  [data-aos-delay]{
      transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header{
  height: 90px;
  transition:all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0 4px 10px -3px rgba(191,191,191,0.5);
}

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

#header .logo h1 a,#header .logo h1 a:hover{
  color:#fff;
  text-decoration: none;
}

#header .logo img{
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width:992px){
  #header{
      height: 70px;
  }
}

.scrolled-offset {
  margin-top: 90px;
}

@media (max-width: 992px) {
  .scrolled-offset {
    margin-top: 90px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.navbar{
  padding: 0;
}

.navbar ul{
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li{
  position: relative;
}

.navbar a,.navbar a:focus{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #151515;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,.navbar a:focus i{
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #2ca4a3;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle{
  color: #151515;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px){
  .mobile-nav-toggle{
      display :block;
  }
  .navbar ul{
      display: none;
  }
}
.navbar-mobile{
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle{
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul{
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a{
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #2ca4a3;
}

.navbar-mobile .getstarted {
  margin: 15px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero{
  width: 100%;
  height: 100vh;
  background: url("../img/main_bg01.png");
  position :relative;
}

#hero .hero-container{
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero .hero-logo{
  margin-bottom: 30px;
}

#hero h1{
  font-family: "Montserrat" ,sans-serif;
  margin: 0 0 30px 0;
  font-size: 60px;
  font-weight: 800;
  line-height: 10px;
  letter-spacing: 4px;
  color: #fff;
}

#hero h2{
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
#hero .btn-get-started{
  font-family:"Montserrat" ,sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 2px;
  margin: 10px;
  color: #fff;
  background: #a5a3b3;
}

#hero .btn-get-started:hover{
  transition: 0.5s;
  background: #fff;
  color: #2ca4a3;
}

@media (min-width:1024px){
  #hero{
      background-attachment: fixed;
  }
}

@media (max-width:768px){
  #hero h1{
      font-size: 28px;
      line-height: 36px;
  }
  #hero h2{
      line-height: 22px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section{
  padding: 60px 0;
  overflow: hidden;
}

.section-bg{
  background-color: #f5f5f5;
}

.section-title{
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2{
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #151515;
}

.section-title p{
  margin-bottom: 0;
  color: #aeaeae;
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .image{
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.about .content h3{
  font-weight: 800;
  font-size: 26px;
  margin-top: 20px;
}

.about .content ul{
  list-style: none;
  padding: 0;
}

.about .content ul li{
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .content ul i{
  font-size: 24px;
  padding: 2px 6px 0 0;
  color: #2ca4a3;
}

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box h4{
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.services .icon-box i{
  font-size: 48px;
  float: left;
  color: #abdada;
}

.services .icon-box p{
  font-size: 15px;
  color: #959595;
  margin-left: 60px;
}

.services .image{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}
/*--------------------------------------------------------------
# BA Section
--------------------------------------------------------------*/
.featured{
  padding: 40px 0 0 0;
  background: #fff;
}

.featured .nav-tabs{
  border: 0;
}

.featured .nav-link{
  border: 0;
  padding: 14px;
  color: #151515;
  transition: 0.3s;
}

.featured .nav-link h4{
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.featured .nav-link:hover h4{
  color: #2ca4a3;
}

.featured .nav-link p{
  font-size: 14px;
  margin-bottom: 0;
}

.featured .nav-link.active{
  box-shadow: 0px 0 25px rgba(0,0,0,0.08);
}

.featured .nav-link.active h4{
  color: #abdada;
}

.featured .tab-pane.active{
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down{
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}

@keyframes slide-down{
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}
/*--------------------------------------------------------------
# Who are we and our values
--------------------------------------------------------------*/
.why-us{
  background: #f5f5f5;
  padding: 0;
}

.why-us .content{
  padding: 60px 100px 0 100px;
}

.why-us .content h3{
  font-weight: 400;
  font-size: 34px;
}

.why-us .content h4{
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p{
  font-size: 15px;
  color: #959595;
}

.why-us .video-box{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list{
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul{
  padding:0;
  list-style: none;
}

.why-us .accordion-list li+li{
  margin-top: 15px;
}

.why-us .accordion-list li{
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a{
  display: block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: 0;
  cursor: pointer;
}

.why-us .accordion-list span{
  color: #2ca4a3;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i{
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p{
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show{
  display: none;
}

.why-us .accordion-list a.collapsed{
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover{
  color: #2ca4a3;
}

.why-us .accordion-list a.collapsed .icon-show{
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close{
  display: none;
}

@media (max-width:1024px){
  .why-us .accordion-list,.why-us .content{
      padding-left: 0;
      padding-right: 0;
  }
}

@media (max-width:992px){
  .why-us .content{
      padding-top: 30px;
  }
  .why-us .accordion-list{
      padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn{
  0%{
      transform: scale(0.6,0.6);
      opacity: 1;
  }
  100%{
      transform: scale(1, 1);
      opacity: 0;
  }
}
@keyframes pulsate-btn{
  0%{
      transform:scale(0.6 ,0.6);
      opacity: 1;
  }
  100%{
      transform:scale(1,1);
      opacity: 0;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team{
  background: #fff;
  padding: 60px 0;
}

.team .member{
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img{
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.team .member .social{
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  background: rgba(171,214,214,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a{
  transition: color 0.3s;
  color: rgba(255,255,255,0.7);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a i{
  line-height: 0;
}

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

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

.team .member .member-info h4{
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span{
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #abdada;
}

.team .member .member-info p{
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #888888;
}

.team .member:hover .social{
  bottom: 0;
  opacity: 1;
  transition:bottom ease-in-out 0.4s;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info{
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.contact .info i{
  font-size: 20px;
  color: #2ca4a3;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6e9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4{
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p{
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,.contact .info .phone{
  margin-top: 40px;
}

.contact .info .address:hover i,.contact .info .email:hover i,.contact .info .phone:hover i{
  background: #abdada;
  color: #fff;
}

.contact .php-email-form{
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.contact .php-email-form .form-group{
  padding-bottom: 8px;
}

.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{
  height: 44px;
}

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

.contact .php-email-form button[type=submit]{
  background: #2ca4a3;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover{
  background: #abdada;
}

@-webkit-keyframes animate-loading{
  0%{
      transform: rotate(0deg);
  }
  100%{
      transform: rotate(360deg);
  }
}
@keyframes animate-loading{
  0%{
      transform: rotate(0deg);
  }
  100%{
      transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer{
  background: url("../img/hero-bg.png") center center no-repeat;
  color: #fff;
  font-size: 12px;
  position: relative;
}

#footer::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(30 ,24 ,64 ,1);
  z-index: 1;
}

#footer .footer-top{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0;
}

#footer .footer-top .footer-logo img{
  height: 120px;
}

#footer .footer-top h3{
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Montserrat" ,sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
  margin-top: 0;
}

#footer .footer-top p{
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter{
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form{
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type=email]{
  border :0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type=submit]{
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: 0 0;
  font-size: 16px;
  padding: 0 20px;
  background: #abdada;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover{
  background: #2ca4a3;
}

#footer .footer-top .social-links{
  margin-top: 10px;
}

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

#footer .footer-top .social-links a:hover{
  background: #abdada;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom{
  border-top: 1px solid #222222;
  z-index: 2;
  position: relative;
  padding-top: 10px;
  padding-bottom: 20px;
}

#footer .copyright{
  text-align: center;
}
