* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

@font-face {
  font-family: "Barlow-SemiBold";
  src: url("../fonts/Barlow-SemiBold.ttf");
}

@font-face {
  font-family: "Akrobat-ExtraBold";
  src: url("../fonts/Akrobat-ExtraBold.otf");
}

/* Home Start */
.home {
  /* background-image: url("../images/home-bg.png"); */
  background-image:
  linear-gradient(to bottom, rgb(0 0 0 / 52%), rgb(0 0 0 / 73%)),
  url(../images/home-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
  height: 100vh;
  width: 100%;
}

.logo img {
  width: auto;
  height: 70px;
  margin-bottom: 70px;
}

.home-content h4 {
  font-size: 40px;
  color: #fff;
  font-family: "Barlow-SemiBold";
  text-transform: uppercase;
}

.title img.title1 {
  width: 450px;
  height: auto;
}

.title img.title2 {
  display: none;
}

.home-btn {
  margin-top: 130px;
}

.home-btn .btn {
  padding: 4px 20px 4px 4px;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(#906314, #D99800);
  border-radius: 0px;
  font-family: "Akrobat-ExtraBold";
}

.home-btn .btn img {
  width: 40px;
  height: auto;
  margin-right: 5px;
}

.home-image {
  margin-top: 150px;
}

.home-image img {
  width: 100%;
  height: auto;
}

.home-image .home-btn {
  display: none;
}

.btn:focus {
  box-shadow: none;
}

/* Home End */

@media (max-width:1199px) {
  .title img.title1 {
    width: 350px;
  }
}

@media (max-width:767px) {
  .home {
    padding: 50px 0px;
    height: 100%;
  }

  .logo {
    text-align: center;
  }

  .logo img {
    margin-bottom: 30px;
  }

  .home-content {
    text-align: center;
  }

  .home-btn {
    display: none;
  }

  .home-image {
    margin-top: 50px;
  }

  .home-image .home-btn {
    display: inherit;
    text-align: center;
    margin: 0px;
  }
}

@media (max-width:576px) {
  .title img.title1 {
    display: none;
  }

  .title img.title2 {
    display: inherit;
    margin: 0px auto;
    width: 250px;
    height: auto;
  }
}

@media (max-width:360px) {
  .home {
    padding: 30px 0px;
    height: 100%;
  }

  .title img.title2 {
    width: 200px;
  }

  .home-btn .btn {
    display: inherit;
  }
}

@media (max-width:320px) {
  .home {
    height: 100vh;
  }

}