/**
* Template Name: Sailor - v4.7.0
* Template URL: https://bootstrapmade.com/sailor-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat";
  color: #444444;
}

a {
  text-decoration: none;
  color: #B39765;
}

a:hover {
  color: #e24d55;
  text-decoration: none;
}

p {
  font-size: 14px;
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #5f6775;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #B39765;
  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: #e1444d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 110px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  width: 100vw;
}

#header.header-scrolled,
#header.header-inner {
  background: #fff;
  height: 70px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

#header .headerContDiv {
  background: #ffffff;
  align-items: center !important;
}

#header #logo h1 {
  font-size: 28px;
  margin: 0;
  font-family: "Montserrat";
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 span {
  color: #5347C7;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 150px;
}

@media (max-width: 992px) {
  #header #logo img {
    max-height: 120px;
  }
}

/*--------------------------------------------------------------
# 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-family: "Montserrat";
  font-size: 15px;
  font-weight: 500;
  color: #556270;
  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: #B39765;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #B39765;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #e1444d;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  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: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #B39765;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  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 {
  color: #556270;
  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(63, 73, 83, 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,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #B39765;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #B39765;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;

}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  /* background-color: rgba(30, 35, 40, 0.466); */
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center right;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators {
  position: absolute;
  bottom: 6%;
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #B39765;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #B39765;
}

#hero .btn-get-started:hover {
  background: #df3740;
}

@media (max-width: 992px) {
  #hero {
    height: 50vh;
  }

  #hero .carousel-container {
    top: 8px;
  }

  #hero .carousel-control-prev {
    width: 5%;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.432));

  }

  #hero .carousel-control-next {
    width: 5%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.432));

  }

  #hero {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 30% 95%, 18% 100%, 6% 95%, 0 95%);
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev {
    width: 5%;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.432));

  }

  #hero .carousel-control-next {
    width: 5%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.432));

  }

  #hero {
    clip-path: polygon(0 0, 100% 0, 100% 93%, 21% 93%, 15% 100%, 9% 93%, 0 93%);
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg,
.services .icon-box {
  background-color: #f8f9fa;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #e6636a;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Montserrat";
  color: #556270;
}

.section-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

@media (min-width: 1024px) {
  #about .border-left-right {
    border-right: 2px solid #B39765;
    border-left: 2px solid #B39765;
    height: max-content;
  }
}

@media (max-width: 1024px) {}

#about {
  height: min-content;
}

#about h2 {
  font-weight: 600;
  font-size: 38px;
}

#about .title-div {
  min-height: 12vh;
}

.about-img {
  width: 80%;
  height: 100%;
  filter: drop-shadow(0px 4px 8px rgba(5, 32, 53, 0.5));
  border-top-right-radius: 50px;
}

/*--------------------------------------------------------------
# Mission
--------------------------------------------------------------*/
.mission {
  padding: 0 !important;
  /* height: 450px; */
  /* overflow: hidden; */
  display: flex;
  align-items: center;
}

.mission .mission-img {
  width: 100%;
  background-size: cover;
}

@media (max-width: 1024px) {}

@media (min-width: 1024px) {
  .mission .mission-icon {
    position: relative;
    left: -72px;

  }
}

/*--------------------------------------------------------------
# Why Choose Us
--------------------------------------------------------------*/
#why h2 {
  font-weight: 600;
  border-top: 2px solid #052035;
  width: max-content;
  padding-top: 6px;
}

#why h5 {
  font-size: 16px;
}

#why p {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

@media (max-width: 1024px) {
  #service .content-div-left {
    background: #fff;
    text-align: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  #service .content-div-right {
    background: #fff;
    text-align: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  #service .content-div-left {
    background: #fff;
    text-align: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 120px;
    padding-right: 70px;
    z-index: 1;
  }

  #service .content-div-right {
    background: #fff;
    text-align: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 70px;
    padding-right: 120px;
    z-index: 1;
  }

  #service .left {
    position: relative;
    top: 50px;
    left: -40px;
  }

  #service .right {
    position: relative;
    top: 50px;
    right: -40px;
  }

  #service .left-img {
    position: relative;
    left: -40px;
    z-index: 3;
  }

  #service .right-img {
    position: relative;
    right: -40px;
    z-index: 3;
  }
}

#service h2 {
  font-weight: 600;
  border-top: 2px solid #FFF;
  width: max-content;
  padding-top: 6px;
}



.content-div-left p,
.content-div-right p {
  color: #343434;
}

.content-div-left h4,
.content-div-right h4 {
  color: #343434;
}

#service .service-img {
  z-index: 3;
  border: 2px solid #B39765;
}

/*--------------------------------------------------------------
# Get In Touch
--------------------------------------------------------------*/
#getntouch h2 {
  font-weight: 600;
  border-top: 2px solid #052035;
  width: max-content;
  padding-top: 6px;
}

#getntouch .getntouch {
  background: #F2F2F2;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 4px 14px rgba(5, 32, 53, 0.25);
}


#getntouch input {
  background: transparent;
  outline: 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #B39765;
}

#getntouch ::placeholder {
  color: #343434;
  font-weight: 400;
  font-size: 12px;
}

#getntouch input:focus {
  border-color: #5347C7;
}

#getntouch .contact-btn {
  background: #052035;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}
.form-div {
  background: #f2f2f2;
}
.form-div i{
  font-size: 24px;
}
@media (max-width: 1024px) {
  .formbg {
    height: 250px;
  }

  .form-div {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#know {
  min-height: 300px;
}

#know .contact-btn {
  background: #fff;
  border-radius: 25px;
  color: #052035;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: 0.5s;
}

#know .contact-btn:hover {
  background: #052035;
  color: #fff;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #556270;
  float: left;
  width: 44px;
  height: 44px;
  background: #edeff1;
  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: #556270;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #8795a4;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #556270;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.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;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #B39765;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #B39765;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #e24d55;
}

@-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 {
  padding: 80px 0;
  color: #fff;
}

#footer p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
  text-align: justify;
}

#footer .footer-top h3 {
  font-size: 20px;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 12px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #B39765;
}

#footer .footer-top .social-links a:hover {
  background: #B39765;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top .footer-links ul {
  list-style: none;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1024px) {

  #footer .footer-top .footer-links ul {
    text-align: center;
  }

  #footer .footer-top .address {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  #footer .footer-top .address p {
    text-align: center;
  }
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top li a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top li a:hover {
  color: #B39765;
}