@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
}
body {
  font-size: 16px;
}
.logoarea {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  z-index: 99;
}
.logomain {
  height: 20vh;
  width: auto;
  animation: revealmain 3.5s forwards;
  margin-bottom: -15px;
}
.logotext {
  height: 100%;
  width: auto;
}
.logosubtext {
  height: 100%;
  width: auto;
}
.ltext {
  height: 12vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lsubtext {
  height: 4vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.textrevealer {
  background: #fff;
  width: 100%;
  height: 100%;
  top:0px;
  left: 0px;
  position: absolute;
  animation: reveal 3s forwards;
  box-shadow: 0px 0px 30px 50px rgb(255,255,255);
}
.subtextrevealer {
  background: #fff;
  width: 100%;
  height: 100%;
  top:0px;
  left: 0px;
  position: absolute;
  animation: reveal 3s forwards;
  animation-delay: 1s;
  box-shadow: 0px 0px 30px 50px rgb(255,255,255);
}

video {
  position: absolute;
  z-index: 1;
}
.whitescreen {
  position:absolute;
  top:0px;
  left:0px;
  background: #fff;
  height:100%;
  width:100%;
  z-index: 10;
  opacity: 1;
  transition: 2s ease;
}
.label {
  color:rgb(96,84,51);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond';
  background: rgb(255,255,255, .9);
  padding: 5px;
  margin-top: 15px;
  animation: revealmain 3.5s 1.5s both;
}
 @-webkit-keyframes logo-main {
  0% {
    opacity: 0;
    transform: scale(4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logo-main {
  0% {
    opacity: 0;
    transform: scale(4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes logo-text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logo-text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes reveal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(180%);
  }
}
@keyframes reveal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(180%);
  }
}

@-webkit-keyframes revealmain {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes revealmain {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes revealmainr {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes revealmainr {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 999px) {
  .desktop_video {
    display:none;
  }
  .mobile_video {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 1000px) {
  .mobile_video {
    display:none;
  }
  .desktop_video {
    height: auto;
    width:100%;
  }
}