:root {
  --white: #ffffff;
  --black: #000000;
  --accent-gray: #565656;
  --lighter-gray: #7d7d7d;
  --darker-gray: #07182c;
  --golden: linear-gradient(135deg, #A18645, #EBD988, #F5E7A1, #C4B369);
}



body .landing {

  width: 100%;
  min-height: calc(100vh - 87px);
  margin-top: 87px;
  background: #1f2e41;
  display: flex;
  /*flex-direction: column;*/
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  padding: 2rem;
}

body .landing .header {

  font-size: 4rem;

  font-weight: 400;

  line-height: 1.2;

  color: var(--white);

}

body .landing .banner_pic{
    width: 250px;
}
body .landing .banner_text{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

body .landing .banner_pic .hero_pic{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

body .landing .header span {
  text-transform: uppercase;
  font-weight: 600;

}

@keyframes animate-gradient {

  to {

    background-position: -200%;

  }

}

body .landing .text {

  width: 100%;

  color: var(--white);

}

body .landing .buttons {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 2rem;

}

body .landing .buttons .primary_btn {

  animation: glow 0.3s linear infinite;

}

body .landing .buttons .primary_btn button {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.4rem;

}

body .landing .buttons .primary_btn button box-icon {

  transform: scale(0.8);

}

body .counter_box {

  padding: 30px 70px;

  width: 100%;

  height: 270px;

  background: var(--golden);

  display: flex;

  align-items: center;

  justify-content: space-around;

  gap: 2rem;

}

body .counter_box .col {

  display: flex;

  align-items: center;

  justify-content: center;

}

body .counter_box .col .content {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 1rem;

}

body .counter_box .col .content .main_counter {

  display: flex;

  align-items: center;

  font-size: 3.7rem;

  font-weight: 500;

  color: var(--accent-gray);

}

body .counter_box .col .content .declaration {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;

}

body .counter_box .col .content .declaration .text {

  color: var(--accent-gray);

}

body .counter_box .col .content .declaration ion-icon {

  font-size: 2.7rem;

  color: var(--accent-gray);

}

body .counter_box .line {

  width: 2px;

  height: 100%;

  background: var(--white);

}

body .feature {

  margin: 6rem 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 3rem;

}

body .feature .why-us {

  font-size: 2.6rem;
  color: var(--white);
}

body .feature .main_content {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 2rem;

}

body .feature .main_content .box {

  width: 420px;

  height: 460px;

  padding: 3rem 2rem;

  background: var(--darker-gray);

  box-shadow: -1px 1px 9px 3px rgba(255, 255, 255, 0.2), 5px 5px 10px rgb(49 64 130 / 72%), inset 0px 0px 5px rgba(255, 255, 255, 0.2), inset 3px 3px 5px rgb(94 123 205 / 70%);

  border-radius: 0.4rem;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;

  gap: 2rem;

}

body .feature .main_content .box img {

  width: 160px;

}

body .feature .main_content .box .text {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;

  gap: 1rem;

}

body .feature .main_content .box .text .primary {

  font-family: "Montserrat", sans-serif;

  font-size: 1.6rem;

  font-weight: 500;
  color: var(--white);

}

body .feature .main_content .box .text .secondary {

  color: var(--white);

}

body .testimonials {

  background: linear-gradient(var(--black), var(--darker-gray));

  padding: 2rem;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 1rem;

}

body .testimonials .primary {

  font-size: 2.6rem;
color: var(--white);

}

body .testimonials .swiper {

  width: 100%;

  min-height: 40vh;

  display: flex;

  align-items: center;

  justify-content: center;

}

body .testimonials .swiper .swiper-wrapper .swiper-slide {

  padding: 0 3rem;

  text-align: center;

  font-size: 18px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;

  gap: 2rem;

}

body .testimonials .swiper .swiper-wrapper .swiper-slide .title {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 2rem;

}

body .testimonials .swiper .swiper-wrapper .swiper-slide .title img {

  width: 60px;

  border-radius: 100rem;

}

body .testimonials .swiper .swiper-wrapper .swiper-slide .title .namenplace {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;

}

body .testimonials .swiper .swiper-wrapper .swiper-slide .title .namenplace .name {

  font-size: 1rem;

  color: var(--white);

}

body .testimonials .swiper .swiper-wrapper .swiper-slide .title .namenplace .loc {

  color: var(--lighter-gray);

}

body .testimonials .swiper .swiper-wrapper .swiper-slide .rv-text {

  text-align: left;

  font-size: 0.8rem;

  font-weight: 300;

  letter-spacing: 1px;

  color: var(--white);

}

body .testimonials a {

  color: var(--lighter-gray);

  transition: all 0.3s linear;

}

body .testimonials a:hover {

  color: var(--white);

}

body .popWindow {

  width: 100%;

  min-height: 100vh;

  background: rgba(255, 255, 255, 0.4666666667);

  -webkit-backdrop-filter: blur(0.6rem);

  backdrop-filter: blur(0.6rem);

  position: fixed;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%) scale(0);

  opacity: 0;

  visibility: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.2s ease-in-out;

  z-index: 1000;

}

body .popWindow .content {

  width: 70%;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

}

body .popWindow .content .text {

  flex: 1;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;

  gap: 1rem;

  background: rgba(110, 75, 0, 0.8705882353);

  -webkit-backdrop-filter: blur(2rem);

  backdrop-filter: blur(2rem);

  padding: 2rem;

  margin-left: -50px;

  border-bottom-right-radius: 3rem;

  z-index: 10;

}

body .popWindow .content .text .primary {

  font-size: 2rem;

  font-weight: 400;

  color: var(--white);

}

body .popWindow .content .text .secondary {

  font-size: 0.8rem;

  color: var(--white);

}

body .popWindow .content .text .pop_up_cta {

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0.3rem 1rem;

  background: var(--white);

  border-radius: 0.3rem;

}

body .popWindow .content .text .pop_up_cta button {

  border: none;

  outline: none;

  background: none;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.2rem;

  text-transform: uppercase;

  letter-spacing: 3px;

  font-size: 0.9rem;

  font-weight: 500;

  color: #002715;

}

body .popWindow .content .text .pop_up_cta button box-icon {

  transform: scale(0.8);

}

body .popWindow .content img {

  flex: 1;

  width: 60%;

  height: auto;

  margin-right: -50px;

  border-top-left-radius: 3rem;

}

@keyframes glow {

  0% {

    box-shadow: 0 0 0 #ffffff;

  }

  50% {

    box-shadow: 0 0 17px rgba(255, 255, 255, 0.4666666667);

  }

  100% {

    box-shadow: 0 0 0 #ffffff;

  }

}

body .show {

  opacity: 1;

  visibility: visible;

  transform: translate(-50%, -50%) scale(1);

}

/* Footer Styles */

body .ekit-template-content-footer {

  width: 100%;

  background: var(--darker-gray);

  padding: 4rem 2rem 2rem;

  color: var(--white);

}

body .ekit-template-content-footer .elementor {

  max-width: 1200px;

  margin: 0 auto;

}

body .ekit-template-content-footer .e-con-inner {

  display: flex;

  flex-direction: column;

  gap: 3rem;

}

body .ekit-template-content-footer .elementor-element-1713388b {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 2rem;

}

body .ekit-template-content-footer .elementor-element-1713388b img.w-25 {

  width: 200px;

  height: auto;

}

body .ekit-template-content-footer .elementor-widget-text-editor .elementor-widget-container {

  color: var(--lighter-gray);

  font-size: 0.95rem;

  line-height: 1.6;

}

body .ekit-template-content-footer .elementor-social-icons-wrapper {

  display: flex;

  gap: 1rem;

  align-items: center;

}

body .ekit-template-content-footer .elementor-social-icon {

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  transition: all 0.3s ease;

  color: var(--white);

}

body .ekit-template-content-footer .elementor-social-icon:hover {

  background: rgba(255, 255, 255, 0.2);

  transform: translateY(-3px);

}

body .ekit-template-content-footer .elementor-social-icon i {

  font-size: 1.2rem;

}

body .ekit-template-content-footer .elementor-element-3d3eab93 {

  display: flex;

  flex-direction: column;

  gap: 2rem;

}

body .ekit-template-content-footer .elementor-element-3087b646 {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 2rem;

}

body .ekit-template-content-footer .elementor-heading-title {

  font-size: 1.4rem;

  font-weight: 600;

  color: var(--white);

  margin-bottom: 1.5rem;

}

body .ekit-template-content-footer .elementor-icon-list-items {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-direction: column;

  gap: 0.8rem;

}

body .ekit-template-content-footer .elementor-icon-list-item a {

  color: var(--lighter-gray);

  text-decoration: none;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  gap: 0.5rem;

}

body .ekit-template-content-footer .elementor-icon-list-item a:hover {

  color: var(--white);

  padding-left: 0.5rem;

}

body .ekit-template-content-footer .elementor-icon-list-icon {

  display: inline-flex;

  align-items: center;

  margin-right: 0.5rem;

}

body .ekit-template-content-footer .elementor-icon-list-icon i {

  font-size: 1rem;

  color: var(--white);

}

body .ekit-template-content-footer .ftr-info {

  padding: 2rem 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin-top: 2rem;

}

body .ekit-template-content-footer .ftr-info .row {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  margin-bottom: 2rem;

}

body .ekit-template-content-footer .ftr-info p {

  color: var(--lighter-gray);

  font-size: 0.9rem;

  line-height: 1.6;

  margin: 0;

}

body .ekit-template-content-footer .ftr-info b {

  color: var(--white);

  font-weight: 600;

}

body .ekit-template-content-footer .ftr-info a {

  color: var(--white) !important;

  text-decoration: none;

  transition: all 0.3s ease;

}

body .ekit-template-content-footer .ftr-info a:hover {

  color: var(--lighter-gray) !important;

  text-decoration: underline;

}

body .ekit-template-content-footer .ftr-info hr {

  border: none;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin: 2rem 0;

}

body .ekit-template-content-footer .elementor-element-1bae3b27 {

  padding-top: 2rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;

}

body .ekit-template-content-footer .elementor-element-1bae3b27 .elementor-heading-title {

  font-size: 1rem;

  color: var(--lighter-gray);

  margin: 0;

}

body .ekit-template-content-footer .elementor-element-1bae3b27 .elementor-heading-title a {

  color: var(--white);

  text-decoration: none;

  transition: all 0.3s ease;

}

body .ekit-template-content-footer .elementor-element-1bae3b27 .elementor-heading-title a:hover {

  color: var(--lighter-gray);

  text-decoration: underline;

}

@media all and (max-width: 999px) {

  body .landing {
    background: #1f2e41;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;

  }

body .landing .banner_pic{
    width: 180px;
}
body .landing .banner_text{
    width: 100%;
    gap: 10px;
}
  body .landing .header {

    font-size: 2rem;

  }

  body .landing .text {

    width: 100%;

  }

  body .landing .buttons {
    flex-direction: column-reverse;
    gap: 1rem;

  }

  body .counter_box {

    padding: 3rem 4rem;

    height: auto;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 1.6rem;

  }

  body .counter_box .col .content {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 0.6rem;

  }

  body .counter_box .col .content .main_counter {

    display: flex;

    align-items: center;

    font-size: 2.7rem;

    font-weight: 500;

    color: var(--accent-gray);

  }

  body .counter_box .col .content .declaration {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

  }

  body .counter_box .col .content .declaration .text {

    color: var(--accent-gray);

  }

  body .counter_box .col .content .declaration ion-icon {

    font-size: 2.7rem;

    color: var(--accent-gray);

  }

  body .counter_box .line {

    display: none;

  }

  body .feature {

    margin: 6rem 0;

    padding: 0 1rem;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 3rem;

  }

  body .feature .why-us {

    font-size: 1.6rem;
    color: var(--white);
    text-align: center;

  }

  body .feature .main_content {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 2rem;

  }

  body .feature .main_content .box {

    width: 100%;

    height: 460px;

    padding: 3rem 1.6rem;

    background: var(--darker-gray);

    box-shadow: -1px 1px 9px 3px rgba(255, 255, 255, 0.2), 5px 5px 10px rgb(49 64 130 / 72%), inset 0px 0px 5px rgba(255, 255, 255, 0.2), inset 3px 3px 5px rgb(94 123 205 / 70%);

    border-radius: 0.4rem;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 2rem;

  }

  body .feature .main_content .box img {

    width: 160px;

  }

  body .feature .main_content .box .text {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 1rem;

  }

  body .feature .main_content .box .text .primary {

    font-family: "Montserrat", sans-serif;

    font-size: 1.6rem;

    font-weight: 500;
    color: var(--white);

  }

  body .feature .main_content .box .text .secondary {

    color: var(--white);

  }

  body .testimonials .swiper .swiper-wrapper .swiper-slide {

    padding: 0 1rem;

  }

  body .popWindow .content {

    width: 90%;

    flex-direction: column;

  }

  body .popWindow .content .text {

    margin-left: 0;

  }

  body .popWindow .content img {

    width: 100%;

    height: auto;

    margin-right: 0;

  }

  body .ekit-template-content-footer {

    padding: 3rem 1rem 1.5rem;

  }

  body .ekit-template-content-footer .elementor-element-1713388b img.w-25 {

    width: 150px;

  }

  body .ekit-template-content-footer .elementor-element-3087b646 {

    grid-template-columns: 1fr;

    gap: 2rem;

  }

  body .ekit-template-content-footer .elementor-heading-title {

    font-size: 1.2rem;

    margin-bottom: 1rem;

  }

  body .ekit-template-content-footer .ftr-info .row {

    grid-template-columns: 1fr;

    gap: 1.5rem;

  }

  body .ekit-template-content-footer .ftr-info p {

    font-size: 0.85rem;

  }

  body .ekit-template-content-footer .elementor-social-icons-wrapper {

    flex-wrap: wrap;

  }

}

/*# sourceMappingURL=primaryPage.css.map */