@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
/* ===== Max-Width ===== */
/* ===== Colors ===== */
/* ===== Font ===== */
/* ===== Font size ===== */
/* 64px */
/* 48px */
/* 40px */
/* 32px */
/* 28px */
/* 20px */
/* 16px */
/* 14px */
/* ===== Font weight ===== */
/* ===== z index ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  position: relative;
  height: 100%;
  margin: 0;
  line-height: 1.5 !important;
}

html {
  scroll-behavior: smooth;
  margin: 0;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #010a11;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700 !important;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 4rem !important;
}

h2 {
  font-size: 3rem !important;
}

h3 {
  font-size: 2.5rem !important;
}

h4 {
  font-size: 2rem !important;
}

h5 {
  font-size: 1.75rem !important;
}

@media (max-width: 1023px) {
  h1 {
    font-size: 3rem !important;
  }
  h2 {
    font-size: 32px !important;
  }
  h3 {
    font-size: 2rem !important;
  }
  h4 {
    font-size: 1.75rem !important;
  }
  h5 {
    font-size: 1.25rem !important;
  }
}
span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

ul {
  list-style: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

input {
  all: unset;
  height: 3.5rem;
  background-color: #fafafa;
}

button {
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* ===== REUSABLE CSS CLASSES ===== */
.section {
  height: auto;
  overflow: hidden;
  padding: 8rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .section {
    padding: 5rem 0;
  }
}
.section__title {
  font-size: 4rem;
}
.section__subtitle {
  font-size: 2.5rem;
}
.section__desc {
  font-size: 1.75rem;
  font-family: "Montserrat", sans-serif;
  line-height: 2.4rem;
}

.top-section {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .top-section {
    margin-top: 100px;
  }
}

.container {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 1rem;
}

.button {
  display: inline-flex;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  text-align: center;
  background-color: #235347;
  color: #fafafa;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.button:hover {
  background-color: #071E1A;
}

.button-l {
  background-color: #8eb69b;
}

.button-t {
  border: 2px solid #0B2B26;
  color: #0B2B26;
  background-color: transparent;
  font-weight: bold;
}
.button-t:hover {
  background-color: #0B2B26;
  color: #fafafa;
}

.custom-ellipsis {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.contact-icon {
  width: 20px;
  height: auto;
}

.header-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

.header-top {
  max-width: 1200px;
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: white;
  padding: 0.5rem;
  font-weight: bold;
}

.header {
  display: flex;
  height: 120px;
  background-color: #fafafa;
  color: #010a11;
  transition: all 1s;
  box-shadow: 5px 0 50px rgba(65, 37, 11, 0.1450980392);
  align-items: center;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .header {
    height: 100px;
  }
}

.scroll-header {
  height: 80px;
}

.logo {
  max-width: 250px;
  height: 80px;
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1023px) {
  .logo {
    height: 80px;
  }
}

.scroll-header .logo {
  height: 70px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 1rem;
}
@media (max-width: 1023px) {
  .nav .nav-menu {
    position: absolute;
    top: 0;
    right: -120%;
    transition: all 0.3s ease-in-out;
    background-color: #010a11;
    color: #fafafa;
    height: 100vh;
  }
}
.nav .nav-menu ul {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style-type: none;
  justify-content: flex-end;
}
@media (max-width: 1023px) {
  .nav .nav-menu ul {
    flex-direction: column;
    width: 100vw;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    overflow: scroll;
  }
}
.nav .nav-menu ul li {
  padding: 6px 0;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .nav .nav-menu ul li {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.nav .nav-menu ul li a {
  position: relative;
  display: block;
  padding: 4px 0;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  font-size: 15px;
  text-align: center;
}
.nav .nav-menu ul li a::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #8eb69b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.nav .nav-menu ul li a:hover {
  color: #8eb69b;
}
.nav .nav-menu ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav .sub-menu {
  display: flex;
  justify-content: flex-start !important;
  gap: 1rem !important;
  position: absolute;
  top: 100%;
  left: -20px;
  flex-direction: column;
  gap: 0;
  width: 180px;
  height: 0;
  padding: 1rem;
  background-color: #071E1A;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.nav .sub-menu li a {
  padding: 0;
  text-align: center;
  color: #fafafa;
  height: 0;
  overflow: hidden;
}
.nav .sub-menu-arrow {
  padding: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

#menu-item-13 > div {
  margin-right: -1rem;
}
@media (max-width: 1023px) {
  #menu-item-13 > div {
    margin-left: 2rem;
  }
}

.sub-menu-on {
  height: 520px !important;
  opacity: 1 !important;
  visibility: visible !important;
}
@media (max-width: 1023px) {
  .sub-menu-on {
    height: 0;
    opacity: 0;
    visibility: hidden;
    position: unset !important;
  }
}
.sub-menu-on li a {
  height: 50px !important;
}

.rotate {
  transform: rotate(180deg);
}

.nav__icons {
  font-size: 2rem;
  cursor: pointer;
  z-index: 9999;
}

.nav__close {
  display: none;
  color: #fafafa;
}

.nav__toggle {
  display: none;
}
@media (max-width: 1023px) {
  .nav__toggle {
    display: block;
  }
}

.show-menu {
  right: 0 !important;
}

.show-icon {
  display: block !important;
}

.hide-icon {
  display: none !important;
}

.footer-nav ul {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-nav li {
  font-weight: bold;
  transition: all 0.3s;
  text-transform: uppercase;
}
.footer-nav li:hover {
  color: #8eb69b;
}

.social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social svg {
  width: 24px;
  height: 24px;
}

.footer-copy {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  background-color: #235347;
  text-align: center;
  padding: 1rem;
  color: #fafafa;
}
@media (max-width: 767px) {
  .footer-copy {
    bottom: auto;
  }
}

@media (max-width: 767px) {
  .logo img {
    width: 150px;
  }
}

.title-line {
  width: 150px;
  height: 1px;
  background-color: #fafafa;
}

#menu-item-536 {
  padding: 1rem 1.5rem;
  background: #0B2B26;
  color: white;
  transition: all 0.3s;
}
#menu-item-536:hover {
  background-color: #071E1A;
}

.menu-item-wrapper {
  display: flex;
  align-items: center;
}

.footer-nav li:last-child {
  padding: 1rem 1.5rem;
  background: #235347;
  color: white;
  transition: all 0.3s;
}
.footer-nav li:last-child:hover {
  background-color: #071E1A;
}

.services-desc li {
  margin-bottom: 5px;
}
.services-desc li:before {
  content: url(./assets/images/check.svg);
  margin-right: 10px;
}

.account-line {
  margin: 3rem 0;
  border-bottom: 2px solid #8eb69b;
}

.account-line-last {
  display: none;
}

.home-project {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.home-project img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-project .home-project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
  background-image: linear-gradient(0deg, rgb(11, 43, 38) 0%, rgb(11, 43, 38) 10%, rgba(0, 0, 0, 0) 60%);
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  opacity: 1;
  transition: all 0.3s;
}
.home-project:hover img {
  transform: scale(1.1);
}
.home-project:hover .home-project-overlay {
  opacity: 0;
  visibility: hidden;
}

.bottom-section-img {
  height: 500px;
}
.bottom-section-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.social-wrap {
  width: 45px;
  height: 45px;
  background-color: #235347;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.social-wrap:hover {
  background-color: #8eb69b;
}

.team-photo {
  max-width: 200px;
  height: 250px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 767px) {
  .team-photo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 639px) {
  .team-photo img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 639px) {
  .team-photo {
    max-width: 500px;
    height: 400px;
    margin: auto;
  }
}

.team-desc {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-desc span {
  font-size: 18px;
}
@media (max-width: 639px) {
  .team-desc {
    text-align: center;
  }
}

.team-arrow img {
  filter: invert(36%) sepia(14%) saturate(506%) hue-rotate(87deg) brightness(88%) contrast(93%);
}

.expand {
  text-overflow: inherit;
  display: block;
}

.team-rotate {
  transform: rotate(-90deg) !important;
}

.project-image {
  height: 100%;
  min-height: 300px;
}
.project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem;
  transition: all 1s;
  bottom: -180px;
}
.project-overlay:hover {
  bottom: 0;
}
@media (max-width: 767px) {
  .project-overlay {
    bottom: -165px;
  }
}

.project-desc-wrap {
  height: 200px;
}

.hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero-video {
    display: none;
  }
}

.testi-desc p {
  margin-bottom: 0.5rem;
}

.home-services-icon {
  width: 60px;
  height: 50px;
}
.home-services-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#menu-item-420 a {
  height: 100% !important;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  margin: auto;
  background: white;
  display: flex;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

#gfCalModal .modal-content{
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  position: relative;
}
#gfCalModal .close{
  color: black;
}
#gfCalModal textarea{
  color: black;
}

#resultBox p{
  font-size: 15px;
}

.gform_wrapper input::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder {
  color: #8eb69b;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
  color: #8eb69b;
}

.gform_wrapper.gravity-theme label, .gform_wrapper.gravity-theme legend {
  font-weight: 400 !important;
  color: #fafafa;
  margin: 8px 0 0 !important;
  font-size: 15px !important;
}

.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=file],
.gform_wrapper.gravity-theme textarea,
.gform_wrapper.gravity-theme select {
  background: transparent;
  border: 1px solid #fafafa;
  font-weight: 400;
  height: 2.8rem;
  border-radius: 8px;
  padding-left: 1rem !important;
  color: white;
}

.gform_wrapper.gravity-theme input[type=submit] {
  background-color: #0B2B26;
  padding: 0.5rem 5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin: 1rem auto 0;
}

.gform_wrapper.gravity-theme input[type=submit]:hover {
  background-color: #071E1A;
}

.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
  padding: 0 !important;
}

.gform_required_legend {
  display: none;
}

.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
  background: transparent !important;
  color: #235347 !important;
  font-size: 14px !important;
  border: none !important;
  padding: 0 !important;
}

.gform_validation_errors h2 {
  font-size: 14px !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 400 !important;
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  border: 1px solid #ffa895 !important;
}

.gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error legend, .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gform_wrapper.gravity-theme [aria-invalid=true] + label, .gform_wrapper.gravity-theme label + [aria-invalid=true] {
  color: #ffa895 !important;
}

.gfield_required {
  color: #8eb69b;
}

.gform_confirmation_message {
  color: white;
  text-align: center;
}

.gform_confirmation_message_3{
  color: black;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: visible !important; /* Allow vertical overflow */
}

.modal-base {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px !important;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .modal-base {
    height: 300px !important;
  }
}

.modal-base img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -50px !important;
}

.swiper-pagination-bullet-active {
  background: #235347 !important;
}

.swiper-button-next, .swiper-button-prev {
  color: #235347 !important;
}

.modal-base img {
  transition: all 0.3s;
}

.modal-base img:hover {
  transform: scale(1.1);
}

.gallery-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.733);
  margin-top: -1px;
  animation: zoom 0.3s ease-in-out;
  z-index: 999;
}

.gallery-modal-content {
  max-width: 1200px;
}

.gallery-modal img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.closeBtn, .prevBtn, .nextBtn {
  color: rgba(255, 255, 255, 0.87);
  font-size: 25px;
  position: absolute;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.closeBtn:hover, .prevBtn:hover, .nextBtn:hover {
  color: rgb(255, 255, 255);
}

.closeBtn {
  top: 0;
  right: 0;
  margin: 20px;
}

.prevBtn {
  top: 50%;
  left: 2rem;
}

.nextBtn {
  top: 50%;
  right: 2rem;
}

/* Calculator */
#calculatorForm input,
#calculatorForm select,
#calculatorForm input[type=submit]{
  border: 1px solid black;
  height: auto;
  padding: .5rem;
}
#calculatorForm input[type=radio]{
  all: revert;
}
#calculatorForm .form-group{
  display: flex;
  flex-direction: column;
  gap:.5rem;
  margin-bottom: 1rem;
}
#calculatorForm span{
  font-size: 24px;
  font-weight: bold;
  color:#0B2B26;
}
#calculatorForm .select-btn{
  padding: 1rem 2rem;
  border: 1px solid #0B2B26;
}
#calculatorForm .select-btn:hover{
  color: white;
  background: #0B2B26;
}
#calculatorForm .active{
  color: white;
  background: #0B2B26;
}
#calculatorForm .button{
  justify-content: center;
}
#calculatorForm .result{
  text-align: right;
  margin-top:1rem;
}

#gform_wrapper_3 label,
#gform_wrapper_3 legend,
#gform_wrapper_3 input,
#gform_wrapper_3 textarea{
  color:#010a11;
}
#gform_wrapper_3 input, 
#gform_wrapper_3 textarea{
  border: 1px solid #c3c3c3;
}
#gform_wrapper_3 input[type=submit]{
  color:white;
}
#gform_wrapper_3 span{
  font-size: 14px;
  color: red;
  font-weight: 400;
}