/* VARIABLE */
:root {
  --text: "Prompt", sans-serif;
  --white: #fff;
  --black: #000;
  --grey: #333;
  --green: #2e342a;
  --primary: #ebcca1;
  --secondary: #b78337;
  --tertiary: #f0e5d5;
}

/* MEDIA QUERY */
:root {
  --lightbox: rgb(0 0 0 / 0.75);
  --carousel-text: #fff;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
  padding-top: 0;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}
[data-bs-theme=dark] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme=dark] .lightbox-modal .carousel-control-prev-icon {
  filter: none;
}

.lightbox-content h4 {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body, p, a, li, td, span, dd, .route-text {
  font-family: var(--text);
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

body {
  background: var(--black);
}
body img {
  max-width: 100%;
}
body p {
  color: var(--tertiary);
  line-height: 1.1;
}
body h1, body h2, body h3, body h4 {
  color: var(--primary);
}
body h2 {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 1rem;
}
body h4 {
  font-size: 1.16rem;
  font-weight: 400;
}
body .color-primary {
  color: var(--primary);
}
body .color-secondary {
  color: var(--secondary);
}
body .color-primary {
  color: var(--primary);
}
body .bg-primary {
  background-color: var(--primary);
}
body .bg-secondary {
  background-color: var(--secondary);
}
body .bg-tertiary {
  background-color: var(--tertiary);
}
body a,
body a:focus,
body a:hover {
  text-decoration: none;
  color: var(--secondary);
}
body li {
  margin: 0 0 0.5rem;
  padding: 0 0 0 0.5rem;
  list-style: none;
}
body .button {
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  padding: 0.5rem 0.5rem 0.5rem 6rem;
  border-radius: 0 !important;
  font-size: 1.25rem;
  position: relative;
  margin: 1rem 0 0;
  display: inline-block;
}
body .button:hover:before, body .button:active:before, body .button:focus:before {
  left: 0.5rem;
}
body .button:before {
  content: "";
  background: url(../img/arrow.png) no-repeat scroll 50% transparent;
  background-size: contain;
  width: 5rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: calc(50% - 0.5rem);
  transition: 0.5s ease 0s;
}
body .center {
  text-align: center;
}
body .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body section {
  padding: 0.75rem 0 0;
  width: calc(100% - 1.5rem);
  margin-left: auto;
  margin-right: auto;
}
body section .row {
  margin-left: auto;
  margin-right: auto;
}

header {
  padding: 1rem 1.5rem 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: transparent;
  transition: 0.5s ease 0s;
}
header.sticky {
  background-color: #000;
  padding: 0 1.5rem;
  transition: 0.5s ease 0s;
}
header ul {
  margin: 0;
  padding: 0.75rem;
}
header ul li {
  margin: 0 0 0 1rem;
}
header ul li a {
  color: #ebcca1;
  display: inline-block;
  transition: 0.5s ease 0s;
}
header ul li a:hover, header ul li a:focus, header ul li a:active {
  color: var(--secondary);
}
header svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--tertiary);
  transition: 0.5s ease 0s;
}
header svg:hover, header svg:focus, header svg:active {
  fill: var(--secondary);
}
header .email svg {
  width: 2.15rem;
  height: 2.15rem;
  fill: #f0e5d5;
}
header .email svg:hover, header .email svg:focus, header .email svg:active {
  fill: var(--secondary);
}
header .tel a,
header .lang a {
  padding: 0.25rem 0;
}

#intro {
  background: url(../img/slider.jpg) no-repeat scroll 50% transparent;
  background-size: cover;
  height: calc(100vh - 1.5rem);
  margin-top: 0.75rem;
}
#intro .col-md-6 {
  height: 100vh;
}
#intro .col-md-6 h1 {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

#innovation {
  margin-bottom: 0.75rem;
}
#innovation .col-md-8 {
  background-color: var(--green);
  padding: 4rem 5rem;
}
@media (max-width: 639px) {
  #innovation .col-md-8 {
    padding: 2rem;
  }
}
#innovation .col-md-4 {
  padding: 0 0 0 0.75rem;
}

#perspective {
  background: url(../img/cta.jpg) no-repeat scroll 50% transparent;
  background-size: cover;
  height: 100vh;
  position: relative;
  padding: 1.5rem;
}
#perspective::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#perspective .col-md-12 {
  height: 100vh;
  position: relative;
}
#perspective .col-md-12 h3 {
  text-transform: uppercase;
  font-size: 3.7rem;
  text-align: center;
  font-weight: 700;
  color: var(--tertiary);
  margin: 0;
  letter-spacing: 1px;
  max-width: 100%;
}
@media (max-width: 767px) {
  #perspective .col-md-12 h3 {
    font-size: 3rem;
  }
}
@media (max-width: 539px) {
  #perspective .col-md-12 h3 {
    font-size: 2rem;
  }
}
@media (max-width: 1023px) {
  #perspective .col-md-12 h3 br {
    display: none;
  }
}

@media (max-width: 767px) {
  #service .row {
    flex-direction: column-reverse;
  }
}
#service .row .col-md-8 {
  padding: 4rem 5rem;
}
@media (max-width: 639px) {
  #service .row .col-md-8 {
    padding: 2rem;
  }
}
#service .row .col-md-4 {
  padding: 0 0.75rem 0 0;
}

.photo-gallery {
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .photo-gallery {
    margin-bottom: 0;
  }
}
.photo-gallery .gallery-grid {
  justify-content: space-between;
}
.photo-gallery .col {
  padding: 0;
  flex: 0 0 calc(25% - 0.5rem);
}
@media (max-width: 767px) {
  .photo-gallery .col {
    flex: 0 0 calc(50% - 0.5rem);
    margin: 0 0 1rem;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
}

#consultation {
  background: var(--green);
  width: calc(100% - 1.5rem);
  margin: 0 auto;
  overflow: hidden;
}
#consultation .col-md-8 {
  padding: 4rem 5rem;
}
@media (max-width: 639px) {
  #consultation .col-md-8 {
    padding: 2rem;
  }
}
#consultation .col-md-8 .button {
  margin-top: 2rem;
}
#consultation .col-md-4 {
  position: relative;
  min-height: 15rem;
}
#consultation .col-md-4 img {
  position: absolute;
  top: 1.5rem;
}

footer {
  padding: 3rem 1.5rem;
}
footer .button {
  margin: 1rem auto;
}
@media (max-width: 767px) {
  footer .d-flex {
    flex-direction: column;
  }
}
footer .d-flex .logo {
  width: 20rem;
  margin: 0 2rem 0 0;
  max-width: 50%;
}
@media (max-width: 767px) {
  footer .d-flex .logo {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2rem;
  }
}
footer .d-flex h3 {
  font-size: 1.1rem;
  color: #e6b867;
  margin: 0;
  line-height: 1;
  transform: translate(0px, 1.75px);
}

header ul li.insta {
  display: none;
  visibility: hidden;
}

/*# sourceMappingURL=styles.css.map */
