@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

.admin-bar body {
  margin-top: 32px;
}

body {
  font-size: 16px;
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 92%;
}
@media (min-width: 981px) {
  .container {
    width: 90%;
  }
}

.center {
  text-align: center;
}

a {
  color: #9c9c9c;
  text-decoration: none;
  font-weight: 500;
  transition: all, 0.35s;
}
a:hover {
  color: #000000;
}

h1 {
  font-size: clamp(32px, 4.297vw, 55px);
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(28px, 3.281vw, 42px);
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h4 {
  font-size: clamp(18px, 1.719vw, 22px);
  line-height: 120%;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

p {
  margin-top: 0;
  line-height: 140%;
}
p:last-child {
  margin-bottom: 0;
}

img {
  height: auto;
}

ul {
  margin-top: 0;
  margin-bottom: 20px;
  list-style-type: none;
  padding: 0;
  text-align: left;
}
ul:last-child {
  margin-bottom: 0;
}
ul li {
  position: relative;
  color: #9c9c9c;
  line-height: 120%;
  padding-left: 30px;
}
ul li:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 14px;
  height: 16px;
  background: url("/wp-content/uploads/2024/01/check-solid.svg") center/contain no-repeat;
}
ul li:not(:last-child) {
  margin-bottom: 10px;
}

.p-bottom {
  padding-bottom: min(16vw, 120px);
}

.p-top {
  padding-top: min(16vw, 120px);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header {
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #ffffff;
  transition: all, 0.7s ease-in-out;
}
.site-header .container {
  display: flex;
  column-gap: 5%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.site-header .container .site-branding .custom-logo-link {
  display: flex;
}
.site-header .container .site-branding .custom-logo-link img {
  width: 100%;
  max-width: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .site-header .container .site-branding .custom-logo-link img {
    max-width: 120px;
  }
}
.site-header .container .main-navigation .menu-toggle {
  display: none;
}
.site-header .container .main-navigation .menu {
  list-style-type: none;
  display: flex;
  column-gap: 20px;
}
.site-header .container .main-navigation .menu .menu-item {
  padding: 0;
  margin: 0;
}
.site-header .container .main-navigation .menu .menu-item:before {
  content: none;
}
.site-header .container .main-navigation .menu .menu-item a {
  font-size: 16px;
  font-weight: 600;
  color: #9c9c9c;
  position: relative;
}
@media (max-width: 767px) {
  .site-header .container .main-navigation .menu .menu-item a {
    font-size: 14px;
  }
}
.site-header .container .main-navigation .menu .menu-item a:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 4px;
  width: 0;
  background-color: #000000;
  transition: all, 0.35s;
}
@media (max-width: 767px) {
  .site-header .container .main-navigation .menu .menu-item a:before {
    height: 2px;
    bottom: -3px;
  }
}
.site-header .container .main-navigation .menu .menu-item a:hover {
  color: #000000;
}
.site-header .container .main-navigation .menu .menu-item a:hover:before {
  width: 100%;
}
.site-header .container .main-navigation .menu .menu-item.current-menu-item a {
  color: #000000;
}
.site-header .container .main-navigation .menu .menu-item.current-menu-item a:before {
  width: 100%;
}

.site-footer {
  padding: min(16vw, 120px) 0 50px;
}
.site-footer .logo-wrap {
  margin-bottom: 15px;
}
.site-footer .footer-copyright a {
  font-weight: 400;
  color: #000000;
}
.site-footer .footer-copyright a:hover {
  text-decoration: underline;
}

.btn {
  padding: 15px 50px;
  background-color: #000000;
  font-weight: 600;
  color: white;
  border: 2px solid #000000;
  display: inline-block;
  width: fit-content;
}
.btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-center {
  margin: 0 auto;
  text-align: center;
}

.btn-light {
  background-color: #ffffff;
  color: black;
  border-color: #ffffff;
}
.btn-light:hover {
  background-color: #000000;
  color: #ffffff;
}

.pagination {
  text-align: center;
  margin-top: 25px;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.pagination .page-numbers {
  font-size: 18px;
  font-weight: 600;
}

.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2%;
  max-width: 850px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .search-form {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }
}
.search-form label {
  width: calc(98% - 200px);
}
@media (max-width: 767px) {
  .search-form label {
    width: 100%;
  }
}
.search-form label .search-field {
  height: 50px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  border-radius: 0;
  border: 2px solid #000000;
  padding: 10px 15px;
  width: 100%;
  font-weight: 500;
  color: #000000;
}
.search-form label .search-field:focus-visible {
  border-radius: 0;
  outline: none;
}
.search-form label .search-field::placeholder {
  color: #000000;
}
.search-form .search-submit {
  font-family: "Montserrat", sans-serif;
  width: 200px;
  transition: all, 0.35s;
  border: 2px solid #000000;
  cursor: pointer;
}
@media (max-width: 767px) {
  .search-form .search-submit {
    width: 100%;
  }
}

.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4%;
}
.wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}
.wpcf7-form input:not([type=submit]),
.wpcf7-form textarea {
  border: none;
  background-color: transparent;
  box-shadow: none;
  padding: 15px 0 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.44px;
  line-height: 100%;
  color: #000000;
  width: 100%;
  border-bottom: 1px solid #9c9c9c;
}
.wpcf7-form input:not([type=submit]):focus-visible,
.wpcf7-form textarea:focus-visible {
  outline: none;
}
.wpcf7-form input:not([type=submit]).wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
  border-color: #FA4A4A;
}
@media (max-width: 767px) {
  .wpcf7-form input:not([type=submit]),
  .wpcf7-form textarea {
    padding: 22px 0 14px;
  }
}
.wpcf7-form textarea {
  height: 100px;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 11px;
}
.wpcf7-form .input-wrap {
  width: 100%;
}
.wpcf7-form .input-wrap label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.44px;
  transition: all, 0.35s;
  color: #9c9c9c;
}
@media (min-width: 768px) {
  .wpcf7-form .input-wrap.flex-input {
    width: 48%;
  }
}
.wpcf7-form .input-wrap {
  position: relative;
}
@media (max-width: 767px) {
  .wpcf7-form .input-wrap {
    margin-bottom: 23px;
  }
}
.wpcf7-form .input-wrap.focused label {
  top: 0;
  font-size: 12px;
  letter-spacing: -0.28px;
}
.wpcf7-form .input-wrap.focused input,
.wpcf7-form .input-wrap.focused textarea {
  border-color: #000000;
}
.wpcf7-form .form-bth {
  margin-bottom: 0;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .wpcf7-form .form-bth {
    margin-top: 30px;
  }
}
.wpcf7-form .form-bth .wpcf7-spinner {
  display: none;
}
.wpcf7-form .wpcf7-submit {
  box-shadow: none;
  border: none;
  background-color: #000000;
  position: relative;
  display: flex;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  padding: 15px 50px;
  font-weight: 600;
  transition: all, 0.35s;
  border: 1px solid #000000;
}
.wpcf7-form .wpcf7-submit:hover {
  background-color: #fff;
  color: #000000;
}

.wpcf7 form.invalid .wpcf7-response-output {
  margin: 10px 0 0;
  border: none;
  color: #FA4A4A;
  padding: 0;
  font-size: 12px;
}

#scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 25px;
  height: 30px;
  background-color: transparent;
  font-size: 0;
  transition: all, 0.35s;
}
@media (max-width: 767px) {
  #scroll-to-top {
    bottom: 10px;
  }
}
#scroll-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  width: 15px;
  height: 15px;
  border-bottom: 3px solid #000000;
  border-right: 3px solid #000000;
  transform: rotate(-135deg);
  transition: all, 0.35s;
}
#scroll-to-top:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 15px;
  height: 15px;
  border-bottom: 3px solid #000000;
  border-right: 3px solid #000000;
  transform: rotate(-135deg);
  transition: all, 0.35s;
}
#scroll-to-top:hover:before, #scroll-to-top:hover:after {
  border-color: #9c9c9c;
}

.hero-home {
  padding: min(28vw, 200px) 0 min(16vw, 120px);
}
.hero-home .container {
  position: relative;
}
.hero-home p {
  color: #9c9c9c;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 180%;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .hero-home p {
    font-size: 16px;
    line-height: 140%;
  }
}

.section-gallery-home {
  padding-bottom: min(16vw, 120px);
}

@media (min-width: 981px) {
  .flex-posts .type-gallery {
    width: calc(50% - 10px);
  }
}
.flex-posts .type-gallery {
  margin-bottom: 20px;
}
.flex-posts .gallery-info {
  text-align: center;
}
.flex-posts .gallery-info h2 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 120%;
}
.flex-posts .gallery-info h2 a {
  color: #9c9c9c;
  font-weight: 600;
}
.flex-posts .gallery-info h2 a:hover {
  color: #000000;
}
.flex-posts .gallery-info .entry-meta {
  font-size: 14px;
  color: #9c9c9c;
  line-height: 100%;
}
.flex-posts .gallery-img img {
  width: 100%;
}

.posts-home {
  margin-bottom: 40px;
}

.single .container .gallery a {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  transition: all, 0.4s;
}
.single .container .gallery a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/uploads/2024/01/download-small.svg") center/100px no-repeat;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: all, 0.4s;
}
.single .container .gallery a:hover:before {
  opacity: 1;
}
.single .container .gallery img {
  width: auto;
  max-width: 1180px;
}

.category-wrap {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .category-wrap {
    margin-bottom: 30px;
  }
}
.category-wrap ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.category-wrap ul li {
  margin-bottom: 0;
  padding: 0;
}
.category-wrap ul li:before {
  content: none;
}
.category-wrap ul a {
  color: #9c9c9c;
  font-weight: 600;
}
.category-wrap ul a:hover {
  color: #000000;
}

.section-hero {
  padding: min(28vw, 200px) 0 50px;
}
.section-hero .description p {
  font-size: 18px;
  color: #9c9c9c;
  line-height: 180%;
}
@media (max-width: 767px) {
  .section-hero .description p {
    font-size: 16px;
    line-height: 140%;
  }
}

.head-single {
  padding: min(25vw, 180px) 0 50px;
}
.head-single h1 {
  text-align: center;
}
.head-single h1:last-child {
  margin-bottom: 0;
}
.head-single p {
  color: #9c9c9c;
  font-size: 18px;
  line-height: 180%;
}
@media (max-width: 767px) {
  .head-single p {
    font-size: 16px;
    line-height: 140%;
  }
}

.contact-section {
  padding-bottom: min(16vw, 120px);
}
.contact-section .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4%;
  row-gap: 40px;
}
@media (min-width: 981px) {
  .contact-section .container .col-1 {
    width: 36%;
  }
  .contact-section .container .col-2 {
    width: 60%;
  }
}
@media (max-width: 980px) {
  .contact-section .container {
    flex-direction: column-reverse;
  }
}
@media (min-width: 981px) {
  .contact-section .container .col-1 {
    padding-top: 12px;
  }
}
.contact-section .container .col-1 p a {
  margin-left: 5px;
}

.section-cta {
  padding: 50px 0;
  background-color: #000000;
}
.section-cta h2 {
  color: #ffffff;
  text-transform: none;
  letter-spacing: 1px;
}
.section-cta p {
  color: #ffffff;
  max-width: 500px;
  margin: 0 auto 30px;
}

.section-testimonials.padding-top {
  padding-top: min(16vw, 120px);
}
.section-testimonials.padding-bottom {
  padding-bottom: min(16vw, 120px);
}
.section-testimonials.bg-testimonials {
  background-color: #f8f8f8;
  padding: min(15vw, 100px) 0;
}
.section-testimonials .container {
  max-width: 950px;
}
.section-testimonials .testim-item {
  text-align: center;
  margin: 0 auto;
}
.section-testimonials .testim-item .content-testim {
  line-height: 180%;
  font-weight: 400px;
  font-size: 18px;
  color: #9c9c9c;
}
@media (max-width: 767px) {
  .section-testimonials .testim-item .content-testim {
    font-size: 16px;
    line-height: 140%;
  }
}
.section-testimonials .swiper-pagination {
  position: relative;
  top: 0;
  margin-top: 25px;
  display: flex;
  column-gap: 10px;
  justify-content: center;
}
.section-testimonials .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  background-color: #9c9c9c;
  height: 5px;
  width: 20px;
  opacity: 1;
  margin: 0 !important;
}
.section-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000000;
}

.search-hero {
  padding: min(28vw, 200px) 0 50px;
}
.search-hero h1 span {
  display: block;
}

.search-no-results .no-results {
  padding: min(28vw, 200px) 0 50px;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-no-results .no-results .container {
  text-align: center;
}
.search-no-results .no-results .container .page-content p {
  font-size: 18px;
  color: #9c9c9c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .search-no-results .no-results .container .page-content p {
    font-size: 16px;
  }
}

.search-result .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4%;
  row-gap: 40px;
}
.search-result .container .gallery {
  width: 48%;
}
@media (max-width: 767px) {
  .search-result .container .gallery {
    width: 100%;
  }
}
.search-result .entry-header {
  text-align: center;
}
.search-result .entry-header h2 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 0;
}
.search-result .post-thumbnail img {
  width: 100%;
  object-fit: cover;
  height: 370px;
}
@media (max-width: 980px) {
  .search-result .post-thumbnail img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .search-result .post-thumbnail img {
    height: auto;
  }
}

.content-archive {
  padding-bottom: min(16vw, 120px);
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}/*# sourceMappingURL=main.css.map */