@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Newake";
  src: url("../../fonts/Newake-Font-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.landing_page {
  position: relative;
  width: 100%;
}
.landing_page h1 {
  font-family: "Newake", sans-serif;
  font-weight: 500;
  font-size: 60px;
  font-size: clamp(25px, 4vw, 60px);
  text-transform: uppercase;
}
.landing_page p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 23px;
  max-width: 80%;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 800px) {
  .landing_page .home_banner_img {
    min-height: 200px !important;
  }
  .landing_page .bg_red_home {
    margin-top: -90px;
  }
}
.landing_page .home_banner_img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}
.landing_page .banner_content {
  position: absolute;
  left: 50%;
  top: 40%;
  translate: -50% -50%;
  width: 100%;
  z-index: 2;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
}
.landing_page .banner_content img {
  width: 100%;
  max-width: 850px;
  padding: 20px;
}

.bg_red_home {
  position: relative;
  width: 100%;
  margin-top: -100px;
  font-family: "Montserrat", sans-serif;
}
.bg_red_home h1 {
  font-family: "Newake", sans-serif;
  font-weight: 500;
  font-size: 60px;
  font-size: clamp(25px, 4vw, 60px);
  text-transform: uppercase;
}
.bg_red_home p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 23px;
  max-width: 80%;
  text-align: center;
  font-size: 16px;
}
.bg_red_home .red_bg {
  width: 100%;
}
.bg_red_home .content {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  gap: 5px;
  z-index: 2;
  padding: 20px;
  align-items: center;
  text-align: center;
  justify-content: space-evenly;
  display: flex;
  gap: 25px;
}
.bg_red_home .content img {
  width: 40%;
}
.bg_red_home .content .text {
  align-items: flex-start;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 20px;
}
.bg_red_home .content .text .yellow {
  color: #f9d146;
  text-align: left;
  width: 80%;
}
.bg_red_home .content .text p {
  text-align: left;
}
.bg_red_home .content .text .discover_more_btn {
  background-color: #f9d146;
  color: #231f20;
  text-align: center;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}
