/* ================================
   LATO FONT FAMILY - FULL SET
================================ */

/* Thin - 100 */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* Light - 300 */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Regular - 400 */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Bold - 700 */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Black - 900 */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ================================
   MOUSE MEMOIRS FONT
================================ */

@font-face {
  font-family: "MouseMemoirs";
  src: url("../fonts/MouseMemoirs-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* ================================
   GLOBAL DEFAULT FONT
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "MouseMemoirs", cursive;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Preloader Start */
#preloader {
  position: fixed;
  inset: 0;
  /* background: #111; */
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

#preloader .color-drop {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, #ff4d4d, #ffb347); */
  background: linear-gradient(
    to bottom right,
    /* 1. Yellow/Light Orange (Top-Left) */ #ffe78f 0%,
    /* 2. Bright Orange */ #ffb445 15%,
    /* 3. Red-Orange */ #ff6b57 30%,
    /* 4. Vibrant Red/Pink */ #e7335e 50%,
    /* 5. Magenta/Purple */ #b93992 65%,
    /* 6. Deep Purple */ #8337a7 80%,
    /* 7. Blue/Indigo (Bottom-Right) */ #5343c4 100%
  );
}

#preloader .loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

#preloader #logo {
  font-size: 64px;
  letter-spacing: 7px;
  margin-bottom: 30px;
  font-weight: 800;
  overflow: hidden;
}

/* #preloader #logo span.lato {
  font-family: "Lato", sans-serif;
  font-weight: 800;
} */

#preloader #logo span {
  display: inline-block;
  transform: translateY(-150px);
}

#preloader .progress-wrapper {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 15px;
}

#preloader .progress-bar {
  height: 100%;
  width: 0%;
  background: #fff;
}

#preloader .percentage {
  font-size: 20px;
  font-weight: 600;
}

body.preloading {
  overflow: hidden;
  visibility: hidden;
}
body.preloading #preloader {
  visibility: visible;
}
/* Preloader End */
/* body > *:not(#preloader):not(.modal-backdrop) {
  opacity: 0;           
  transition: opacity 0.8s ease; 
} */

.site-wrapper {
  opacity: 0;
  transition: opacity 0.01s ease;
}
