@import url("reset.css");
@import url("fonts.css");

/* VARIABLES */
:root {
  /* COLORS */
  --color-background: #fff;
  --color-bg-secondary: #f4f7f9;
  --color-dark-1: #494949;
  --color-dark-blue: #001a33;
  --light-gray-1: #f2f2f2;
  --light-gray-2: #e1e4e6;
  --color-white: #fff;
  --color-black: #1c1b1b;
  --text-color: #657078;
  --primary-orange: #ff9933;

  /* BORDER RADIUS */
  --border-radius-8: 12px;
  --border-radius-12: 12px;
  --border-radius-24: 24px;
  --border-radius-32: 32px;
  --border-rounded: 100%;

  /* LINE HEIGHT */
  --line-height-115: 115%;
  --line-height-135: 135%;
  --line-height-150: 150%;
  --line-height-175: 175%;
  --line-height-200: 200%;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--color-background);
}

._lock {
  overflow: hidden;
}

.site-wrapper {
  min-height: 100vh;
}

.container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
}

.container-mid {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
}

.container-max {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.page-dark-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: -2;
}
.page-dark-overlay._active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.ds-none {
  display: none !important;
}

/***** BUTTONS *****/
a.view-more {
  max-width: 170px;
  width: 100%;
  padding: 17px 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  border: 3px solid var(--light-gray-2);
  border-radius: var(--border-radius-32);
  text-align: center;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

a.view-more i {
  margin-left: 10px;
  color: var(--primary-orange);
  font-size: 13px;
  transition: all 0.5s ease-in-out;
}

a.view-more:hover {
  background-color: var(--primary-orange);
  color: var(--color-white);
  border-color: var(--primary-orange);
}

a.view-more:hover i {
  color: var(--color-white);
}

.btn-wr-sl {
  margin-top: 60px;
}

.btn-wr-sl button {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  border-radius: var(--border-rounded);
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--primary-orange);
  border-radius: var(--border-rounded);
  width: 0;
  height: 0;
  transition: all 0.5s;
  z-index: 1;
}

.btn-wr-sl button:hover::before {
  width: 100%;
  height: 100%;
}
.btn-wr-sl button:hover {
  background-color: rgba(255, 179, 102, 0.7);
  border: 3px solid var(--primary-orange);
}
.btn-wr-sl button i {
  margin: 0;
  padding: 0;
  color: var(--color-dark-blue);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.btn-wr-sl button:hover i {
  color: var(--color-white);
}

.btn-wr-sl .line {
  margin: 0px 7px;
  background-color: var(--primary-orange);
  height: 1px;
  width: 40px;
}

.btn-wr-sl.cl-gr button {
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: var(--light-gray-2);
  border: unset;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl.cl-gr .line {
  margin: 0px 7px;
  background-color: var(--light-gray-2);
  height: 1px;
  width: 40px;
}
/***** End BUTTONS *****/

/***** Section *****/
.menu-icon {
  z-index: 5;
  display: block;
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
  margin-left: 5px;
  display: none;
}

.menu-icon span,
.menu-icon::before,
.menu-icon::after {
  left: 0;
  position: absolute;
  height: 10%;
  width: 100%;
  transition: all 0.5s ease;
  background-color: var(--color-black);
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  transform: perspective(1px) scale(1) translate3d(0, 0, 0);
}

.menu-icon::before {
  top: 0;
}

.menu-icon::after {
  bottom: 0;
}

.menu-icon span {
  top: 50%;
  transform: perspective(1px) scale(1) translate(0px, -50%)
    translate3d(0, 0, 0);
}

.menu-icon._active span {
  transform: scale(0) translate(0px, -50%);
}

.menu-icon._active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
}

.menu-icon._active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0px, 50%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-white);
  padding: 10px 10px;
  height: 100px;
}

header .nav-item .nav-item-link {
  font-size: 16px;
  color: var(--color-dark-blue);
  font-weight: 500;
  letter-spacing: 1.3px;
  transition: all 0.4s ease-in-out;
}

header .nav-item .nav-item-link:hover {
  color: var(--primary-orange);
}

.header-logo img {
  max-width: 175px;
  height: auto;
  margin: 0px 20px;
}

.desk-menu {
  width: 100%;
}

/***** End Section *****/

/***** Main *****/

main._pg {
  margin-top: 50px;
}

/***** main Banner *****/
.main-banner {
  position: relative;
  width: 100%;
  height: 100vh;
}
.main-banner .video-banner {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.main-banner .text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.main-banner .text-wrapper .text-items h2 {
  font-size: 72px;
  color: var(--color-white);
  font-weight: 500;
  line-height: var(--line-height-135);
}

.main-banner .text-wrapper .text-items p {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 400;
  line-height: var(--line-height-150);
}

.main-banner .text-wrapper .text-items a {
  font-size: 14px;
  color: var(--color-white);
  font-weight: 600;
  padding: 15px 20px;
  border: 2px solid var(--primary-orange);
  border-radius: var(--border-radius-8);
  transition: all 0.5s ease-in-out;
  letter-spacing: 1.2px;
}

.main-banner .text-wrapper .text-items a:hover {
  background-color: var(--color-dark-1);
  border-color: var(--color-dark-1);
}

/***** End main Banner *****/

/***** About Us Home Page *****/
.about-us-section {
  margin-top: 100px;
}

.about-us-section .content-wrapper {
  gap: 100px;
}

.about-us-section .text-wrapper {
  width: 32%;
  margin-left: 100px;
  color: var(--text-color);
  line-height: var(--line-height-135);
}

.about-us-section .text-wrapper.rv {
  width: 32%;
  margin-left: 0;
  margin-right: 100px;
  color: var(--text-color);
  line-height: var(--line-height-135);
}

.about-us-section .text-wrapper h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: var(--line-height-150);
}
.about-us-section .text-wrapper p {
  font-weight: 500;
}
.about-us-section .text-wrapper b {
  font-weight: 600;
}

.about-us-section .slider-wrapper {
  width: 68%;
  /* border: 1px solid red; */
}

/* .about-us-section .slider-wrapper {
  max-height: 650px;
} */

.about-us-section .slider-wrapper .img-slide-wr {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 48% 0;
}

.about-us-section .slider-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/***** End About Us Home Page *****/

/***** Gallery section Homepage *****/

.gallery {
  margin-top: 75px;
  padding: 0px 15px;
}

.gallery-heading {
  width: 100%;
  margin-bottom: 20px;
}

.gallery-heading .text-wrapper.pg {
  width: 100%;
}

.gallery-heading .text-wrapper.pg h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.gallery-heading h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.gallery-heading p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.gallery-slide {
  width: 100%;
  position: relative;
  padding: 0 0 20% 0;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-slide.centered {
  height: 300px;
  display: flex;
  background: #eee;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(0.8);
}

.swiper-slide.centered.swiper-slide-active {
  transform: scale(1);
}

.gallery-wrapper-modal,
.gallery-slider-single {
  max-width: 1000px;
  width: 100%;
}

.gallery-slide-single {
  width: 100%;
  position: relative;
  padding: 0 0 70% 0;
}

.gallery-slide-single img,
.gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.gallery-slide img:hover {
  transform: scale(1.1);
}

/***** End Gallery section Homepage *****/

/***** Our Rooms *****/

.pod-detailed {
  margin-top: 60px;
  margin-bottom: 100px;
}

.pod-det-hd-wr {
  margin-bottom: 40px;
  padding-left: 10px;
  width: 100%;
  gap: 20px;
}

.pod-det-hd-wr .text-wrapper {
  max-width: 600px;
  width: 100%;
  gap: 20px;
}

.pod-det-hd-wr a.view-more {
  margin-bottom: 0;
}

.pod-det-hd-wr h2 {
  font-size: 42px;
  line-height: var(--line-height-135);
  color: var(--color-dark-blue);
  font-weight: 500;
}

.pod-det-hd-wr p {
  font-size: 16px;
  line-height: var(--line-height-150);
  font-weight: 400;
  color: var(--text-color);
  max-width: 500px;
  width: 100%;
}

.pod-detail__slide {
  gap: 100px;
}

.pod-detail__slide .img-wrapper {
  max-width: 50%;
  width: 100%;
  position: relative;
  padding: 0 0 40% 0;
  border-radius: var(--border-radius-24);
  overflow: hidden;
}

.pod-detail__slide .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.pod-detail__slide .prod-description {
  max-width: 40%;
  width: 100%;
  gap: 10px;
}

.pod-detail__slide .prod-description h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  width: 100%;
}

.pod-detail__slide .prod-description p {
  max-width: 85%;
  width: 100%;
  font-size: 18px;
  line-height: var(--line-height-150);
  font-weight: 300;
  color: var(--text-color);
  margin-bottom: 10px;
}

.pod-features {
  max-width: 80%;
  width: 100%;
  gap: 20px;
}

.pod-features li {
  max-width: 45%;
  width: 100%;
  /* gap: 8px; */
}

.pod-features li h4 {
  font-size: 22px;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  font-weight: 500;
}

.pod-features li p {
  font-size: 17px;
  color: var(--text-color);
  line-height: var(--line-height-135);
  font-weight: 400;
}

.explore__btn {
  max-width: 60%;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px;
  color: var(--color-white);
  border-radius: var(--border-radius-32);
  background-color: var(--primary-orange);
  border: 3px solid var(--primary-orange);
  margin-top: 20px;
  gap: 20px;
  transition: all 0.5s ease-in-out;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.explore__btn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  content: "";
  width: 50%;
  height: 120%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 1s ease-in-out;
}

.explore__btn:hover {
  background-color: var(--color-dark-1);
  border-color: var(--color-dark-1);
}

.explore__btn:hover::before {
  left: 125%;
}

.btn-wr-sl {
  margin-top: 60px;
}

.btn-wr-sl button {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  border-radius: var(--border-rounded);
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--primary-orange);
  border-radius: var(--border-rounded);
  width: 0;
  height: 0;
  transition: all 0.5s;
  z-index: 1;
}

.btn-wr-sl button:hover::before {
  width: 100%;
  height: 100%;
}
.btn-wr-sl button:hover {
  background-color: rgba(66, 184, 131, 0.7);
  border: 3px solid var(--primary-orange);
}
.btn-wr-sl button i {
  margin: 0;
  padding: 0;
  color: var(--color-dark-blue);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.btn-wr-sl button:hover i {
  color: var(--color-white);
}

.btn-wr-sl .line {
  margin: 0px 7px;
  background-color: var(--primary-orange);
  height: 1px;
  width: 40px;
}

.btn-wr-sl.cl-gr button {
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: var(--light-gray-2);
  border: unset;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl.cl-gr .line {
  margin: 0px 7px;
  background-color: var(--light-gray-2);
  height: 1px;
  width: 40px;
}
/***** End Our Rooms *****/

/***** Promo Offer Homepage *****/

.promo-offer {
  padding: 100px 10px;
  background-color: var(--color-bg-secondary);
  margin-top: 50px;
}

.promo-offer__column {
  gap: 15px;
}

.promo-offer h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
  font-weight: 500;
  max-width: 650px;
  width: 100%;
  text-shadow: 0px 0px 13px rgba(66, 184, 131, 0.33);
}

.promo-offer p {
  font-size: 18px;
  line-height: var(--line-height-150);
  font-weight: 300;
  max-width: 500px;
  width: 100%;
  color: var(--text-color);
}

.promo-offer .call__action {
  font-size: 18px;
  font-weight: 500;
  max-width: 250px;
  width: 100%;
  padding: 18px 30px;
  border-radius: var(--border-radius-32);
  background-color: var(--primary-orange);
  border: 3px solid var(--primary-orange);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px,
    rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px,
    rgba(0, 0, 0, 0.07) 0px 32px 64px;
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.promo-offer .call__action:hover {
  background-color: transparent;
  border-color: var(--light-gray-2);
  transition: all 0.3s ease-in-out;
  box-shadow: unset;
  color: var(--color-dark-blue);
}

/***** End Promo Offer Homepage *****/

/***** End Main *****/

/***** Contact Page *****/
.contact-pg {
  margin-top: 50px;
}

.contact-pg-wrapper {
  gap: 100px;
}

.contact-pg .text-wrapper {
  width: 50%;
  gap: 20px;
}

.contact-pg .text-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.contact-pg .text-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--text-color);
}

.contact-pg .text-wrapper p span {
  color: var(--text-color);
  font-weight: 600;
}

.contact-pg .text-wrapper .contacts {
  gap: 10px;
}

.contact-pg .text-wrapper .contacts li {
  margin-bottom: 10px;
}

.contact-pg .text-wrapper .contacts a {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

.contact-pg .text-wrapper .contacts li i {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 18px;
  background-color: var(--primary-orange);
  color: var(--color-white);
  border-radius: var(--border-rounded);
}

.form-wrapper {
  width: 50%;
  gap: 20px;
}

.form-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.form-wrapper form {
  max-width: 100%;
  gap: 30px;
}

iframe.map {
  margin-top: 50px;
  margin-bottom: 100px;
}

/***** End Contact Page *****/

/***** Page Intro *****/
.page-intro {
  position: relative;
  width: 100%;
  padding: 0 0 45% 0;
}

.page-intro.min {
  position: relative;
  width: 100%;
  padding: 0 0 37.5% 0;
}

.page-intro img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.page-intro.min img {
  object-position: 0 0;
}

.page-intro .intro-text-wrapper {
  position: absolute;
  width: 100%;
  bottom: 100px;
  left: 0;
}

.page-intro .page-intro-txt {
  color: var(--color-white);
  gap: 10px;
}

.page-intro .breadcrumbs {
  gap: 7px;
}

.page-intro .breadcrumbs a {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
}

.page-intro .page-intro-txt h2 {
  font-size: 62px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h2.ttl-min {
  font-size: 34px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 135%;
  margin-top: 15px;
  letter-spacing: 1.4px;
}

.page-intro .page-intro-txt p {
  font-size: 18px;
  font-weight: 300;
  line-height: 175%;
  max-width: 600px;
  width: 100%;
}
/***** End Page Intro *****/

/***** PRODUCT PAGE *****/

.page-desc {
  margin-top: 50px;
}

.prod-desc {
  gap: 15px;
}
.prod-desc h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.prod-desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.specifications {
  margin-top: 75px;
}

.spec-heading h3 {
  font-size: 36px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  margin-bottom: 35px;
}

.spec-wrapper {
  gap: 100px;
}

.spec-wrapper .img-wrapper {
  max-width: 650px;
  width: 100%;
  position: relative;
  padding: 0 0 45% 0;
}

.spec-wrapper .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  filter: brightness(80%);
}

.spec-list {
  max-width: 580px;
  width: 100%;
  gap: 15px;
}

.spec-list h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: var(--line-height-150);
}

.spec-list .item {
  gap: 5px;
}

.spec-list .item h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.spec-list .item p {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-150);
}

.floor-paln {
  margin-top: 100px;
  margin-bottom: 100px;
}

.floor-paln h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 20px;
}

.floor-paln .img-wrapper img {
  max-width: 950px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features-wrapper {
  margin-top: 50px;
  margin-bottom: 75px;
}

.features-wrapper ul {
  max-width: 1000px;
  width: 100%;
  gap: 20px;
}

.features-wrapper ul li {
  font-size: 17px;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.features-wrapper ul li i {
  margin-right: 15px;
  color: var(--primary-green);
  font-size: 35px;
}

.features-wrapper h3 {
  margin-bottom: 30px;
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.related-prod.pg {
  background-color: var(--color-bg-secondary);
}

.rel-hd-wr {
  margin-bottom: 30px;
  gap: 10px;
}

.rel-hd-wr h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.rel-hd-wr p {
  font-size: 16px;
  line-height: var(--line-height-150);
  font-weight: 400;
  color: var(--text-color);
}

.related-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.related-slide::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 7px;
  width: 100%;
  background-color: var(--primary-green);
  transition: all 0.3s ease-in-out;
}

.related-slide:hover::after {
  bottom: 0px;
}

.related-slide .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 70% 0;
}

.related-slide .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(60%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.related-slide .slide-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 1;
  gap: 5px;
}

.related-slide .slide-text h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
}

.related-slide .slide-text h4 {
  font-size: 16px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
  letter-spacing: 1.4px;
}

.related-slide:hover .img-wrapper img {
  filter: brightness(40%);
}

/***** End PRODUCT PAGE *****/

/***** Blog Homepage section *****/

.view-more-itm {
  margin-bottom: 50px;
}
.blog__homepage {
  margin-top: 75px;
  padding: 0px 15px;
  margin-bottom: 75px;
}

.blog__row {
  gap: 50px 30px;
}

.blog-heading {
  width: 100%;
  margin-bottom: 20px;
}

.blog-heading h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.blog-heading p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.blog-item {
  max-width: 31%;
  width: 100%;
  gap: 15px;
}

.blog-item .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 65% 0;
}

.blog-item .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  transition: all 0.3s ease-in-out;
}

.blog-item .date-wrapper {
  gap: 10px;
}

.blog-item .date-wrapper span {
  font-size: 12px;
  line-height: var(--line-height-135);
  color: var(--text-color);
}

.blog-item .date-wrapper i {
  font-size: 12px;
  line-height: var(--line-height-135);
  color: var(--text-color);
}

.blog-item h3 {
  font-size: 22px;
  line-height: var(--line-height-135);
  color: var(--color-dark-blue);
  font-weight: 500;
}

.blog-item p {
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  font-weight: 300;
}

.blog_btn {
  max-width: 200px;
  width: 100%;
  padding: 15px 30px;
  outline: none;
  border: none;
  border-radius: var(--border-radius-24);
  color: var(--color-white);
  background-color: var(--primary-green);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.blog_btn span {
  position: relative;
}

.blog_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--link-color);
  transition: all 0.3s ease-in-out;
}

.blog-item:hover .blog_btn::before {
  top: 0;
}

.blog-item:hover .img-wrapper img {
  filter: grayscale(1);
}

.post-content {
  margin: 50px 10px;
}
.post-content p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: normal;
  line-height: var(--line-height-175);
}

.post-content h1 {
  font-size: 2em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h2 {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h3 {
  font-size: 1.17em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h4 {
  font-size: 1em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h5 {
  font-size: 0.83em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h6 {
  font-size: 0.67em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

/***** End Blog Homepage section *****/

/***** Footer *****/

footer {
  width: 100%;
  background-color: #1c1b1b;
  margin-top: auto;
}

.footer-nav {
  padding: 48px 0px;
}

.footer-nav-section {
  max-width: 307px;
  width: 100%;
  padding: 0px 15px;
}

.footer-nav-row .footer-info {
  gap: 22px;
}
.footer-nav-row .footer-info .footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.footer-nav-row .footer-info h2 {
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}

.footer-nav-row .footer-info .footer-socials {
  gap: 12px;
}
.footer-nav-row .footer-info .footer-socials img {
  width: 22px;
  height: auto;
}
.footer-nav-row .footer-info p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
}

.footer-nav-row .footer-nav-section:nth-child(2) {
  padding-left: 48px;
}

.footer-nav-row .footer-nav-links h3 {
  font-size: 22px;
  line-height: var(--line-height-150);
  color: var(--color-white);
  font-weight: bold;
  margin-bottom: 15px;
}
.footer-nav-row .footer-nav-links .footer-link {
  margin-bottom: 8px;
}
.footer-nav-row .footer-nav-links .footer-link a {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--color-white);
  transition: all 0.25s ease-in-out;
}

.footer-nav-row .footer-nav-section:last-child .footer-link a {
  font-size: 16px;
  line-height: 24px;
}

.footer-nav-row .footer-nav-links .footer-link a:hover {
  color: var(--primary-orange);
}

.bottom-footer {
  height: 72px;
  background-color: #1c1b1b;
  width: 100%;
}
.bottom-footer h4 {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
}

/***** End Footer *****/

/* MODAL WINDOW */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.modal-overlay._active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay .close-modal-window {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--color-white);
  font-size: 40px;
  cursor: pointer;
  transition: all 0.6s ease-in-out;
}

.modal-body {
  transition: all 0.6s ease-in-out;
  transition-delay: 0.2s;
  position: relative;
  bottom: -100%;
  opacity: 1;
  visibility: hidden;
}

.modal-overlay._active .modal-body {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.modal-overlay .close-modal-window:hover {
  transform: rotate(90deg);
  color: #ff8080;
}

/* MODAL WIDNOW */

/***** CONTACT MODAL WINDOW *****/

.contact-modal-body {
  max-width: 800px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--border-radius-24);
  overflow: hidden;
  margin: 10px;
}

.contact-modal-body .img-wrapper {
  max-width: 40%;
  width: 100%;
  position: relative;
  padding: 0 0 66.25% 0;
}

.contact-modal-body .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-modal-body .text-wrapper {
  padding: 35px 25px;
  gap: 10px;
}

.contact-modal-body .text-wrapper h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
}

.contact-modal-body .text-wrapper h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--text-color);
  margin-bottom: 15px;
}

.contact-form-popup {
  max-width: 80%;
  width: 100%;
  gap: 20px;
}

.contact-form-popup input {
  width: 100%;
  background-color: var(--light-gray-1);
  border: none;
  padding: 15px 20px;
  border-radius: var(--border-radius-24);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-dark-blue);
  outline: none;
}

.contact-form-popup .get-quote {
  border: none;
  color: var(--color-white);
  background-color: var(--primary-orange);
  font-size: 18px;
  line-height: var(--line-height-150);
  transition: all 0.6s ease-in-out;
  margin-top: 10px;
  border-radius: var(--border-radius-12);
  padding: 15px 0;
}

.contact-form-popup .get-quote:hover {
  animation: none;
  background-color: var(--color-dark-1);
}

/***** End CONTACT MODAL WINDOW *****/
