* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("./fonts/Poppins-Bold.ttf");
}
@font-face {
  font-family: "BebasNeue-Regular";
  src: url("./fonts/BebasNeue-Regular.otf");
}
.home-section {
  background-image: url("./images/home-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  text-align: center;
  padding: 50px 0px;
}
.home-section .logo img {
  width: 300px;
  height: auto;
}
.home-content {
  margin-top: 120px;
}
.home-content h1 {
  font-size: 110px;
  color: #fff;
  font-family: "Poppins-Bold";
  line-height: 115px;
  text-transform: uppercase;
  text-shadow: -6px 2px #000;
}
.home-content .home-btn {
  position: relative;
  display: inline-block;
  margin-top: 50px;
}
.home-content .home-btn .btn {
  font-size: 50px;
  font-family: "BebasNeue-Regular";
  color: #fff;
  text-decoration: none;
  background-color: #ec6731;
  padding: 0px 30px;
  text-transform: uppercase;
  display: block;
  width: 450px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: end;
  align-items: center;
}
.home-content .home-btn img {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 24px;
  top: -14px;
}

@media (max-width:576px) {
    .home-section {
    background-image: url("./images/responsive-bg.png");
}
.home-content h1 {
    font-size: 80px;
    line-height: 88px;
}
.home-content .home-btn .btn {
    font-size: 35px;
    width: 350px;
    height: 70px;
}
.home-content .home-btn img {
    width: 80px;
    height: 80px;
    top: -5px;
}
.home-content {
    margin-top: 70px;
}
}
@media (max-width:480px) {
    .home-content h1 {
    font-size: 60px;
    line-height: 66px;
    margin-bottom: 50px;
}
.home-section .logo img {
    width: 250px;
}
}