/* Arial Font Family */
@font-face {
  font-family: "Arial";
  src: url("../fonts/arial.woff") format("woff"), url("../fonts/arial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arial";
  src: url("../fonts/arial-bold.woff") format("woff"), url("../fonts/arial-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* Avenir Font Family */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenir.ttc") format("truetype-collection");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/avenir-next.ttc") format("truetype-collection");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Minion Pro Font Family */
@font-face {
  font-family: "Minion Pro";
  src: url("../fonts/minionpro-regular.woff") format("woff"), url("../fonts/minionpro-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Font Family Variables */
html, body {
  font-family: "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

header {
  background-color: #c19956;
  padding: 40px 0 20px;
  padding: 20px 0;
}
@media (max-width: 767px) {
  header {
    padding: 10px 0;
  }
}
header img {
  max-width: 400px;
  max-width: 100%;
  max-height: 300px;
  max-height: 200px;
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  header img {
    max-width: 150px;
  }
}
@media (max-width: 991px) {
  header .btn {
    display: none;
  }
}
header .menu-trigger {
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
  margin-left: auto;
  cursor: pointer;
}
header .menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #283e4a;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
header .menu-trigger span:nth-child(2) {
  top: 9px;
}
header .menu-trigger span:nth-child(3) {
  top: 18px;
}
header .menu-trigger.active span:nth-child(1) {
  transform: rotate(135deg);
  top: 9px;
}
header .menu-trigger.active span:nth-child(2) {
  opacity: 0;
}
header .menu-trigger.active span:nth-child(3) {
  transform: rotate(-135deg);
  top: 9px;
}

nav {
  background-color: #283e4a;
  padding: 20px 15px;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  justify-content: space-between;
}
nav ul li a {
  color: #fff;
  text-decoration: none !important;
  font-size: 1.2em;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #c19956;
}
nav ul li.current-page-ancestor a, nav ul li.current-menu-item a {
  color: #c19956;
  /*font-weight: 700;*/
}
@media (max-width: 767px) {
  nav {
    display: none;
    position: absolute;
    z-index: 9999;
    width: 100%;
  }
  nav ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
  }
  nav ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}

html, body {
  overflow-x: hidden;
}

.btn,
div.wpforms-container-full .wpforms-form button.wpforms-submit {
  background-color: #283e4a !important;
  transition: all 0.3s ease;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.btn:hover,
div.wpforms-container-full .wpforms-form button.wpforms-submit:hover {
  background-color: #fff !important;
  color: #283e4a !important;
}

.swiper .swiper-button-prev {
  width: 74px;
  height: 74px;
  background: #fff;
  border-radius: 50%;
  left: -25px;
  top: calc(50% - 18px);
}
.swiper .swiper-button-prev:after {
  color: #283e4a;
  font-size: 33px;
  margin-left: 5px;
}
.swiper .swiper-button-next {
  width: 74px;
  height: 74px;
  background: #fff;
  border-radius: 50%;
  right: -25px;
  top: calc(50% - 18px);
}
.swiper .swiper-button-next:after {
  color: #283e4a;
  font-size: 33px;
  margin-left: 5px;
}

.bold-is-gold b, .bold-is-gold strong {
  color: #c19956;
}

.castle-image-homepage img {
  aspect-ratio: 2.5;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .castle-image-homepage img {
    aspect-ratio: 1.5;
  }
}

.cl-video-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
  cursor: pointer;
}

.cl-video-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  aspect-ratio: 9/16;
  z-index: 9999;
  display: none;
  background-color: #fff;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .cl-video-popup {
    height: 90%;
  }
}
@media (max-width: 767px) {
  .cl-video-popup {
    width: 90%;
  }
}
.cl-video-popup .cl-video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 9999;
}
.cl-video-popup .cl-video-popup-close span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  transform: rotate(45deg);
}
.cl-video-popup .cl-video-popup-close span:last-child {
  transform: rotate(-45deg);
}
.cl-video-popup iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.square-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.square-img a {
  width: 100%;
  display: block;
}

.rectangle-img img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.rectangle-img a {
  width: 100%;
  display: block;
}

.elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer {
  position: relative;
}
.elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer .cl-homepage-swiper {
  position: relative;
  z-index: 999;
}
.elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer .cl-homepage-swiper-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 99;
}
.elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer .cl-homepage-swiper-title h1 {
  text-transform: uppercase;
  color: #fff;
  font-size: 4em;
  font-size: 3.2em;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  margin: 0 0 1em;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer .cl-homepage-swiper-title h1 {
    font-size: 2em;
    line-height: 1.3;
  }
}
@media (max-width: 400px) {
  .elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer .cl-homepage-swiper-title h1 {
    font-size: 1.4em;
  }
}
.elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer .swiper-pagination {
  z-index: 999;
}
.elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer .swiper-pagination .swiper-pagination-bullet {
  width: 45px;
  height: 45px;
  background-color: transparent;
  opacity: 1;
  background-image: url(../img/white-star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  margin: 0 5px;
}
.elementor-widget.elementor-widget-cl_homepage_slider .cl-homepage-swiper-outer .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url(../img/white-star-filled.svg);
}
.elementor-widget.elementor-widget-cl_homepage_slider .swiper:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.elementor-widget.elementor-widget-cl_homepage_slider img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.elementor-widget.elementor-widget-heading.with-blue-stars .elementor-heading-title {
  display: inline-block;
  position: relative;
}
.elementor-widget.elementor-widget-heading.with-blue-stars .elementor-heading-title:after {
  content: " ";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(../img/stars-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -30px;
  right: -50px;
}
.elementor-widget.elementor-widget-heading.with-gold-stars .elementor-heading-title {
  display: inline-block;
  position: relative;
}
.elementor-widget.elementor-widget-heading.with-gold-stars .elementor-heading-title:after {
  content: " ";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(../img/stars-gold-nobg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -30px;
  right: -50px;
}
.elementor-widget.elementor-widget-cl_testimonials_slider .cl-testimonial {
  background-color: #283e4a;
  padding: 20px 30px 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.elementor-widget.elementor-widget-cl_testimonials_slider .cl-testimonial .cl-testimonial-star {
  width: 45px;
  height: 45px;
  background-image: url(../img/gold-star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 1em;
}
.elementor-widget.elementor-widget-cl_testimonials_slider .cl-testimonial .cl-testimonial-quote {
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.8;
  color: #fff;
}
.elementor-widget.elementor-widget-cl_testimonials_slider .cl-testimonial .cl-testimonial-client {
  margin-top: 0.4em;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #c19956;
}
.elementor-widget.elementor-widget-cl_testimonials_slider .swiper-slide:nth-child(even) .cl-testimonial {
  background-color: #c19956;
  padding: 40px 30px;
  text-align: center;
}
.elementor-widget.elementor-widget-cl_testimonials_slider .swiper-slide:nth-child(even) .cl-testimonial .cl-testimonial-star {
  background-image: url(../img/blue-star.svg);
}
.elementor-widget.elementor-widget-cl_testimonials_slider .swiper-slide:nth-child(even) .cl-testimonial .cl-testimonial-client {
  color: #283e4a;
}
.elementor-widget.elementor-widget-cl_testimonials_slider .swiper-slide {
  height: auto;
  width: 33.3% !important;
  transform: translate(-50%, 0) !important;
}
@media (min-width: 1700px) {
  .elementor-widget.elementor-widget-cl_testimonials_slider .swiper-slide {
    width: 25% !important;
  }
}
@media (max-width: 767px) {
  .elementor-widget.elementor-widget-cl_testimonials_slider .swiper-slide {
    width: 80% !important;
    transform: translate(0, 0) !important;
  }
}
.elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row-item {
  position: relative;
}
.elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row-item-video:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-image: url(../img/play-button.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 999;
  opacity: 0.8;
}
.elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row.cl-our-work-gallery-row-3-photos .cl-our-work-gallery-row-item {
  width: calc(33.3% - 20px);
  aspect-ratio: 464/726;
}
.elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row.cl-our-work-gallery-row-2-photos .cl-our-work-gallery-row-item {
  width: calc(50% - 15px);
  aspect-ratio: 727/484;
  -o-object-fit: cover;
     object-fit: cover;
}
.elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row.cl-our-work-gallery-row-1-photo .cl-our-work-gallery-row-item {
  width: 100%;
  aspect-ratio: 945/464;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 550px) {
  .elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row .cl-our-work-gallery-row-item {
    width: 100% !important;
    aspect-ratio: auto !important;
  }
  .elementor-widget.elementor-widget-cl_our_work_gallery .cl-our-work-gallery-row .cl-our-work-gallery-row-item img {
    position: static !important;
    height: auto !important;
  }
}
.elementor-widget.elementor-widget-cl_image_slider .cl-image-slider img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.white-stars-at-top {
  position: relative;
}
.white-stars-at-top:before {
  content: " ";
  position: absolute;
  top: 0;
  top: -15px;
  height: 100px;
  left: 0;
  width: 100%;
  background-image: url(../img/star-strip.svg);
  background-size: contain;
  background-position: center;
}
@media (max-width: 950px) {
  .white-stars-at-top:before {
    background-size: cover;
  }
}

.larger-paragraph-margin p {
  margin-bottom: 2em;
}

footer {
  background-color: #c19956;
  padding: 40px 0 60px;
  color: #283e4a;
  /* min-height: 40vh; */
}
@media (max-width: 767px) {
  footer {
    min-height: 150px;
  }
}
footer .footer-title {
  text-align: center;
}
footer .footer-title img {
  width: 100px;
  height: auto;
}
footer .footer-title h2 {
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}
footer .footer-contacts {
  margin: 30px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 991px) {
  footer .footer-contacts {
    flex-direction: column;
  }
}
footer .footer-contacts .footer-contact {
  width: 400px;
  text-align: center;
  color: #fff;
  font-size: 1.2em;
}
footer .footer-contacts .footer-contact a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  background-color: #283e4a;
  padding: 25px 0;
  color: #fff;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  padding: 0;
}