@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #1a1a1a;
  font-family: "Poppins", sans-serif;
  color: #fefcf9;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 0;
}

address {
  font-style: normal;
}

a, button {
  cursor: pointer;
  font-family: inherit;
  display: block;
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  padding-left: 20px;
  margin: 0;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 1200px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

section:first-child {
  padding-top: 130px;
}

.container {
  width: 100%;
  padding: 0 12px;
  margin: 0 auto;
  max-width: 430px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }
}

.h1 {
  font-weight: 700;
  font-size: 65px;
  line-height: 90%;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
}

@media (min-width: 1200px) {
  .h1 {
    font-size: 195px;
  }
}

.h2 {
  font-weight: 700;
  font-size: 40px;
}

.h2 span {
  color: #ff6d17;
}

@media (min-width: 1200px) {
  .h2 {
    font-size: 56px;
  }
}

.h3 {
  font-weight: 500;
  font-size: 40px;
}

.h4 {
  font-weight: 500;
  font-size: 24px;
  color: #ff6d17;
}

.text-center {
  text-align: center;
}

.logo {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.logo:hover, .logo:focus {
  color: #ff6d17;
}

.logo:active {
  color: #bb4500;
}

.logo__img {
  max-width: 24px;
}

.link {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.link:hover, .link:focus {
  color: #ff6d17;
}

.link:active {
  color: #bb4500;
}

.btn {
  font-family: "Poppins", sans-serif;
  width: 100%;
  max-width: 240px;
  border-radius: 30px;
  padding: 20px 48px;
  background: #ff6d17;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.btn:hover, .btn:focus {
  background: #bb4500;
}

.btn:active {
  color: #1a1a1a;
}

.btn.w-full {
  max-width: 100%;
}

.btn-second {
  background: #000;
  border: 2px solid #fff;
  color: #fff;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background: #1a1a1a;
}

.header__nav {
  padding-top: 24px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__list {
  display: none;
  padding: 0;
  list-style: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}

@media (min-width: 1200px) {
  .header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  margin: 0;
  padding: 10px;
  width: 100%;
  max-width: 32px;
  background: transparent;
}

@media (min-width: 1200px) {
  .header__menu {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: #1a1a1a;
}

.mobile-menu.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
}

.mobile-menu__content {
  min-height: 100dvh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  list-style: none;
  padding-left: 0;
}

.hero {
  background-image: url(/wp-content/themes/jundaloria/assets/img/1.1.webp);
  background-position: top 0 center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media (min-width: 1200px) {
  .hero__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 500px;
  }
}

.hero .hero__title {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.hero__subtitle {
  width: 100%;
}

@media (min-width: 1200px) {
  .hero__subtitle {
    max-width: 440px;
  }
}

.hero__text {
  width: 100%;
}

@media (min-width: 1200px) {
  .hero__text {
    max-width: 500px;
  }
}

.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .hero__img {
    position: absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin-left: auto;
}

.gallery__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
  padding-left: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .gallery__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .gallery__list {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.gallery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 320px;
}

.offer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.offer__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 32px;
  padding-left: 0;
  list-style: none;
}

@media (min-width: 1200px) {
  .offer__list {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

.offer__item {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.offer__number {
  margin-bottom: auto;
}

.connect__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.connect__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.connect__item {
  max-width: 200px;
}

.connect__link {
  position: relative;
}

.connect__link:hover img, .connect__link:focus img {
  opacity: 0.1;
}

.connect__link:hover .h4, .connect__link:focus .h4 {
  opacity: 1;
}

.connect__link img {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  opacity: 1;
}

.connect__link .h4 {
  opacity: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.connect__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: auto;
}

.reviews__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.reviews__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 32px;
  padding-left: 0;
  list-style: none;
}

@media (min-width: 1200px) {
  .reviews__list {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

.reviews__item {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.reviews__item .h4 {
  margin-top: auto;
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

@media (min-width: 1200px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.footer__copy {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media (min-width: 1200px) {
  .footer__address {
    margin-left: auto;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer__social a {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.footer__social a:hover, .footer__social a:focus {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.cookie-popup {
  width: 100%;
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  margin-bottom: 20px;
  display: none;
}

.cookie-popup.show {
  display: block;
}

@media (min-width: 1200px) {
  .cookie-popup {
    max-width: 800px;
  }
}

.cookie-popup__content {
  padding: 20px;
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

@media (min-width: 1200px) {
  .cookie-popup__content {
    padding: 40px;
  }
}

.cookie-popup__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
}

.cookie-popup__btns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

@media (min-width: 1200px) {
  .cookie-popup__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.privacy__content, .terms__content, .cookie-policy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.privacy a, .terms a, .cookie-policy a {
  margin-left: 10px;
  display: inline;
  font-weight: 700;
  color: #ff6d17;
}
/*# sourceMappingURL=styles.css.map */