/* Theme Color */
.test {
  width: 200%;
  display: relative;
}
.circle {
  display: relative;
  float: left;
  height: 50px;
  width: 50%;
  background-color: red;
  font-size: 50px;
}
body {
  color: #45260a;
}
.heading-primary,
.heading-secondary,
.heading-tertiary {
  color: #6d726e;
}
/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  background: white;

  /* Because we want header to be sticky later */

  padding: 1.6rem 9rem;
  position: relative;
}

.section-logo {
  display: flex;
}
.logo {
  width: 13.5rem;
}

/**************************/
/* HERO SECTION */
/**************************/
.section-hero {
  position: relative;
}
.hero-sub-div {
  position: absolute;
  z-index: 1;
  right: 5%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
}
.hero-introduce {
  font-family: Sofia Pro;
  font-style: normal;
  font-weight: normal;
  font-size: 4.5rem;
  line-height: 4.5rem;
  text-align: right;
  color: #ffffff;
  padding-bottom: 5rem;
}
.hero-learn-more-box {
  background: #f9b0b0;
  border: none;
  outline: none;
  padding: 1.5rem;
}

.hero-learn-more {
  font-family: Cardo;
  font-style: normal;
  font-weight: normal;
  font-size: 2.3rem;
  line-height: 3.1rem;
  text-decoration: none;
  color: #ffffff;
}
.splide__slide img {
  width: 100%;
  min-height: 255px;
  object-fit: cover;
}
.splide__arrow {
  font-size: 4rem;
}
.splide__arrow.splide__arrow--prev {
  left: 0;
  background: none;
}
.splide__arrow.splide__arrow--next {
  right: 0;
  background: none;
}
.splide__arrow svg {
  fill: #ffa5a5 !important;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav {
  background: rgb(255, 251, 251);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in;
  z-index: 2;

  /* Hide navigation */
  /* Allows NO transitions at all */
  /* display: none; */

  /* 1) Hide it visually */
  opacity: 0;
  /* 2) Make it unaccessible to mouse and keyboard */
  pointer-events: none;
  /* 3) Hide it from screen readers */
  visibility: hidden;
}

.nav-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
  background: rgb(255, 251, 251);
  font-family: sofia pro sans-serif;
  z-index: 2;
  transition: all 0.5s ease-in;
  transform: translateX(0%);
}

.main-nav-list {
  text-align: center;
}

.main-nav li,
.nav-open .main-nav li {
  padding: 2rem;
  list-style-type: none;
}
.main-nav li a,
.nav-open .main-nav li a {
  color: #ffa5a5;
  text-decoration: none;
  font-family: Sofia Pro;
  font-size: 2.5rem;
  border-bottom: solid 2px transparent;
  transition: transform 0.5s ease-in;
}

.nav-open .main-nav li a:hover,
.nav-open .main-nav li a:active {
  transform: scaleX(1);
  border-bottom: solid 2px #ffa5a5;
  transition: transform 0.5s ease-in;
}

.btn-mobile-nav {
  color: #ffa5a5;
  background-color: transparent;
  border: none;
  width: 9rem;
  align-self: flex-end;
  z-index: 9999;
  cursor: pointer;
}
.menu-button {
  color: #ffa5a5;
  text-decoration: none;
  font-size: 2rem;
  font-family: Sofia Pro;
}

.nav-open .menu-button {
  display: none;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
  font-size: 3rem;
}

.nav-open .icon-mobile-nav[name="close-outline"] {
  display: block;
  margin: auto;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0);
  justify-content: space-between;
}
.sticky .none {
  display: none;
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

.sticky .logo {
  /*display: none;*/
  width: 7rem;
}

/*PROMO*/
.promo_image {
  width: 100%;
}

/**************************/
/* BACKGROUND SECTION */
/**************************/
.section-background {
  background-image: url("/img/background.jpg");
  background-size: cover;
}

/**************************/
/* ABOUT SECTION */
/**************************/
.container-about {
  padding: 9.6rem 25%;
}

.introduce {
  position: relative;
  display: flex;
}
.introduce-bottom {
  position: relative;
}
.introduce-left {
  font-family: Sofia Pro;
  flex: 1;
  padding: 0 5rem;
  font-size: 1.5rem;
  line-height: 4.7rem;
  margin-left: -10px;
}
.introduce-left img {
  width: 13rem;
  margin-bottom: 3rem;
}

.introduce-right {
  flex: 1;
}
.introduce-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.introduce-bottom {
  position: relative;
  text-align: center;
  top: -110px;
  z-index: -1;
}
.introduce-bottom img {
  width: 70%;
}

/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}
.heading-featured-in {
  font-size: 3.6 rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #888;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}

/**************************/
/* SERVICE SECTION */
/**************************/

.container-services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  width: 100%;
}

/*
.template-service {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
*/
.box-service {
  position: relative;
}
.box-service img {
  width: 101%;
}

.box-service img:hover {
  filter: brightness(0.4);
  transition: all 0.5s ease-in;
}

.box-service h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-family: Sofia Pro;
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 29px;
  text-transform: uppercase;
  text-align: center;

  /* identical to box height, or 104% */
  color: transparent;
}
.box-serivce img {
  animation: run ease 3s;
  -webkit-animation: run ease 3s;
  -moz-animation: run ease 3s;
  -o-animation: run ease 3s;
  -ms-animation: run ease 3s;
}

@keyframes run {
  0% {
    margin-left: -98%;
  }
  100% {
    margin-left: 0%;
  }
}

@-moz-keyframes run {
  0% {
    margin-left: -98%;
  }
  100% {
    margin-left: 0%;
  }
}

@-webkit-keyframes run {
  0% {
    margin-left: -98%;
  }
  100% {
    margin-left: 0%;
  }
}

@-o-keyframes run {
  0% {
    margin-left: -98%;
  }
  100% {
    margin-left: 0%;
  }
}

@-ms-keyframes run {
  0% {
    margin-left: -98%;
  }
  100% {
    margin-left: 0%;
  }
}
/**************************/
/*** EMINENCE SECTION ***/
/**************************/
.container-eminence {
  display: grid;
  align-items: center;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
  font-family: Cardo;
  padding-left: 0;
}
.eminence-products img {
  width: 100%;
  height: 100%;
}

.eminencects-explain {
  width: 100%;
  height: 100%;
}

.eminence-logo {
  margin-left: -3%;
  margin-bottom: 2rem;
}

.eminence-logo img {
  width: 70%;
}
.eminence-philosophy {
  margin-bottom: 4rem;
}

.eminence-philosophy h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.eminence-philosophy p {
  font-size: 1.5rem;
  line-height: 20px;
}

.eminence-buttons {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.eminence-button {
  width: 100%;
  background-color: #6c5c1f;
  padding: 1.8rem 0;
  color: white;
  text-align: center;
  font-size: 2rem;
  font-family: Cardo;
  font-weight: normal;
  cursor: pointer;
}
/**************************/
/*** Gallery ***/
/**************************/

.section-gallary {
  background-color: rgba(249, 176, 176, 0.15);
  display: flex;
  flex-direction: column;
}
/* Slideshow container */
#splide2 {
  padding: 10rem;
  position: relative;
}

/* Hide the images by default */

#prev,
#next {
  position: absolute;
  top: 55%;
  width: auto;
  margin-top: -22px;
  padding: 1.6rem;
  opacity: 0.5;
  color: #ffa5a5;
  font-weight: bold;
  font-size: 6.5rem;
  user-select: none;
}

#prev {
  left: 0;
  transform: translate(50%, -50%);
  border-radius: 5px 0 0 5px;
}

/* Position the "next button" to the right */
#next {
  right: 0;
  transform: translate(-50%, -50%);
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
#prev:hover,
#next:hover {
  box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
  transition: 0.2s all;
  outline: none;
}

/**************************/
/*** Moreinfo ***/
/**************************/
.container-moreinfo {
  /*margin-top: 20rem;*/
  display: flex;
  height: 11rem;
  align-items: center;
  justify-content: center;
  background-color: #ffa5a5;
  gap: 5rem;
  font-family: sofia pro;
}

.moreinfo-button {
  background-color: white;
  padding: 2rem 0;
  font-size: 2.5rem;
  font-family: Sofia Pro;
  color: #ffa5a5;
  text-align: center;
  cursor: pointer;
  width: 25%;
}
.moreinfo-button a,
.moreinfo-button a:hover,
.moreinfo-button a:visited,
.moreinfo-button a:active {
  text-decoration: none;
  color: #ffa5a5;
}

/* .map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
} */

.map-responsive iframe {
  height: 100%;
  width: 100%;
}

/**************************/
/* FOOTER */
/**************************/

.container-footer {
  display: grid;
  grid-template-columns: 5fr 5fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  padding: 3rem 5rem;
  font-family: Sofia Pro;
  font-weight: 400;
  color: #f3d4d4;
  font-size: 1.5rem;
}

.footer-copyright {
  line-height: 1.5;

  /* or 233% */
}

.footer-link {
  color: #f3d4d4;
  text-decoration: none;
  cursor: pointer;
}

.footer-menu {
  align-items: right;
  text-align: right;
  line-height: 1.5;
}

.socialmeida {
  display: flex;
  gap: 1rem;
}

.socialmeida img {
  width: 5rem;
}
