/* [Master Stylesheet] */
/* ----------------------------------------------------------
    :: Template 
    :: Author: Turbo
    :: Author URL:www.boo-code.com 
    :: Version: 1.0
    :: Created: 10 2023
    :: Last Updated: 10 2023
    ---------------------------------------------------------- */
/* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
@font-face {
  font-family: "Expo";
  src: url("../fonts/expo.ttf");
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: unset;
}

body {
  background: #000;
  font-family: "Expo", sans-serif;
}

.hero {
  height: 100vh;
  width: 100%;
  background: url(../images/bg.webp) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
.hero .content {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.hero .content img.logo {
  width: 12rem;
}
.hero .content p {
  font-size: 1.2rem;
  line-height: 1.8;
}
.hero .content .social {
  display: flex;
  gap: 1rem;
}
.hero .content .social li {
  transition: all 0.3s ease;
}
.hero .content .social li img {
  width: 2.5rem;
}
.hero .content .social li:hover {
  transform: scale(1.1);
}
.hero .content .border-line {
  width: 100%;
  max-width: 30rem;
}
.hero .content .main-btn {
  background: #B28A54;
  border: 2px solid #B28A54;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  min-width: 20rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.hero .content .main-btn:hover {
  background: transparent;
  color: #B28A54;
  border-color: #B28A54;
}

/* Responsive */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .hero {
    background: url(../images/bg-mobile.webp) no-repeat bottom;
    background-size: 30rem auto;
  }
  .hero .content {
    gap: 2rem;
  }
  .hero .content img.logo {
    width: 8rem;
  }
  .hero .content p {
    font-size: 1rem;
  }
  .hero .content .social li img {
    width: 2rem;
  }
  .hero .content .main-btn {
    min-width: 15rem;
    padding: 0.5rem 1rem;
  }
}
/* galaxy S5 */
/* iphone x, 6/7/8 */
/* iphone 6/7/8 plus */
/* ipad */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .hero {
    background: url(../images/bg-mobile.webp) no-repeat bottom;
    background-size: 50rem auto;
  }
}
/*  large screen  */
/* 17 inch *//*# sourceMappingURL=style.css.map */