/* 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: #bea060;
}
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: #bea060;
  line-height: 1.2em;
  font-size: 78px;
  padding-top: 20px;
  margin-bottom: 20px;
  font-weight: 400 !important;
}
.header-left-side h2 {
  color: #bea060;
  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 #bea060;
  background: transparent;
  width: 47%;
  color: white;
  margin-right: 15px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
button:hover {
  background-color: #bea060;
  transition: 0.7s;
}
.btn {
  width: 97%;
  background-color: #bea060;
}
.header-left-side h3 {
  color: #c1bfbf;
  padding-top: 80px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin-top: 80px;
  width: auto;
}
.h3{
  margin-left: 0%;
}
.header-right-side img {
  width: 600px;
  height: 90%;
  border: 2px solid  #bea060;
  background-color:black;
  border-radius: 30px;
  box-sizing: border-box;
  margin: 30px 15px ;
}

/* ==================== MEDIA QUERIES ==================== */

/* Large tablets / small desktops */
@media (max-width: 1200px) {
  header {
    height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

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

  .header-right-side img {
    width: 450px;
    height: auto;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .header-left-side h1 {
    font-size: 58px;
  }

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

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

  button {
    width: 100%;
    margin-bottom: 10px;
  }

  .header-right-side img {
    width: 380px;
  }
}

/* Mobile (portrait) */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    text-align: center;
    padding: 30px 15px;
  }

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

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

  .header-left-side p {
    font-size: 14px;
    margin-bottom: 8%;
  }

  .header-right-side img {
    width: 90%;
    height: auto;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .header-left-side h1 {
    font-size: 32px;
  }

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

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

  .header-right-side img {
    width: 100%;
  }
}
