@import url("https://fonts.googleapis.com/css2?family=Boogaloo&family=Lobster&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999 !important;
  padding: 0;
  box-shadow: 0px 0px 5px gainsboro;
  width: 100%;
  background-color: rgba(199, 185, 185, 0.5411764706) !important;
  animation-name: example;
  animation-duration: 1s;
  transition: top 500ms ease-in;
  box-shadow: 0px 0px 5px gainsboro;
}

@keyframes example {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}
@font-face {
  font-family: "Astute";
  src: url("../fonts/Astute Light SSi Light.ttf");
}
@font-face {
  font-family: "MYRIADPRO";
  src: url("../fonts/MYRIADPRO-REGULAR.OTF");
}
@font-face {
  font-family: "MYRIADPRO-SEMIBOLD";
  src: url("../fonts/MYRIADPRO-SEMIBOLD.OTF");
}
body {
  font-family: "MYRIADPRO" !important;
}
body a {
  text-decoration: none !important;
}

h2,
h3,
h5 {
  font-family: "Playfair Display", serif !important;
  font-size: 30px !important;
}

.navbar .nav-item {
  margin-right: 15px;
}
.navbar .nav-item a {
  font-family: "Astute" !important;
  font-size: 18px !important;
  color: #000;
  font-weight: 500 !important;
  position: relative;
}
.navbar .nav-item a::before {
  content: "";
  position: absolute;
  background-color: #284948;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item a:hover {
  color: #284948;
}
.navbar .nav-item a:hover::before {
  width: 100%;
}

.navbar-brand img {
  height: 70px;
}
/* POPUP*/
#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
  font-family: Arial, sans-serif;
}

/* Popup Heading */
#popup h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Popup Text */
#popup p {
  color: #555;
  margin-bottom: 15px;
}

/* Popup Image */
#popup img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Popup Close Button */
#popup button {
  margin-top: 20px;
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*POPUP*/

.animated-text {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 0.6s ease, transform 1s ease;
}

.swiper-slide-active .animated-text {
  opacity: 1;
  transform: translateY(0);
}

.swiper {
  width: 100% !important;
  height: 85% !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

#banner1 {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  height: 85vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3490196078);
}

#banner2 {
  background: url("../images/banner2.png") bottom no-repeat;
  width: 100%;
  height: 85vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5019607843);
}

#banner3 {
  background: url("../images/banner3.png") center no-repeat;
  width: 100%;
  height: 85vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5019607843);
}

.banner_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 85vh;
  color: #fff;
  width: 40%;
  margin: 0 auto;
}
.banner_title .heading {
  background: rgba(255, 255, 255, 0.1921568627);
  padding: 25px;
}
.banner_title .heading h1 {
  text-transform: uppercase;
  font-family: "Playfair Display", serif !important;
  font-weight: 900 !important;
}

.about_warpper {
  border-left: 5px solid #8b9467;
  padding-left: 10px;
}
.about_warpper h2 {
  text-transform: uppercase;
}
.about_warpper p {
  text-align: justify;
}

.col__box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.box1 {
  transition: all 0.3s ease-in-out;
  overflow: hidden !important;
}
.box1 img {
  width: 100%;
  height: 100%;
}

.col__box > div:nth-child(1) {
  background-color: #536d6d;
  color: #fff;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  text-align: start;
}
.col__box > div:nth-child(1) h5 {
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.col__box > div:nth-child(4) {
  background-color: #8b9467 !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 15px;
}
.col__box > div:nth-child(4) h5 {
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.col__box > div:nth-child(6) {
  background-color: #e8eae1 !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 15px;
  color: #000;
}
.col__box > div:nth-child(6) h5 {
  border-bottom: 3px solid #000;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.col__box > div:nth-child(7) {
  background-color: #284948 !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 15px;
  color: #fff;
}
.col__box > div:nth-child(7) h5 {
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.col__box > div:nth-child(9) {
  background-color: #8b9467 !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 15px;
  color: #fff;
}
.col__box > div:nth-child(9) h5 {
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.col__box > div:nth-child(12) {
  background-color: #e8eae1 !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 15px;
  color: #000;
}
.col__box > div:nth-child(12) h5 {
  border-bottom: 3px solid #000;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.sec_bg {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 17%, rgb(40, 73, 72) 17%, rgb(40, 73, 72) 57%, rgb(139, 148, 103) 57%);
}

.why_chooseimg img {
  width: 100%;
}

.why_chooselist {
  width: 70%;
  margin: 0 auto;
}
.why_chooselist ul li {
  color: #fff;
  position: relative;
}
.why_chooselist ul li::marker {
  font-size: 30px;
}
.why_chooselist ul li::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #fff;
  height: 120px;
  left: -22px;
  top: -15px;
}
.why_chooselist ul li h6 {
  font-family: "MYRIADPRO-SEMIBOLD" !important;
  font-size: 18px;
}

.col_bg {
  background-color: #3f3f3f;
}

.flex_title {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-top: 55px;
}

.col-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.test_icon {
  position: relative;
  text-transform: uppercase;
  text-align: center;
}

.test_icon::after {
  content: "\ec52";
  font-family: "remixicon";
  font-size: 50px;
  color: rgba(162, 165, 151, 0.5764705882);
  position: absolute;
  right: 50px;
}

.test_icon::before {
  content: "\ec51";
  font-family: "remixicon";
  font-size: 50px;
  color: rgba(162, 165, 151, 0.5764705882);
  text-align: end !important;
  position: absolute;
  left: 0;
  top: 0;
  left: 50px;
}

.testimonial-card {
  position: relative;
  width: auto;
  background: white;
  border-radius: 20px;
  padding: 55px 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 55px 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.profile img {
  height: 100px !important;
  width: 100px !important;
  margin: 0 auto;
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  border: 2px solid #8b9467;
  padding: 10px;
  border-radius: 50%;
}

.stars {
  margin-left: auto;
  color: #f9c846;
  font-size: 1.2em;
}

.message {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.sec__2 {
  background: url("../images/Layer-127.png") center no-repeat;
  width: 100%;
  height: 150px;
  background-size: cover;
  margin-top: -140px;
}

.footer_bg {
  background: url("../images/footer-bg.png") center no-repeat;
  width: 100%;
  height: auto;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3490196078);
}
.footer_bg .form-title {
  text-transform: uppercase;
  padding-right: 15px;
}
.footer_bg .conatctus_form {
  background-color: #fff;
  width: 85% !important;
  margin: 0 auto;
  border-radius: 30px;
  padding: 25px;
}
.footer_bg .conatctus_form .main_form {
  width: 90%;
  margin: 0 auto;
}
.footer_bg .btn1 {
  background-color: #8b9467;
  border: 0;
  width: 80%;
  display: inline-block;
  padding: 15px;
  color: #fff;
  border-radius: 8px;
  text-transform: uppercase;
}
.footer_bg .btn1:hover {
  background-color: #284948;
}

.bottom_bg {
  background-color: #284948;
}
.bottom_bg .copy-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.bottom_bg .copy-right a {
  color: #fff;
  font-size: 14px;
}

.about_banner {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  height: 60vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3843137255);
}
.about_banner .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
}
.about_banner .banner_title h1 {
  font-family: "Playfair Display", serif !important;
  border-bottom: 2px solid #fff;
}

.sec_bg2 {
  background-color: #284948;
}

.card_fld {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 380px;
}
.card_fld .card-flex {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  height: 380px;
  width: 100%;
  padding: 25px 25px;
  display: flex;
  align-items: start;
  justify-content: center;
}
.card_fld .card-flex h2 {
  font-size: 25px !important;
  padding-bottom: 10px;
}
.card_fld .card-flex p {
  text-align: justify;
}

.row_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  width: 100%;
}
.row_grid .col_box1 {
  transition: all 0.3s ease-in-out;
}
.row_grid .col_box1:hover {
  background-color: #284948;
  color: #fff;
}
.row_grid .col_box1 .icon-img {
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  margin: 10px auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row_grid .col_box1 .icon-img img {
  height: 50px;
  width: 50px;
}
.row_grid .col_box1 .col_content {
  text-align: center;
}

.row_grid > div:nth-child(odd) {
  background-color: #536d6d;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  padding: 15px;
  color: #fff;
  border-radius: 5px;
  border-bottom: 8px solid #8b9467;
}

.row_grid > div:nth-child(even) {
  background-color: #8b9467;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  padding: 15px;
  border-radius: 5px;
  border-bottom: 8px solid #536d6d;
}

.card_col {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #fff;
  padding: 10px 10px 0 10px;
  text-align: center;
  border-radius: 5px;
  margin: 10px 0;
}
.card_col p {
  padding: 15px;
  margin-bottom: 0 !important;
}

.contact__sec {
  background-color: #8b9467;
}

#form_col {
  background-color: #284948;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  margin: 0 auto;
}
#form_col label {
  color: #fff;
  padding-bottom: 10px;
  font-family: "Astute";
}
#form_col .btn1 {
  background-color: #8b9467;
  border: none;
  color: #fff;
  padding: 8px 25px;
}
#form_col .btn1:hover {
  background-color: #536d6d;
}
#form_col .btn1 i:hover {
  transform: translateX(-50px);
  transition: transform 0.3s ease;
}

.col__flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.contact_info h3 {
  color: #fff;
}
.contact_info ul {
  padding-left: 0 !important;
}
.contact_info ul li {
  margin-bottom: 10px;
  font-size: 18px;
  list-style: none;
  display: flex;
  color: #fff;
  font-family: "Astute";
}
.contact_info ul li span i {
  padding-right: 10px;
  color: #fff;
}
.contact_info ul li a {
  color: #fff;
}

.company-pr {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 25px;
}

.time_content {
  color: #fff;
  padding-bottom: 15px;
  font-family: "Astute";
}

.company_list ul li {
  margin-bottom: 15px;
  padding-left: 10px;
}
.company_list ul li::marker {
  content: "\f2e4";
  background-color: #284948;
  font-family: "remixicon";
  font-size: 20px;
}

.services_box {
  color: #fff;
  background-color: #8b9467;
  text-align: center;
  padding: 25px;
  border-radius: 10px;
}
.services_box .data_title {
  font-size: 18px !important;
}/*# sourceMappingURL=style.css.map */