/*Fonts face*/
@font-face {
  font-family: 'Poppins';
  src: url('../public/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poiret One';
  src: url('../public/fonts/PoiretOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'abel';
  src: url('../public/fonts/Abel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Russo One';
  src: url('../public/fonts/RussoOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*Goblal styles*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar-track {
  background-color: black;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: black;
  z-index: -9;
}

::-webkit-scrollbar-thumb {
  background-color: white;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #AC1400;
}

html,
body,
#smooth-wrapper,
#smooth-content {
  margin: 0;
  padding: 0;
  background-color: #0A0A0A;
}

/** preloader animation */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #fff;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*Mobile nav css*/

/*Main content CSS*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: -1;
}

.landing {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 2em 10em;
  z-index: 1;
}

.logo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -3;
}

.logo {
  text-align: center;
  position: relative;
  font-size: 2em;
  color: #fff;
  z-index: 2;
}

.joinUs {
  color: white;
  background-color: #810F00;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1em 6em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poiret One", sans-serif;
  backdrop-filter: blur(10px);
}

.mob-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-btns {
  display: flex;
  gap: 2em;
}

nav a {
  text-decoration: none;
  color: #E2DFD0;
  font-weight: 500;
}

nav a:hover {
  color: #AC1400;
  text-decoration: double underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: 0.3s;
}

.logo-sub {
  text-align: center;
  margin-top: 10em;
  color: #E2DFD0;
  font-size: 4em;
  font-family: "Russo One", sans-serif;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 0.8em;
  font-size: 1.5em;
}

.marquee-text {
  font-size: 2.5em;
  font-family: "Russo One", sans-serif;
  padding: 0.5em 0;
}

.main-logo-area {
  position: relative;
}

/* services content*/
.services,
#about {
  padding: 5em 10em;
  margin: 5em 0;
  color: #939393;
}

.heading-service {
  display: flex;
  justify-content: space-between;
}

.heading-service h3,
.heading-about h3 {
  font-size: 3.7em;
  color: white;
}

.heading-service h2 {
  font-size: 10.62em;
  color: #810F00;
  margin-bottom: 0px;
}

.side-heading-img {
  width: 40vw;
  height: 25vh;
  border: 1px solid rgba(43, 43, 43, 0.7);
}

.side-heading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-text,
.we-offer-desc,
.about-dd {
  text-align: justify;
  font-family: "Poppins", sans-serif;
}

.service-content {
  width: 60vw;
}

.sub-heading {
  color: #AC1400;
  font-weight: 800;
}

.marquee {
  margin: 2em 0;
  padding: 0.4em 0;
  background-color: #AC1400;
}

.sub-marquee-text {
  font-size: 1.4em;
  font-family: "Russo One", sans-serif;
  color: white;
}

/* tagline content */
.tagline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5em 1em;
  margin: 5em 0;
  border-top: 5px solid #AC1400;
  border-bottom: 5px solid #AC1400;
}

.tagline h1 {
  font-size: 6em;
  color: white;
  font-family: "Russo One", sans-serif;
}

.tagline h2 {
  font-size: 1.2em;
  color: whitesmoke;
  font-family: "abel", sans-serif;
}

/* About section*/
.heading-about {
  display: flex;
  justify-content: end;
  text-align: end;
}

.heading-about h2 {
  font-size: 9em;
  color: #810F00;
  margin-bottom: 0px;
}

.border-about {
  width: 100%;
  height: 2px;
  background-color: whitesmoke;
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 3em;
  padding: 4em 0;
}

.find-us {
  margin: 4em 0;
}

.find-us h1,
.socials h1 {
  color: #fff;
  margin-bottom: 0px;
  font-family: "Russo One", sans-serif;
  font-size: 2.5em;
}

#map,
#social,
.mail a {
  color: #fff;
}

#map:hover {
  color: #AC1400;
  transition: 0.3s;
}

.socials aside {
  display: flex;
  gap: 1em;
}

aside #social:hover {
  color: #810F00;
  transition: 0.3s;
}

#footer {
  margin: 0 10em;
  border-radius: 10px 10px 0 0;
  padding: 2em 5em;
  background-color: #810F00;
  color: whitesmoke;
}

.footer-details {
  display: flex;
  justify-content: space-between;
}

.footer-heading h2 {
  font-size: "Russo One", sans-serif;
}

.footer-heading h3 {
  font-size: small;
  font-family: "abel", sans-serif;
}

.ceo {
  position: relative;
}

.ceo-name {
  position: absolute;
  bottom: 1vh;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 2px 2px #0A0A0A;
  background: #0a0a0a52;
  backdrop-filter: blur(2px);
  width: 100%;
  font-family: "Russo One", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-footer a {
  color: #fff;
}

/* media screen adjustments */
@media (max-width: 1680px) and (min-width: 1080px) {
  .main-logo-area {
    margin-top: 3em;
  }

  .landing {
    padding: 2em 5em;
  }

  .logo-main {
    font-size: 13em;
    line-height: 0.8em;
  }

  .logo-sub {
    margin-top: 12em;
    font-size: 2.6em;
  }

  .heading-service h3 {
    font-size: 2.5em;
  }

  .heading-service h2 {
    font-size: 5.5em;
  }

  .side-heading-img {
    width: 60%;
    height: 20vh;
    border: 1px solid rgba(43, 43, 43, 0.7);
  }

  .about-dd {
    text-align: start;
  }

  .about-desc {
    text-align: justify;
  }

  .ceo-img {
    width: 50vw;
    height: 70%;
    object-fit: cover;
    object-position: center;
  }

  .services,
  #about {
    padding: 2em 2.5em;
    margin: 2em 0;
  }

  .tagline h1 {
    font-size: 4em;
    color: white;
    font-family: "Russo One", sans-serif;
  }
}

@media (max-width: 1080px) and (min-width: 200px) {
  .landing {
    padding: 2em;
  }

  .main-logo-area {
    position: absolute;
    bottom: 2%;
  }

  nav {
    padding: 1em 2em;
    display: block;
  }

  .nav-btns {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.2em;
  }

  .logo-sub {
    font-size: 2em;
    text-align: start;
  }

  .services,
  #about {
    padding: 2em 1em;
    margin: 2em 0;
  }

  .heading-service {
    flex-direction: column;
  }

  .side-heading-img {
    width: 100%;
    height: 10vh;
    border: 1px solid rgba(43, 43, 43, 0.7);
  }

  .service-content {
    width: 100%;
  }

  .heading-about {
    display: flex;
    justify-content: start;
    text-align: start;
  }

  .heading-service h3,
  .heading-about h3 {
    font-size: 1.5em;
  }

  .heading-service h2,
  .heading-about h2 {
    font-size: 5em;
  }

  .about-content {
    flex-direction: column;
  }

  .ceo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .marquee-text {
    font-size: 1.5em;
    font-family: "Russo One", sans-serif;
    padding: 0.3em 0;
  }

  #map {
    color: #AC1400;
  }

  .footer-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #footer {
    margin: 0 1em;
    border-radius: 10px 10px 0 0;
    padding: 2em 1em;
    background-color: #810F00;
    color: whitesmoke;
  }

  .footer-heading,
  .footer-content {
    text-align: center;
  }

  .tagline {
    padding: 2em 1em;
    text-align: center;
  }

  .tagline h1 {
    font-size: 2em;
  }

  .tagline h2 {
    font-size: small;
  }

  /* iframe {
    width: 100%;
  } */

  .find-us h1,
  .socials h1 {
    font-size: 1.5em;
  }

}

@media (max-height: 500px) {
  .logo-sub {
    margin-top: 8em;
    font-size: 1.2em;
  }

  nav {
    font-size: small;
    padding: 1em 2em;
  }
}