@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

body {
  color: #232323;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background-color: #fefefe;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 20px;
}

a {
  color: inherit;
  text-decoration: none !important;

  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
a:hover {
  color: #00643c;
}

.btn-link {
  color: #00643c;
}
.btn-link:hover {
  color: #c0392b;
  opacity: 0.7;
}
.btn-primary {
  background-color: #00643c;
  border-color: #00643c;
}
.btn-primary:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}
.btn-primary.focus,
.btn-primary:focus {
  background-color: #c0392b;
  border-color: #c0392b;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #00643c;
  border-color: #00643c;
  opacity: 0.7;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background-color: #c0392b;
  border-color: #c0392b;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  background-color: #c0392b;
  border-color: #c0392b;
  box-shadow: none;
}

.form-control:focus {
  border-color: #00643c !important;
  box-shadow: none !important;
}

.swiper-pagination-bullet-active {
  background-color: #c0392b;
}

.big-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 35px;
  font-size: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.big-title.center {
  text-align: center;
}
.big-title::after {
  position: absolute;
  width: 60px;
  height: 7px;
  left: 0;
  bottom: 0;
  content: "";
  border-radius: 100px;
  background-color: #00643c;
}
.big-title.center::after {
  right: 0;
  margin: auto;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;

  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
header .logo {
  height: 90px;

  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
header .logo img {
  padding: 20px 0;
  height: 100%;
}
header .right {
  display: flex;
  align-items: center;
}
header .menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
header .menu nav ul li {
  position: relative;
  margin-left: 5px;
}
header .menu nav ul li a {
  display: block;
  color: #fff;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 100px;
}
header .menu nav ul li:hover > a {
  background-color: #00643c;
}
header .menu nav ul li a i {
  width: 25px;
  margin-right: -25px;
  opacity: 0;
  color: #fff;

  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
header .menu nav ul li:hover > a i {
  margin-right: 0;
  opacity: 1;
}
header .menu nav ul li ul {
  position: absolute;
  left: 0;
  top: calc(100% + 25px);
  min-width: 200px;
  padding: 10px 0;
  background-color: #fafafa;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: none;
}
header .menu nav ul li ul::before {
  position: absolute;
  left: 20px;
  top: -20px;
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fafafa;
  border-top: 10px solid transparent;
}
header .menu nav ul li ul::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  height: 25px;
  content: "";
}
header .menu nav ul li:hover > ul {
  display: block;
}
header .menu nav ul li ul li {
  width: 100%;
  margin-left: 0;
  padding: 0 20px;
}
header .menu nav ul li ul li a {
  padding: 10px 0;
  color: #232323;
}
header .menu nav ul li ul li a:hover {
  background-color: transparent;
  color: #00643c;
}
header .menu nav ul li .submenu {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 6px;
  top: 6px;
  line-height: 32px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.15);
  color: #fff;
  border-radius: 50%;
  z-index: 1;
  display: none;
}
header .menu nav ul li .submenu::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
}
header .social {
  margin-left: 10px;
  padding-left: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
header .social nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
header .social nav ul li {
  margin-left: 25px;
}
header .social nav ul li a {
  display: block;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}
header .social nav ul li a:hover {
  color: #00643c;
}
header.sticky {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
header.sticky .logo {
  height: 70px;
}
header.sticky .logo img {
  padding: 12px 0;
}
header.sticky .logo img:first-child {
  display: block;
}
header.sticky .logo img:last-child {
  display: none;
}
header:not(.sticky) .logo img:first-child {
  display: none;
}
header:not(.sticky) .logo img:last-child {
  display: block;
}
header.sticky .menu nav ul li a {
  color: #232323;
}
header.sticky .menu nav ul li:hover > a {
  color: #fff;
}
header.sticky .menu nav ul li ul {
  top: calc(100% + 30px);
}
header.sticky .menu nav ul li ul::after {
  height: 30px;
  top: -30px;
}
header.sticky .menu nav ul li ul li a:hover {
  color: #00643c;
}
header.sticky .social nav ul li a {
  color: #232323;
}
header.sticky .social nav ul li a:hover {
  color: #00643c;
}
header.sticky .social {
  border-color: #e8e8e8;
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slider .slide {
  width: 100%;
  height: 100%;
  text-align: center;
}
.slider .slide .bg {
  width: 100%;
  height: 100%;
  background-color: #111;
}
.slider .slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.slider .slide .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  z-index: 2;
}
.slider .slide .content h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.slider .slide .content p {
  font-size: 18px;
}
.slider .slide .content .btn {
  margin-top: 40px;
  padding: 12px 24px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 100px;
}
.slider .slide .content .btn:hover {
  background-color: #c0392b;
}
.slider .slide .content .btn i {
  margin-right: 10px;
}
.slider .nav-btn {
  margin-left: 30px;
  margin-right: 30px;
  outline: none !important;
}

.about {
  padding: 75px 0;
}
.about .features {
  margin-top: 60px;
}
.about .features .feature {
  margin-bottom: 30px;
}
.about .features .feature i {
  min-width: 70px;
  font-size: 42px;
  color: #00643c;
  float: left;
}
.about .features .feature .inner {
  overflow: hidden;
}
.about .features .feature .inner h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 7px;
}
.about .features .feature .inner p {
  margin-bottom: 0;
  font-size: 15px;
  color: #565656;
}

.big-features {
  padding: 75px 0;
}
.big-features .item {
  display: flex;
}
.big-features .item .image {
  width: 50%;
}
.big-features .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.25);
  outline-offset: -30px;
}
.big-features .item .content {
  width: 50%;
  padding: 60px;
  padding-right: 0;
}
.big-features .item:nth-child(2n + 1) .content {
  order: -1;
  padding-left: 0;
  padding-right: 60px;
}
.big-features .item:first-child .content {
  padding-top: 0;
}

.big-features .item:last-child .content {
  padding-bottom: 0;
}

.services {
  padding: 75px 0;
  background: #f1f1f1 url("../images/sky-bg.png") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.panel.services {
  background: transparent;
}
.services .services-carousel {
  position: relative;
  overflow: hidden;
}
.services .item {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.panel.services .item {
  margin-bottom: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.services .item .image {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #1d1d1d;
  overflow: hidden;
}
.services .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.services .item:hover .image img {
  opacity: 0.5;

  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.services .item .content {
  position: relative;
  padding: 30px;
  background-color: #ffffff;
  z-index: 1;
}
.services .item .content h4 {
  margin-bottom: 10px;
  text-transform: capitalize;
  font-size: 22px;
}
.services .item .content p {
  margin-bottom: 0;
  color: #565656;
  font-size: 15px;
}
.services .nav-buttons {
  margin-top: 40px;
  text-align: center;
}
.services .nav-buttons div {
  display: inline-block;
  width: 60px;
  line-height: 60px;
  margin: 0 2px;
  background-color: #ffffff;
  color: #00643c;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cities {
  padding: 75px 0;
}
.cities ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cities ul li {
  width: 25%;
  display: flex;
  align-items: center;
}
.cities ul li::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #00643c;
  margin-right: 15px;
  font-size: 17px;
}
.cities ul li a {
  display: block;
  padding: 12px 12px 12px 0;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

footer .top-bar {
  background: #00643c url("../images/abstract-bg.png") no-repeat center bottom/
    cover;
  padding: 50px 0;
}
footer .top-bar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .top-bar .phone {
  font-size: 32px;
  color: #fff;
}
footer .top-bar .phone a {
  color: rgba(255, 255, 255, 0.6);
}
footer .top-bar .phone a:hover {
  color: #fff;
}
footer .top-bar .buttons a:last-child {
  margin-left: 7px;
}
footer .bottom-bar {
  background-color: #121314;
  color: #787878;
}
footer .bottom-bar .row {
  padding: 75px 0;
}
footer .bottom-bar h3 {
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 20px;
  text-transform: uppercase;
}
footer .bottom-bar .about {
  padding: 0;
}
footer .bottom-bar .about img.logo {
  max-width: 100%;
  max-height: 60px;
  margin-bottom: 40px;
  object-fit: contain;
}
footer .bottom-bar .social {
  margin-top: 30px;
}
footer .bottom-bar .social nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .bottom-bar .social nav ul li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}
footer .bottom-bar .social nav ul li a {
  display: block;
  font-size: 20px;
}
footer .bottom-bar .social nav ul li a:hover {
  color: #00643c;
}
footer .bottom-bar .sitemap nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
footer .bottom-bar .sitemap nav ul li {
  margin-bottom: 20px;
}
footer .bottom-bar .sitemap nav ul li a {
  color: inherit;
}
footer .bottom-bar .sitemap nav ul li a:hover {
  color: #e8e8e8;
}
footer .bottom-bar .contact p i {
  color: #00643c;
}
footer .bottom-bar .contact p a:hover {
  color: #e8e8e8;
}
footer .bottom-bar .copy {
  padding: 15px 0;
  border-top: 1px solid #ffffff12;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .bottom-bar .copy div:last-child {
  text-align: right;
}

/* PAGES */

.banner {
  position: relative;
  height: 360px;
  background: #111 url("../images/banner.png") no-repeat center / cover;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.banner::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.banner h1 {
  padding: 0;
  margin: 50px 0;
  font-size: 56px;
  font-weight: bold;
  color: #fff;
}
.banner h1::first-letter {
  color: #00643c;
}

.panel {
  padding: 75px 0;
}

.gallery .item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  background-color: #1d1d1d;
  cursor: pointer;
}
.gallery .item::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 46px;
  color: #00643c;
  margin-right: 15px;
  z-index: 1;
  opacity: 0;

  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.gallery .item:hover:before {
  opacity: 1;
}
.gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.gallery .item:hover img {
  opacity: 0.5;

  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.contact .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
.contact .item .icon {
  min-width: 48px;
  margin-right: 20px;
  line-height: 48px;
  text-align: center;
  background-color: #00643c;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50%;
}
.contact .item .content {
  font-size: 18px;
  color: var(--secondary-text-color);
}
.contact .item .content h6 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #00643c;
}
.contact .map {
  margin-top: 75px;
  margin-bottom: -83px;
}
.contact .map iframe {
  width: 100% !important;
}

.mobile-menu {
  color: #fff;
  font-size: 24px;
  display: none;
}
.mobile-menu::before {
  content: "\f0c9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.sticky .mobile-menu {
  color: #00643c;
}

@media screen and (max-width: 1199.98px) {
  header .social {
    display: none;
  }
}

@media screen and (max-width: 991.98px) {
  .mobile-menu {
    display: block;
  }

  header .menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 10px 30px;
    background-color: #fff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    display: none;
  }
  header .menu nav ul {
    display: block;
  }
  header .menu nav ul li {
    margin-left: 0;
  }
  header .menu nav ul li a {
    padding: 10px 0;
    color: #232323;
  }
  header .menu nav ul li:hover > a {
    color: #fff;
  }
  header .menu nav ul li:hover > a {
    padding-left: 20px;
    margin-left: -20px;
  }
  header .menu nav ul li ul {
    position: relative;
    left: auto;
    top: auto;
  }
  header .menu nav ul li ul::after {
    display: none;
  }
  header .menu nav ul li .submenu {
    display: block;
  }

  .big-features .item {
    flex-direction: column;
  }
  .big-features .item .image {
    width: 100%;
  }
  .big-features .item .content {
    width: 100%;
    order: 1 !important;
    padding: 30px 0 !important;
  }

  .cities ul li {
    width: 33.33%;
  }

  footer .top-bar .wrapper {
    flex-direction: column;
    text-align: center;
  }
  footer .top-bar .buttons {
    margin-top: 20px;
  }
  footer .top-bar .buttons a {
    margin: 4px !important;
  }
  footer .bottom-bar h3 {
    margin-top: 30px;
  }
  footer .bottom-bar .copy {
    flex-direction: column;
    text-align: center;
  }
  footer .bottom-bar .copy div:last-child {
    margin-top: 10px;
    text-align: center;
  }

  .banner h1 {
    font-size: 46px;
  }
}

@media screen and (max-width: 767.98px) {
  .slider .slide .content h2 {
    font-size: 36px;
  }
  .slider .slide .content p {
    font-size: 16px;
  }
  .slider .slide .content .btn {
    font-size: 15px;
  }
  .slider .nav-btn {
    display: none;
  }

  .big-title {
    font-size: 28px;
    padding-bottom: 15px;
  }
  .big-title::after {
    width: 40px;
    height: 5px;
  }

  .cities ul li {
    width: 50%;
  }

  .banner h1 {
    font-size: 42px;
  }
}

@media screen and (max-width: 575.98px) {
  .slider .slide .content h2 {
    font-size: 26px;
  }
  .slider .slide .content p {
    font-size: 15px;
  }
  .slider .slide .content .btn {
    padding: 10px 20px;
  }

  footer .top-bar .phone {
    font-size: 30px;
  }
  footer .top-bar .phone a {
    display: block;
  }

  .banner h1 {
    font-size: 36px;
  }
}