/* @import url('https://fonts.cdnfonts.com/css/proxima-nova-2'); */
/** Main styles **/
:root{
  --main:#4a4a37;
  --accent:#dc0752;
  --text:#252525;
  --gray:#666666;
  --lgray:#aaaaaa;
  --llgray:#eeeeee;
  --delay:1.5s;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: #f8f8f1;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
header{
  position: relative;
  z-index: 99;
  font-family: Poppins;
  font-weight: 300;
}
#logo{
  text-align: center;
  font-size: 50px;
  font-weight: 100;
  line-height: 40px;
  letter-spacing: 12px;
  width: fit-content;
  margin: 20px auto;
  padding: 0 20px;
  cursor: pointer;
  transition: all 1s;
}

#logo span{font-size: 20px; letter-spacing: 12px;margin-left: -5%;}

#logo:hover{
  letter-spacing: 16px;
}

.navbar{
  background-color: #0101010f;
  position: relative;
}
.navbar .container-fluid{
  padding: 0 5%;
}
.navbar-brand{
  padding: 0 1rem;
}
/* .navbar .social{
  position: absolute;
  right: 8px;
} */
.social i {
  opacity: .6;
  cursor: pointer;
}

.social i:hover {
  opacity: 1;
}
.navbar-nav{
  display: flex;
  width: 100%;
  justify-content: space-around;
}
a.nav-link{
  letter-spacing: 4px;
  transition: all .5s;
  opacity: 0.7;
}
a.nav-link:hover{
  letter-spacing: 6px;
  opacity: 1;
}
.navbar .navbar-toggler{
  border:none !important;
  box-shadow:none;
  font-size: 1.5em;
  opacity: 0.6;
}
.navbar .language-switcher{
  position: absolute;
  right: 8px;
}
.language-switcher a {
    font-size: 24px;
    text-decoration: none;
    margin: 0 5px;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.language-switcher a:hover,
.language-switcher a.lang-active {
    opacity: 1;
}

#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: var(--gold);
  background-color: #212529;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2100;

  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  animation: totop 1.5s ease-out forwards;
  animation-delay: var(--delay);
}
.bar-container span {
  display: inline-block;
  padding: 20px;
  color: #c3b077;
  position: relative;
  -webkit-animation: scale 2s ease-out infinite;
  animation: scale var(--delay) ease-out infinite;
  opacity: 0.1;
}
.bar-container span:nth-child(1) {animation-delay: 0;}
.bar-container span:nth-child(2) {animation-delay: calc(0.2*var(--delay))}
.bar-container span:nth-child(3) {animation-delay: calc(0.4*var(--delay))}
.bar-container span:nth-child(4) {animation-delay: calc(0.6*var(--delay))}
.bar-container span:nth-child(5) {animation-delay: calc(0.8*var(--delay))}
.bar-container span:nth-child(6) {animation-delay: calc(1.0*var(--delay))}
.bar-container span:nth-child(7) {animation-delay: calc(1.2*var(--delay))}

@keyframes scale {
  0% {
    transform: scale(1.5);
    rotate:y 20deg;
    opacity: 0;
  }
  50% {
    transform: scale(3) ;
    rotate:y 0deg;
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2) ;
    rotate:y 90deg;
    opacity: 0.1;
  }
}
@keyframes totop {
  0% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }  
  100% { clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%); }
}


#hometop{
  position: relative;
  background-color: #212529;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 1;
}

#hometop_img{
  filter: brightness(0.8);
  position: absolute;
  top:0;
  left: 0;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 2s ease-in-out;
  z-index: 1;
}



#hometop_img:hover{
  transform: scale(1.05);
}

#hometop_content{
  min-height: 100vh;
  position: relative;
  z-index: 5;
}
 
#home_info{
  font-weight: 300;
  padding: 30px 15px;
  height: 84vh;
  display: flex;
  align-items: center;
  line-height: 170%;
}

.home_icons{
  /* border:3px solid #eeeeee;
  border-radius: 15px; */
  margin: 15px auto;
  padding: 20px;
  text-align: center;
}
.home_icons img{
  height: 120px;
  width: 100%;
  object-fit: contain;
}
.home_icons p{
  font-size: 20px;
  margin: 15px auto 5px;
}


.google-map {
  padding-bottom: 300px;
  position: relative;
}

.google-map iframe {
  height: 100%;
  max-height: 350px;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}


.grid_slide{
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  cursor: pointer;
}
.grid_slide:hover img{
transform: scale(1.1);
}

.grid_slide img{
  width: 100%;
  height: max(30vh, 200px);
  object-fit: cover;
  transition: transform 1s;
}
.grid_slide video{
  height: auto;
  max-height: 600px;
  width: auto;
}

#slider_modal{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 min(100px, calc(50vw - 50vh));
  /* padding: 0; */
  background-color: rgba(0,0,0,.9);
  z-index: 9999;
}

.slick-list{
  overflow: visible !important;
}
.slick-slide img{
  max-height: 100vh;
  width: 100%;
  object-fit: contain;
}
.slick-slider {
  margin-top: 50vh;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}

#slider_modal::after{
  content: '×';
  font-size: 34px;
  line-height: 0;
  position: absolute;
  top: 15px;
  left: calc(50% - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  color: #cccccc;
  background-color: rgba(132, 132, 132, 0.12);
}


.cubic_bg {
  position: relative;
    background-color: #fbf8f3;
    opacity: 0.8;
    background-image: linear-gradient(#cccccc 1px, transparent 1px), linear-gradient(to right, #cccccc 1px, #fbf8f3 1px);
    background-size: 20px 20px;
  }

/* .slider_modal_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.slider_modal_content h3{
  font-size: 20px;
  font-weight: 300;
  margin: 0;
}
.slider_modal_content p{
  font-size: 14px;
  font-weight: 300;
  margin: 10px 0 0;
}
.slider_modal_content button{
  background-color: #dc0752;
  color: #fff;
  font-size: 14px
  text-align: center;
  background-color: #1f222977;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 1;
  z-index: 9999;
} */

.footer{
  position: relative;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #999999;
  z-index: 12;
}
#footer_logo{
  font-weight: 200;
  letter-spacing: 12px;
}
.social a,.social a i{
  text-decoration: none;
  color: #f4f4f4;
  transition: .3s;
}

.social a:hover{
  color: #c3b077;
}

@media (max-width: 992px) {
.navbar .social {
    position: relative;
    right: unset;
  }
#hometop {
    height: auto;
    overflow: visible;
    padding-bottom: 50px;
  }
  #hometop_img {
    filter: brightness(0.8);
    position: fixed;
  }
  .container.bottom_content {
    position: relative;
    /* background: #ffffff; */
    padding: 1.5rem;
    margin-bottom: 20px;
    z-index: 8;
  }
  .cubic_bg{
    z-index: 8;
  }

}

@media (max-width: 768px) {
  #logo {
      font-size: 30px;
      letter-spacing: 18px;
      line-height: 25px;
    }
  #logo span{
      font-size: 14px;
      letter-spacing: 9px;
    }
    #logo:hover{
      letter-spacing: 22px;
    }
    .bar-container span {
      padding: 10px;
      font-size: 10px;
    }
    #social{
      display: contents;
    }
    #home_info {
      height: 60vh;
    }
    .grid_slide{
      padding: 0;
    }
  




}
