:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('OpenSans-Regular'), url(../image/OpenSans-Regular.ttf) format('truetype');
}

* {
  font-family: Open Sans !important;
}

.fa {
  font-family: fontawesome !important;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ffb03b;
}

a:hover {
  color: #8ec4dd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

section.bnr {
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #ffb03b;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #86c0da;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  /*background:rgba(35,44,43,.95);*/
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}

#header img {
  margin: 0 auto;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #dd3d25;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

.body-fx #header {
  padding: 6px 0;
  height: 65px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(47, 77, 90, .85);
}

.body-fx .navbar-default {
  background-color: transparent !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
}

.section-bg {
  background-color: #f4f9fc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: #2f4d5a;
  text-transform: uppercase;
  z-index: 2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 5px;
  background: #ffb03b;
  z-index: -1;
}

.section-title h2::before {
  content: '';
  position: absolute;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  top: 50px;
  left: 50%;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  background: #2f4d5a;
}

.section-title h2 span {
  color: #ffb03b;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../image/about-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 9;
}

.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 10px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  margin: 0;
  font-size: 34px;
  color: #ffb03b;
  margin-bottom: 30px;
  position: relative;
  left: 20px;
}

.about .content h3:before {
  content: '';
  width: 5px;
  height: 80px;
  position: absolute;
  background: #2f4d5a;
  left: -15px;
}

.about .content p {
  margin-bottom: 10px;
  text-align: justify;
  line-height: 26px;
}

.about .content .rd-mr {
  display: inline-block;
  background: #ffb03b;
  padding: 6px 44px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
  font-weight: 800;
  font-size: 17px;
}

.about .content .rd-mr i {
  font-size: 18px;
  position: absolute;
  right: 18px;
  top: 9px;
}

.about .content .rd-mr:hover {
  background: #2f4d5a;
}

.about .icon-boxes .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  border: 1px dashed #ccc;
  margin: 10px auto;
  text-align: center;

}

.about .icon-boxes .icon-box:hover,
.about .icon-boxes .icon-box:hover .fa,
.about .icon-boxes .icon-box:hover a {
  color: #fff;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #ffb03b;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box::before {
  content: '';
  position: absolute;
  background: #ffb03b;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.about .icon-boxes .icon-box:hover::before {
  background: #ffb03b;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px 13px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  text-align: center;
  z-index: 1;
  border: 1px dashed #ccc;
  height: 340px;
  margin: 0 0 20px;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #ffb03b;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 80px;
  line-height: 1;
  color: #ffb03b;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #ffb03b;
  float: left;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2f4d5a;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #49788c;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}

/*--------------------------------------------------------------
# car
--------------------------------------------------------------*/
.car {
  background: linear-gradient(rgba(47, 77, 90, 0.8), rgba(47, 77, 90, 0.8)), url("../image/carr-bg.jpg") fixed center center;
  background-size: cover;
  padding: 40px 0;
  margin-top: 60px;
}

.car h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
}

.car p {
  color: #fff;
  line-height: 30px;
}

.car .car-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.car .car-btn:hover {
  border-color: #fff;
  background: #ffb03b;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #ecf5f9;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #2f4d5a;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ffb03b;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(103, 176, 209, 0.75);
  transition: 0.3s;
  width: 50%;
}

.partner h2 {
  text-align: center;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(103, 176, 209, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  /* text-align: center; */
  margin-bottom: 80px;
  position: relative;
}

.member-info a {
  text-align: center;
}

.team .member .pic {
  overflow: hidden;
  background: rgba(47, 77, 90, .8);
  border-radius: 100%;
}

.team .member .pic img {
  max-width: 100%;
}

.team .member .member-info {
  /* position: absolute; */
  top: 85%;
  left: 20px;
  right: 20px;
  background: #2f4d5a;
  padding: 20px 37px;
  color: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: auto;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  margin: 30px 0 0;
}

.team .member:hover .member-info {
  max-height: max-content;
}

.whatsappl {
  position: fixed;
  right: 10px;
  bottom: 150px;
  text-align: center;
  color: #fff;
  background: #57ff3b;
  padding: 7px 10px;
  z-index: 9;
  border-radius: 50%;
  border: 2px solid #57ff3b;
  cursor: pointer;
}

.whatsappl i {
  color: #fff;
  font-size: 45px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.member-info p {
  padding-top: 10px;
  font-size: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #52869d;
}

.team .member .social a:hover {
  color: #ffb03b;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
  color: #fff;
}

.member-info a {
  color: #fff;
}

/*--------------------------------------------------------------
# Contact form
--------------------------------------------------------------*/
.contact {
  padding: 10px 0 80px;
}

.contact .map-hm-rht {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}



.contact .map-hm-rht input {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .map-hm-rht input::focus {
  background-color: #ffb03b;
}

.contact .map-hm-rht input {
  padding: 20px 15px;
}


.contact .map-hm-rht [type="submit"] {
  background: #ffb03b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  font-weight: bold;
  font-size: 17px;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #8ec4dd;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #263f49;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-top: -90px;
  margin-bottom: 15px;
  background: white;
  color: #2f4d5a;
  border-top: 4px solid #ffb03b;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2f4d5a;
  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: #ffb03b;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 24px;
  border-bottom: 1px dashed #fff;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#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 {
  padding: 0 15px;
  color: #b5d9e9;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 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 {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #a2cfe3;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#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: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffb03b;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #409cc5;
}

#footer .copyright {
  border-top: 1px solid #385b6b;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.top {
  position: fixed;
  right: 10px;
  bottom: 30px;
  text-align: center;
  color: #fff;
  background: #ffb03b;
  padding: 10px 10px;
  z-index: 9;
  border-radius: 50%;
  border: 2px solid #ffb03b;
  cursor: pointer;
  opacity: 0;
  transition: ease-in 0.5s;
}


.top.scll-top {
  opacity: 1;
  transition: ease-in 0.5s;
  bottom: 50px;
}

.top .fa {
  display: block !important;
}

#footer .footer-top .footer-info-new {
  margin-top: 0px !important;
}

#footer .footer-top .footer-info h2 {
  font-size: 22px;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 0;
  }

  .services .icon-box {
    margin: 15px auto;
  }

  .team .row {
    display: flex;
    flex-direction: column;
  }

  .team .col-lg-4.col-md-6 {
    order: 1;
  }

  .team .col-lg-8.col-md-6 {
    order: 2;
  }

  .team .member .member-info {
    margin: 30px 0 15px;
  }
}


@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

@media (max-width: 767px) {
  #header img {
    margin: inherit;
  }

  .body-fx #header {
    padding: 15px 0;
    height: inherit;
    position: relative;
    background: rgba(47, 77, 90, .85) !important;
  }

  .navbar-toggle {
    margin-top: -38px;
    position: absolute;
    right: 0px;
  }

  .caption {
    width: 100%;
  }

  .wback .caption {
    top: 30%;
  }

  .navbar-default,
  .navbar-default .navbar-collapse {
    background-color: rgba(47, 77, 90, .85) !important;
    border-color: transparent !important;
  }

  .body-fx .navbar-default,
  .body-fx .navbar-default .navbar-collapse {
    background-color: transparent !important;
    border-color: transparent !important;
  }

  .nav>li>a {
    padding: 8px 2px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }

  .navbar-default .navbar-toggle:focus,
  .navbar-default .navbar-toggle:hover {
    background-color: #2f4d5a;
  }
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }

  .wback .caption {
    display: none;
  }

  #header {
    position: relative;
    background-color: rgba(47, 77, 90, .85);
    padding: 20px 0;
    height: 80px;
  }
}

@media (max-width: 414px) {
  #header img {
    margin: inherit;
    max-width: 75%;
  }
}