@import 'https://fonts.bunny.net/css2?family=Comforter+Brush&family=Unbounded:wght@200..900&display=swap; //txt fam';
@import 'https://fonts.bunny.net/css2?family=Style+Script&family=Tangerine:wght@400;700&display=swap';
.globalsection {
  padding: 2rem;
}
@media screen and (max-width: 380px) {
  .globalsection {
    padding: 1rem;
  }
}

.global-icons {
  font-size: 2.5rem;
}

.transition-underline {
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
  margin-top: 0.6rem;
  cursor: pointer;
}
.transition-underline::after {
  content: "";
  position: absolute;
  transition: width 0.3s;
  background-color: rgb(255, 255, 255);
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.15px;
}
.transition-underline:hover::after {
  width: calc(100% + 0.3rem);
}

.transition-underline-draw {
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
  margin-top: 0.6rem;
  cursor: pointer;
}
.transition-underline-draw::after {
  content: "";
  position: absolute;
  transition: width 0.4s;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  bottom: -3px;
  left: 0;
  width: 50%;
  border: 1px solid white;
  height: 3px;
}
.transition-underline-draw:hover::after {
  width: calc(100% + 0.3rem);
}

.hoverbtn {
  cursor: pointer;
  overflow: hidden;
}
.hoverbtn::before {
  content: "";
  position: absolute;
  background-color: #F1F1F1;
  width: 0;
  transition: all 0.4s;
  transition-timing-function: ease;
  top: 0;
  right: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
}
.hoverbtn:hover::before {
  width: 100%;
  height: 100%;
}

.noisebck::before {
  background: url(images/NOISEBCKG.png);
  content: "";
  background-repeat: repeat;
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.noisebck {
  background-color: rgba(0, 0, 0, 0.9294117647);
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
}

.barcode {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  height: 100px;
}
.barcode__line {
  width: 5px;
  height: 60px;
  background-color: #F1F1F1;
  margin: 0 1px;
}
.barcode__thin-line {
  width: 1px;
}

.logo {
  color: #E7F3E2;
  font-size: 3rem;
  font-family: "Comforter Brush", cursive;
  line-height: 0;
  cursor: pointer;
}

.header {
  display: flex;
  position: fixed;
  width: 100%;
  z-index: 5;
  justify-content: space-between;
  color: #E7F3E2;
  padding: 1.4rem;
}
@media screen and (max-width: 900px) {
  .header {
    mix-blend-mode: difference;
  }
}
.header__md {
  position: relative;
  display: flex;
  margin-right: 20rem;
  text-transform: uppercase;
  flex-direction: column;
  align-items: stretch;
}
.header__md::before {
  content: "";
  position: absolute;
  height: 100%;
  left: -15px;
  top: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}
.header__md--item {
  font-size: clamp(1rem, 0.1vw + 0.95rem, 1.25rem);
  letter-spacing: 1px;
  position: relative;
  margin-top: 0.6rem;
  cursor: pointer;
}
.header__md--item::after {
  content: "";
  position: absolute;
  transition: width 0.3s;
  background-color: rgba(255, 255, 255, 0.4);
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.15px;
}
.header__md--item:hover::after {
  width: calc(100% + 0.7rem);
}

.menu__wrapper {
  position: fixed;
  top: 3rem;
  cursor: pointer;
  z-index: 1000;
  mix-blend-mode: difference;
  right: 2rem;
  width: 40px;
  height: 40px;
}

.menu {
  position: absolute;
  width: 100%;
  height: 100%;
}

.menu-global {
  backface-visibility: hidden;
  position: absolute;
  border-top: 1px solid white;
  width: 100%;
  transition: 0.5s 0.55s;
}

.menu-top {
  top: 8px;
}

.menu-middle {
  top: 18px;
}

.menu-bottom {
  top: 28px;
}

.menu-top-click {
  backface-visibility: hidden;
  top: 18px;
  transform: rotate(50deg);
  transition: transform 0.55s 0.5s, top 0.55s 0.5s;
}

.menu-middle-click {
  opacity: 0;
}

.menu-bottom-click {
  backface-visibility: hidden;
  top: 18px;
  transform: rotate(-410deg);
  transition: transform 0.55s 0.5s, top 0.55s 0.5s;
}

@media screen and (max-width: 1024px) {
  .menuoverlay {
    width: 100%;
  }
}
.menuoverlay {
  position: fixed;
  height: 100%;
  min-width: 45%;
  right: -1024px;
  background-color: rgba(0, 0, 0, 0.95);
  color: #F1F1F1;
  z-index: 999;
}
.menuoverlayopen {
  margin: auto;
}
.menuoverlay__container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 2rem;
}
@media screen and (max-width: 460px) {
  .menuoverlay__container {
    margin-left: 1.5rem;
  }
}
.menuoverlay__container--line {
  width: 0;
  background-color: rgba(255, 255, 255, 0.4);
  height: 1px;
}
.menuoverlay__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.menuoverlay__links__link {
  display: flex;
  position: relative;
  gap: 1rem;
  overflow: hidden;
}
.menuoverlay__links__link--number {
  font-size: 11.5px;
  opacity: 0.7;
}
.menuoverlay__links__link--title {
  display: inline-block;
  cursor: pointer;
  font-size: calc(clamp(2rem, 1.5vw + 1.55rem, 4rem) - 0.25rem);
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  overflow: hidden;
  font-weight: 100;
  top: 6rem;
  position: relative;
  letter-spacing: 2px;
  text-decoration: none;
}
@media screen and (max-height: 700px) {
  .menuoverlay__links__link--title {
    font-size: calc(clamp(2rem, 0.5vw + 1.9rem, 2.5rem) - 0.4rem);
  }
}
@media screen and (max-height: 610px) {
  .menuoverlay__links__link--title {
    font-size: calc(clamp(2rem, 0.5vw + 1.9rem, 2.5rem) - 0.7rem);
  }
}
@media screen and (max-width: 660px) {
  .menuoverlay__links__link--title {
    font-size: calc(clamp(2rem, 0.5vw + 1.9rem, 2.5rem) - 0.1rem);
  }
}
.menuoverlay__social-media {
  margin: 0 0 2rem 2rem;
  font-weight: 100;
  display: none;
  opacity: 0.7;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: flex;
  transition: transform 0.4s ease;
  flex-direction: column;
}
.menuoverlay__reserved {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  font-weight: 100;
  font-size: 1.15rem;
  opacity: 0.7;
}

.menuoverlay__links__link--title:hover .letter,
.menuoverlay__links__link--title.play .letter {
  transform: translateY(-100%);
}

.menuoverlay__links__link--title .block:nth-child(2) {
  position: absolute;
}

.menuoverlay__links__link--title .letter {
  display: inline-block;
  transition: transform 0.4s ease;
}

#headersvg {
  position: relative;
}

.header {
  transition: transform 0.5s;
  transition: all 0.5s;
}

.scroll-down .header {
  transform: translate3d(0, -100%, 0);
}

.loader {
  position: fixed;
  z-index: 9999;
  height: 100vh;
  width: 100%;
  background-color: #F1F1F1;
}

.blur {
  filter: blur(100px);
  transition: filter 1s ease;
}

.loader-overlay-overlay {
  position: absolute;
  height: 1px;
  left: 50%;
  top: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
}

#logosvg {
  width: 25%;
  min-width: 250px;
}

.loader-overlay--title {
  opacity: 0;
}

.loader-copy {
  position: absolute;
  bottom: 0;
}

.loader-header {
  text-align: center;
  margin-top: 1rem;
}

.loader-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  mix-blend-mode: difference;
  color: #F1F1F1;
  font-size: 3vw;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.svgsection {
  background-color: black;
  width: 100%;
  height: 100%;
  position: relative;
}

#logosvg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#logosvg path:nth-child(1) {
  stroke-dasharray: 27291.58984375;
  stroke-dashoffset: 27291.58984375;
  animation: fill 1s ease-in forwards 2.2s;
}

#logosvg path:nth-child(2) {
  stroke-dasharray: 13055.044921875;
  stroke-dashoffset: 13055.044921875;
  animation: line-anim 3s ease forwards;
}

#logosvg path:nth-child(3) {
  stroke-dasharray: 342.3962097168;
  stroke-dashoffset: 342.3962097168;
  animation: line-anim 3s ease forwards;
}

#logosvg path:nth-child(4) {
  stroke-dasharray: 191.5550231934;
  stroke-dashoffset: 191.5550231934;
  animation: line-anim 3s ease forwards;
}

#logosvg path:nth-child(5) {
  stroke-dasharray: 11083.2802734375;
  stroke-dashoffset: 11083.2802734375;
  animation: line-anim 3s ease forwards;
}

#logosvg path:nth-child(6) {
  stroke-dasharray: 16986.515625;
  stroke-dashoffset: 16986.515625;
  animation: line-anim 3s ease forwards;
}

#logosvg path:nth-child(7) {
  stroke-dasharray: 11166.9599609375;
  stroke-dashoffset: 11166.9599609375;
  animation: line-anim 3s ease forwards;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke {
  to {
    stroke-dasharray: 0;
  }
}
@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: white;
  }
}
* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

.carousel-title {
  color: #F1F1F1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
  transition: filter 2s ease;
  flex-direction: column;
}
.carousel-title--title {
  font-size: clamp(3.4rem, 5vw + 1rem, 11rem);
}
.carousel-title--subtitle {
  font-size: clamp(1rem, 0.2vw + 1rem, 1.25rem);
  text-align: center;
  width: 90%;
}

.categories {
  position: relative;
  color: white;
  margin-bottom: 10rem;
}
.categories__container {
  padding: 0 4rem;
}
@media screen and (max-width: 460px) {
  .categories__container {
    padding: 0;
  }
}
.categories__container__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
  transition: background-color 0.5s ease-in-out;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.categories__container__item--title {
  font-size: clamp(1.4rem, 0.684vw + 1.259rem, 2.25rem);
  display: flex;
  position: relative;
  transition: all 0.8s ease;
  gap: 1rem;
}
.categories__container__item--title span {
  font-size: 0.8rem;
}
.categories__container__item--arrow {
  font-size: 4rem;
  padding-right: 0.5rem;
  transition: all 0.5s ease;
}
.categories__container__item:hover {
  background-color: white;
  color: black;
}
.categories__container__item:hover .categories__container__item--title {
  padding-left: 2rem;
}
.categories__container__item:hover .categories__container__item--arrow {
  rotate: 45deg;
}

@media screen and (max-width: 1150px) {
  .categories__container__item--arrow {
    font-size: 2rem;
  }
}
.contactus {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 5rem 1.5rem;
  min-height: 110vh;
}

.contactus__whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  color: #F1F1F1;
  position: relative;
  border: 1px solid #F1F1F1;
  padding: 3.5rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: rgb(115, 165, 115);
}
@media screen and (max-width: 600px) {
  .contactus__whatsapp {
    padding: 1rem;
  }
}
.contactus__whatsapp i {
  color: #F1F1F1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
}

.contactus-details {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 6em;
  font-weight: 300;
}
.contactus-details__text {
  color: #F1F1F1;
  display: flex;
  flex-direction: column-reverse;
}
.contactus-details__text--title {
  font-size: clamp(2rem, 1.5vw + 1.55rem, 4rem);
}
.contactus-details__text--subtitle {
  text-transform: uppercase;
}
.contactus-details__info {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: space-between;
  align-items: start;
}
.contactus-details__info--c {
  text-transform: uppercase;
  color: #F1F1F1;
  display: flex;
  flex-direction: column;
}
.contactus-details__info--maps {
  max-width: 350px;
  display: flex;
  flex-direction: row;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem;
}

.contactus-details__wrapper__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.tarife {
  padding: 5rem clamp(1.5rem, 3vw + 0.5rem, 4rem);
  color: white;
}
.tarife__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  height: 75vh;
}
.tarife__title--title {
  font-size: clamp(3.4rem, 5vw + 1rem, 11rem);
}
.tarife__title--subtitle {
  font-size: clamp(1rem, 0.2vw + 1rem, 1.25rem);
  text-align: center;
  max-width: 900px;
}
.tarife__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10em;
  gap: 1rem;
}
.tarife__cards--card {
  flex: 1;
  border: 1px solid rgba(241, 241, 241, 0.4);
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.15) 0px 7px 29px 0px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 80%;
  min-width: 275px;
}
.tarife__cards--card svg {
  position: absolute;
}
.tarife__cards--card--circle {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  width: 1000px;
  height: 50px;
  background: linear-gradient(45deg, blue 0%, green 20%, rgb(207, 42, 186) 40%, blue 50%, rgb(211, 25, 16) 60%, rgb(254, 248, 76) 80%);
}
.tarife__cards--card--name {
  font-size: clamp(2rem, 0.5vw + 1.9rem, 2.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.tarife__cards--card--price {
  text-decoration: underline;
  text-align: center;
}
.tarife__cards--card--text {
  line-height: 1.6;
  font-size: 15px;
}
.tarife__cards--card--text-title {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.circleblackwhite {
  background: linear-gradient(45deg, white, #ccc, black);
  top: 5rem;
}

.categorypage {
  width: 100%;
  height: 110vh;
  overflow: hidden;
  position: relative;
  background-color: #F1F1F1;
}
.categorypage__title {
  position: absolute;
  left: 50%;
  top: 55%;
  text-align: center;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Style Script", cursive;
  transform: translate(-50%, -50%);
  font-size: calc(clamp(2.4rem, 2.5vw + 1.9rem, 4rem) + 1rem);
  font-weight: 300;
}
.categorypage__title--subtitle {
  font-size: 1.5rem;
  font-family: "Unbounded", sans-serif;
  margin-bottom: 1rem;
  max-width: 200px;
  text-align: center;
}

.back-to-previous {
  display: flex;
  color: black;
  align-items: center;
  width: -moz-min-content;
  width: min-content;
  border-radius: 25px;
  padding: 0.6em 1em;
  margin-top: 1em;
  margin-left: 1em;
  border: 1px solid black;
  transition: all 0.5s ease;
}
.back-to-previous:hover {
  background-color: black;
  color: #F1F1F1;
}

.categorypageimg-pair {
  overflow: hidden;
  position: absolute;
  top: -50%;
  width: 200px;
  height: 200px;
}

.viewport-hidden {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.categorypageimg {
  overflow: hidden;
  position: absolute;
  width: 200px;
}

.categoriesimage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.categorypageimg1 {
  top: 10%;
  left: 10%;
}

.categorypageimg2 {
  top: 10%;
  left: 35%;
}

.categorypageimg3 {
  top: 10%;
  left: 70%;
}

.categorypageimg4 {
  top: 40%;
  left: 7.5%;
}

.categorypageimg5 {
  top: 75%;
  left: 5%;
}

.categorypageimg6 {
  top: 75%;
  left: 55%;
}

.categorypageimg7 {
  top: 35%;
  left: 79%;
}

.categorypageimg8 {
  top: 60%;
  left: 20%;
}

.categorypageimg9 {
  top: 15%;
  left: 50%;
}
@media screen and (max-height: 700px) {
  .categorypageimg9 {
    top: 8%;
  }
}

.categorypageimg10 {
  top: 60%;
  left: 80%;
}

.categorypageimg11 {
  top: 75%;
  left: 33%;
}

.categorypageimg12 {
  top: 70%;
  left: 67%;
}

@media screen and (max-width: 1400px) {
  .categorypageimg12, .categeroypageimg11 {
    display: none;
  }
}
@media screen and (max-width: 1400px) and (min-width: 860px) {
  .categorypageimg8 {
    display: none;
  }
}
@media screen and (max-width: 860px) {
  .categorypageimg9 {
    top: 25%;
  }
  .categorypageimg {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 760px) {
  .categorypageimg11 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .categorypageimg9 {
    display: none;
  }
  .categorypageimg {
    width: 100px;
    height: 100px;
  }
  .categorypageimg2 {
    top: 20%;
  }
  .categorypageimg7 {
    left: 70%;
    top: 27%;
  }
  .categorypageimg4 {
    top: 35%;
  }
  .categorypageimg8 {
    left: 1%;
  }
  .categorypageimg10 {
    left: 70%;
  }
}
@media screen and (max-width: 425px) {
  .categorypageimg4 {
    top: 27%;
  }
  .categorypage__title--subtitle {
    font-size: 1rem;
    max-width: 150px;
  }
}
.blogfront {
  position: relative;
  padding: 1rem;
  width: 100%;
  color: #F1F1F1;
}
.blogfront__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5em;
  margin-block: 10em;
}
.blogfront .title {
  display: flex;
  flex-direction: column-reverse;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.blogfront .title--title {
  font-size: clamp(3.4rem, 7vw + 1rem, 11rem);
  text-align: center;
}
.blogfront .title--subtitle {
  text-transform: uppercase;
  text-align: center;
}
.blogfront__container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  place-items: center;
  max-width: 1700px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .blogfront__container {
    grid-template-columns: 1fr;
  }
}
.blogfront__card2 {
  grid-row: span 2;
}
.blogfront__card {
  gap: 0.5em;
}
.blogfront__card__content--subtitle {
  color: rgba(255, 255, 255, 0.6);
  text-transform: lowercase;
}
.blogfront__card__content--title {
  font-size: clamp(1.5rem, 0.3vw + 1.4rem, 2.1rem);
}
.blogfront__card--img {
  width: 50%;
  min-width: 280px;
}
.blogfront__card--img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article {
  padding: 15rem 1rem 1rem 1rem;
  position: relative;
  color: #F1F1F1;
}
.article .contact {
  margin-top: 8em;
  max-width: 1000px;
  margin-inline: auto;
}

.article__content {
  max-width: 1000px;
  margin-inline: auto;
}
.article__content .title {
  font-size: clamp(2.4rem, 2.5vw + 1.9rem, 4rem);
  margin-bottom: 1em;
  text-align: center;
}
.article__content .section {
  margin-top: 2em;
}
.article__content img {
  width: 100%;
  max-width: 600px;
  margin-block: 0.4em;
}
.article__content .text {
  line-height: 1.5;
}

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 1.36666666;
}

body, html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-family: "Unbounded", sans-serif;
}

.globalsmoothscroll {
  width: 100%;
  height: 100%;
}

.shadow-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.67);
  z-index: 500;
}

a {
  text-decoration: none;
  color: #F1F1F1;
}

#mainlogo {
  width: 100px;
}

.main {
  position: relative;
  height: 100%;
  width: 100%;
}
.main__title {
  font-size: clamp(3.4rem, 7vw + 1rem, 11rem);
  position: absolute;
  bottom: 0;
  left: 1.4rem;
  color: #F1F1F1;
}
.main__explore-btn {
  position: absolute;
  right: 1.4rem;
  bottom: 2rem;
  z-index: 2;
  border: 1px solid white;
  padding: 1rem;
  display: flex;
}
.main__explore-btn:hover {
  color: rgba(0, 0, 0, 0.8);
}

#video-background {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  z-index: -1;
  position: absolute;
  inset: 0;
}

.about {
  position: relative;
}
.about__section2 {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 1rem;
}
.about__section2--description {
  font-weight: 300;
  display: flex;
  min-width: 400px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1rem;
  text-transform: uppercase;
}
.about__section2--description p {
  max-width: 250px;
}
.about__section2--description img {
  width: 60%;
}
.about__random {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 300;
  max-width: 300px;
}
.about__image {
  flex: 2;
  min-width: 380px;
  position: relative;
}
.about__image img {
  width: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.about__image::after {
  content: "";
  width: 80%;
  z-index: -1;
  position: absolute;
  top: 2rem;
  height: 80%;
}

.about__description {
  display: flex;
  max-width: 1600px;
  margin-inline: auto;
  margin-top: 20em;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  color: white;
}
.about__description__ls {
  display: flex;
  flex-direction: column;
}
.about__description__text {
  display: flex;
  flex-direction: column;
  color: #F1F1F1;
  gap: 2rem;
}
.about__description__text--title {
  margin-bottom: 2rem;
  font-size: 4rem;
  position: relative;
  display: none;
  border-bottom: 1px solid rgba(241, 241, 241, 0.4);
}
.about__description__text--subtitle {
  font-size: clamp(1.45rem, 2.05vw + 1.02rem, 3.6rem);
  font-weight: 300;
  text-indent: 5rem;
}

.studio__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-block: 20%;
}
.studio__wrapper div {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

.studio-img {
  width: 45%;
  min-width: 300px;
}

.gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.gallery::before {
  background: url(images/NOISEBCKG.png);
  content: "";
  background-repeat: repeat;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.gallery-random2 {
  color: #F1F1F1;
  position: absolute;
  top: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #F1F1F1;
  right: 3rem;
}
.gallery .gallery-arrow {
  color: #F1F1F1;
  font-size: 10rem;
  font-weight: 100;
}
.gallery__container {
  position: relative;
}
.gallery__container__title {
  display: flex;
  margin: 10em auto 0;
  max-width: 1400px;
  border-top: none;
  border-left: none;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.gallery__container__title--title {
  font-size: calc(clamp(1.45rem, 2.05vw + 1.02rem, 3.6rem) + 0.5rem);
  text-indent: 4rem;
  font-weight: 300;
  color: #F1F1F1;
}
.gallery__container__title--subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 300;
  border-left: 1px solid rgba(241, 241, 241, 0.4);
  margin-top: 5em;
  padding-left: 1rem;
  margin-left: auto;
  width: 250px;
}
.gallery__wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.gallery__wrapper--title {
  text-align: center;
  display: block;
  opacity: 0;
  color: #F1F1F1;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.1vw + 0.95rem, 1.25rem);
}
.gallery__slider {
  margin-top: 2rem;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5rem;
  justify-content: center;
  overflow: hidden;
  flex-wrap: nowrap;
}
.gallery__slider--img {
  width: 350px;
  height: 450px;
}
@media screen and (max-height: 800px) {
  .gallery__slider--img {
    width: 300px;
    height: 380px;
  }
}
@media screen and (max-height: 680px) {
  .gallery__slider--img {
    width: 280px;
    height: 350px;
  }
}

.pdf {
  color: white;
  padding-block: 15rem !important;
  position: relative;
}
.pdf__wrapper {
  max-width: 1600px;
  border-left: 1px solid rgba(241, 241, 241, 0.4);
  border-right: 1px solid rgba(241, 241, 241, 0.4);
  margin-inline: auto;
  padding-inline: 0.5em;
}
@media screen and (max-width: 380px) {
  .pdf__wrapper {
    border: none;
  }
}
.pdf__wrapper__contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.pdf__wrapper__contact--title {
  text-align: center;
  font-size: clamp(1.45rem, 2.05vw + 1.02rem, 3.6rem);
  max-width: 1200px;
}
.pdf__wrapper__contact--button {
  font-size: clamp(1rem, 0.2vw + 1rem, 1.25rem);
  position: relative;
  border: 1px solid rgba(241, 241, 241, 0.4);
  padding: clamp(1.45rem, 2.05vw + 1.02rem, 3.6rem);
  border-radius: 100px;
}
.pdf__wrapper__contact--button p {
  mix-blend-mode: difference;
}
.pdf__wrapper__contact--button::before {
  bottom: 0;
  border-radius: 25%;
  height: 100%;
}

.faqs {
  position: relative;
  padding-block: 10rem !important;
}

.faqs-wrapper {
  display: flex;
  max-width: 1700px;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-inline: auto;
}

.faqs-sl {
  max-width: 700px;
}
.faqs-sl--span {
  cursor: pointer;
  background-color: #F1F1F1;
  color: black;
  line-height: 2;
  font-style: italic;
  padding: 0.2rem;
}
.faqs-sl__title {
  font-size: calc(clamp(1.45rem, 2.05vw + 1.02rem, 3.6rem) + 0.5rem);
  font-weight: 500;
  color: white;
}
.faqs-sl__text {
  text-indent: 2rem;
  margin-top: 1.5rem;
  max-width: 470px;
  font-size: 1.1rem;
  color: #F1F1F1;
  line-height: 1.2;
}

.faqs-sr {
  padding: 2rem 0 0 0;
  max-width: 700px;
  color: #F1F1F1;
}
.faqs-sr__title {
  border-bottom: 1px solid rgba(241, 241, 241, 0.4);
  padding-bottom: 0.5rem;
}

.switchclr {
  background-color: white;
  padding-left: 1rem;
  color: black;
}

.row1 {
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  height: 75px;
  padding-block: 1rem;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid rgba(241, 241, 241, 0.4);
  gap: 1rem;
}
.row1:hover {
  padding-left: 1rem;
  background-color: #F1F1F1;
  color: black;
}
.row1:hover .plus-horizontal {
  background-color: black;
}
.row1:hover .plus-vertical {
  background-color: black;
}

.q {
  display: flex;
  gap: 1rem;
  font-size: 1rem;
  justify-content: space-between;
  cursor: pointer;
  margin: 0 1rem 1rem 0;
}

.answ {
  margin-top: 2rem;
  line-height: 1.6;
  font-size: 1rem;
}
.answ--link {
  font-weight: 500;
  color: black;
  text-decoration: underline;
}

.plus {
  position: relative;
  transition: all 0.3s ease;
}

.plus-horizontal {
  width: 15px;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F1F1F1;
  height: 2px;
}

.plus-vertical {
  width: 2px;
  position: absolute;
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F1F1F1;
  height: 15px;
}

.swiper {
  width: 100%;
  padding-bottom: 5rem;
  overflow: hidden;
  z-index: 1;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 300px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 4rem;
}

.swiper-wrapper {
  display: flex;
}

.contact {
  color: #F1F1F1;
  position: relative;
  font-weight: 300;
  padding-inline: 1rem;
}
.contact__container {
  display: flex;
  flex-direction: column;
  max-width: 1350px;
  margin-inline: auto;
  justify-content: center;
}
.contact__s1 {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  justify-content: space-between;
  border-bottom: 1px solid rgba(241, 241, 241, 0.4);
  flex-wrap: wrap-reverse;
}
.contact__s1__menu--c1, .contact__s1__menu--c2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.contact__s1__menu--c1 a, .contact__s1__menu--c2 a {
  color: #F1F1F1;
  text-transform: uppercase;
  font-size: 1.09rem;
}
@media screen and (max-width: 760px) {
  .contact__s1__menu--c1, .contact__s1__menu--c2 {
    display: none;
  }
}
.contact__s1__menu--c1 {
  margin-left: 3rem;
}
.contact__s1__menu--c2 {
  text-align: end;
  margin-right: 3rem;
}
.contact__s1__menu--c1::before {
  content: "";
  background-color: rgba(241, 241, 241, 0.4);
  width: 1px;
  height: calc(100% - 2rem);
  left: -1rem;
  position: absolute;
}
.contact__s1__menu--c2::before {
  content: "";
  background-color: rgba(241, 241, 241, 0.4);
  width: 1px;
  height: calc(100% - 2rem);
  right: -1rem;
  position: absolute;
}
.contact__s1 #footersvg {
  width: 250px;
  margin-inline: auto;
}
@media screen and (max-width: 380px) {
  .contact__s1 #footersvg {
    width: 200px;
  }
}
.contact--hr {
  height: 1px;
  background-color: rgba(241, 241, 241, 0.4);
}
.contact__s2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 1rem;
  gap: 2rem;
}
.contact__s2__item p:first-child {
  font-size: 1.09rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.contact__s2__item:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.contact__s2__item:nth-child(2) a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.contact__s2 i {
  color: #F1F1F1;
  font-size: 1.2rem;
}
.contact__s3 {
  display: flex;
  border-top: 1px solid rgba(241, 241, 241, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  flex-wrap: wrap-reverse;
  padding: 2rem 1rem;
  gap: 2rem;
  justify-content: space-between;
}
.contact__explore-btn {
  position: relative;
  z-index: 0;
  background-color: black;
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 1rem;
  display: flex;
  gap: 1rem;
}
.contact__explore-btn:hover {
  color: black;
}
.contact__explore-btn::before {
  left: 0;
  background-color: #F1F1F1;
  bottom: 0;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .gallery__slider {
    display: none;
  }
  .gallery-wrapper {
    display: none;
  }
  .gallery__wrapper--title {
    display: none;
  }
  .pin-spacer {
    display: none !important;
  }
  .barcode {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .swiper {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .about__section2--description {
    display: none;
  }
  .about__random {
    font-size: 0.8rem;
  }
  .gallery__container__title--subtitle {
    font-size: 0.8rem;
  }
  .gallery__container__title--title {
    text-indent: 0rem;
  }
  .about__description__text--subtitle {
    text-indent: 1rem;
  }
}
@media screen and (max-width: 759px) {
  .header__md {
    display: none;
  }
  .main__explore-btn {
    display: none;
  }
  .contact__container {
    padding-right: 0;
  }
  .contact__sidebar {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .gallery__slider img {
    height: 400px;
    width: 400px;
  }
  .scroll-up .header {
    background-color: transparent;
  }
}
@media screen and (max-width: 480px) {
  .row1 {
    height: 100px;
  }
  .contact {
    padding-top: 2rem;
  }
  .contact__title--title {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */