/* Google Font  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap");

/* Custom CSS  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
::selection {
  color: black;
  background-color: #fcac00;
}
header {
  width: 100%;
  height: 160vh;
  background-color: black;
  display: flex;
}
.header-left-side {
  padding: 0 0 0 90px;
  color: white;
}
.header-left-side h1 {
  color: black;
  line-height: 1.2em;
  font-size: 78px;
  padding-top: 20px;
  margin-bottom: 20px;
  font-weight: 400 !important;
}

h1:hover{
    color:black;
}
.header-left-side h2 {
  color: #fcac00;
  font-family: "Inter", sans-serif;
  font-size: 26px;
  line-height: 1.2em;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 10px;
}
.header-left-side p {
  margin-top: 5%;
  margin-bottom: 10%;
  font-family: "Inter", sans-serif;
  letter-spacing: 2px;
  font-size: 16px;
  color: #c1bfbf;
  line-height: 2;
}
button {
  padding: 20px 10px;
  border: 2px solid #fcac00;
  
  width: 47%;
  color: white;
  margin-right: 15px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
button:hover {
  background-color: #fcac00;
  transition: 0.7s;
}
.btn {
  width: 97%;
  background-color: #e5e5e5;
}
.header-left-side h3 {
  color: #c1bfbf;
  padding-top: 80px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
.header-right-side img {
  width: 670px;
  height: 884px;
  margin-top: 15%;
}
.topnav{
    background-color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

.text{
    color:antiquewhite;
}
.text:hover{
    color:#e5e5e5;
}
.custom{
    background-color: #fcac00;
    color:black;
}

/* ===================== */
/* Responsive Design */
/* ===================== */

@media (max-width: 1024px) {
  header {
    height: auto;
    flex-direction: column;
    padding: 40px 0;
  }

  .header-left-side {
    padding: 0 40px;
    text-align: center;
  }

  .header-right-side img {
    width: 90%;
    height: auto;
    margin: 40px auto 0;
    display: block;
  }

  button {
    width: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .header-left-side h1 {
    font-size: 48px;
  }

  .header-left-side h2 {
    font-size: 20px;
  }

  .header-left-side p {
    font-size: 14px;
    line-height: 1.8;
  }

  .header-left-side h3 {
    padding-top: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 20px 0;
  }

  .header-left-side {
    padding: 0 20px;
  }

  .header-left-side h1 {
    font-size: 36px;
  }

  .header-left-side h2 {
    font-size: 18px;
    letter-spacing: 1px;
  }

  button {
    font-size: 16px;
    padding: 15px;
  }

  

  .header-right-side img {
  width: 100%;
  max-width: 670px;
  height: auto;
  object-fit: contain;
}

}
