/**
KP Theme colours
Logo Dark Blue-Grey: #243545; rgba(36, 53, 69, 1)
Logo Light Blue-Grey: #677685; rgba(103, 118, 133, 1)
Logo Gold: #7c7056; rgba(124,112,86,1)
Dark Grey: #333333
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height:175%;
  color: #666666;
}
a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: rgba(36, 53, 69, 1); /* Menu Link Active_text colour */

  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Exo 2", sans-serif;
}
.image-caption {
font-size: 14px;
font-style: oblique;
}
@media (max-width: 576px) {
  .image-caption {
  font-size: 10px;
  font-style: oblique;
}
}
img { /** disables right click image download */
  pointer-events: none;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #999;
  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: rgba(124,112,86,1);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 86px;
  background: #fff;
  border-bottom: 1px solid rgba(69, 57, 36);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  z-index: 997;
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #bbb;
  text-decoration: none;
}
#header .logo img {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 6px;
  margin: 0;
  max-height: 86px;
}
@media (max-width: 768px) {
  #header {
    height: 70px;
  }
  #header .logo img {
    max-height: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 0;
  }
}
/*--------------------------------------------------------------
# Language button
--------------------------------------------------------------*/
.language-btn {
  height: 30px;
  width: 50px;
  background: rgba(36, 53, 69);
  color: #fff;
  border-radius: 6px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20px;
  padding: 3px 5px;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0px;
  transition: 0.3s;
  white-space: nowrap;
}
.language-btn:hover {
  background: rgba(36, 53, 69);
  color: #fff;
}
@media (max-width: 992px) {
  .language-btn {
    margin-top: auto;
    margin-bottom: auto;
    padding: 3px 5px;
    letter-spacing: 0px;
  }
}
/*--------------------------------------------------------------
# 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 > ul > li + li {
  margin-left: 30px;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 16px;
  color: rgba(103, 118, 133);  /* Menu Link_text colour */
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background-color: rgba(124,112,86,1); /* Menu Link_underline colour */
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, 
.navbar .active, 
.navbar li:hover > a {
  color: rgba(36, 53, 69, 1); /* Menu Link Active_text colour */
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: white;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 5px 30px;
  font-size: 16px;
  text-transform: none;
  font-weight: 500;
  color: #333;  /* Dropdown Menu_Text colour */
}
.navbar .dropdown ul a i {
  font-size: 16px;
}
.navbar .dropdown ul a:hover, 
.navbar .dropdown ul, 
.navbar .dropdown ul li:hover > a {
  font-weight: 500;
  color:white ;  /* Dropdown Menu_Text colour on hover*/
}
.navbar .dropdown ul a:hover {
  background-color: rgba(36, 53, 69);  /* Dropdown Menu_tab colour on hover*/
}
.navbar .dropdown .active:hover { 
  color:white;  /* Dropdown Menu_Active Bar Text on hover*/
}
.navbar .dropdown .active { 
  background-color: rgba(36, 53, 69);  /* Dropdown Menu_Active Bar background */
  color:#eee;  /* Dropdown menu Active bar Text */
}

.navbar .dropdown:hover > ul { /* Dropdown Menu_Background */
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/*
Mobile Navigation 
*/

.mobile-nav-toggle {
 
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@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(165, 165, 165, 0.9);
  transition: 0.3s;
  z-index: 0;
}
.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: white;  /* Mobile Menu_BG colour*/
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li + li {
  margin: 0;
}
.navbar-mobile a:hover:before, 
.navbar-mobile li:hover > a:before, 
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a { 
  padding: 10px 20px;
  font-size: 15px; /* Mobile Menu_Text*/
  font-weight: 600;
  color: rgba(103, 118, 133) ;  /* Dropdown Menu_text colour*/
}
.navbar-mobile a:hover, 
.navbar-mobile .active, 
.navbar-mobile li:hover > a {
  color: rgba(36, 53, 69);
}
.navbar-mobile .getstarted {
  margin: 15px;
}
.navbar-mobile .dropdown ul { /* Dropdown Menu_box*/
  position: static;
  display: block; /* Dropdown Menu_box visiblity*/
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #eee;
  box-shadow: 0px 0px 20px rgba(127, 137, 161, 0.8);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 15px;
  font-weight: 600;
}
.navbar-mobile .dropdown ul a:hover, 
.navbar-mobile .dropdown ul .active:hover, 
.navbar-mobile .dropdown ul li:hover > a { 
  color: white; /* Dropdown Menu_Text on hover*/
}
.navbar-mobile .dropdown ul a:hover {
  background-color: rgba(36, 53, 69) ;  /* Dropdown Menu_tab colour on hover*/
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
  /* box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1); */
}
.section-tint {
  padding: 60px 0;
  background-color: #eee;
}
.section-bg {
  padding: 60px 0;
  background-color: #EEF2F2;
  background: url("../img/section-bg.jpg") top center;
  width: 100%;
  background-size: cover;
  position: relative;
  background-attachment:fixed;
}
.section-intro {
  padding: 80px 0;
  padding-bottom: 0px;
  background-color: #EEF2F2;
}
@media  (max-width: 768px) {
  .section-intro {
  padding: 55px 0;
}
}
.section-pagetop-about {
  padding-top: 140px;
  background-color: #eee;
}
@media (max-width: 768px) {
  .section-pagetop-about {
    padding-top: 110px;
    background-color: #ddd;
  }
}
.section-pagetop-portfolio {
  padding-top: 140px;
  background-color: #ddd;
}
@media (max-width: 768px) {
  .section-pagetop-portfolio {
    padding-top: 110px;
    background-color: #ddd;
  }
}
.section-contact {
  padding-bottom: 50px;
}
.section-title {
  padding-bottom: 40px;
  text-align: center;
}
.section-title h1 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: rgba(124,112,86,1);
}
.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: rgba(69, 57, 36);
}
.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 72px;
}
@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
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 34px;
  color: rgba(36, 53, 69, 1);
}
.about .icon-box {
  margin-top: 36px;
}
.about .icon-box i {
  font-size: 40px;
  float: left;
  color: #cccccc;
}
.about .icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-left: 60px;
  color: #333333;
}
.about .icon-box p {
  font-size: 16px;
  color: #666666;
  margin-left: 60px;
}
.about .about-img {
  margin-bottom: 2px;
}
@media (max-width: 992px) {
.about .about-img {
    margin-bottom: 2px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(103, 118, 133);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #f7f7f7;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid rgba(36, 53, 69);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(124,112,86,1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.award-box {
  padding-bottom: 0px;
  max-width: 600px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 540px) {
.award-box  {
  margin-left: auto;
  margin-right: auto;
}
}
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.contact .info i {
  font-size: 20px;
  color: rgba(225, 225, 225);
  float: left;
  width: 44px;
  height: 44px;
  background: rgba(103, 118, 133, 1);
  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: #666;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 18px;
  color: #000;
  text-decoration: none;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: rgba(36, 53, 69);
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: rgba(36, 53, 69);
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fbfbfb;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #bb1100;
  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: rgba(103, 118, 133);
  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 #009060;
  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: rgba(103, 118, 133, 1);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: rgba(124,112,86,1);
  color:#fff
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact .map {
  padding-top: 50px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #fff;
  padding: 0 0 10px 0;
  color: rgba(103, 118, 133, 1); /* Copyright Text Colour */
  font-size: 14px;
}
/*
#footer .footer-top {
  background: #000511;
  border-bottom: 1px solid #000;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  padding: 15px 0 15px 0;
}
*/
#footer .footer-top {
  background: rgba(36, 53, 69);
  border-bottom: 1px solid #000;
  border-top: 0px solid rgba(36, 53, 69);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.7);
  padding: 30px 0 0px 0;
}

.footer-logo {
  width: 200px;
  padding-bottom: 20px;
}
@media  (max-width: 768px) {
.footer-logo {
  padding-left: 10px;
  padding-bottom: 20px;
}
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #footer .footer-top .footer-info {
    padding-left: 10px;
  }
}
#footer .footer-top .footer-info h3 {  /* Header on left */
  font-size: 24px;
  color: rgba(36, 53, 69);
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 400;
}
#footer .footer-top .footer-info p { /* Text on left */
  font-size: 14px;
  line-height: 0px;
  margin-bottom: 0;
  /*font-family: "Raleway", sans-serif;*/
  color: #999;
}
#footer .footer-top .social-links a {  /*-- linls-- */
  font-size: 18px;
  display: inline-block;
  background: #000;
  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: rgba(36, 53, 69);
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {   /* Links header */
  font-size: 18px;
  font-weight: 600;
  color: #cccccc;
  padding-left: 8px;
  padding-top: 6px;
  padding-bottom: 8px;
  position: relative;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {  /* Links bullets */
  padding-right: 2px;
  color: #cccccc;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li { /* Links line spacing */
  padding: 6px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a { /* Links */
  color: #cccccc;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover { /* Links on hover */
  color: #fff;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgba(36, 53, 69);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: rgba(36, 53, 69);
}
#footer .copyright {
  text-align: center;
  padding-top: 15px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}