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

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

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

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

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

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

/* Home Start */
.home {
  background-image: url("../images/home-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
  height: 100vh;
  width: 100%;
  position: relative;
}

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

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

.home-content h1 {
  font-size: 150px;
  color: #CB554C;
  font-family: "MotionControl-Bold";
  text-transform: uppercase;
  text-shadow: 2px -2px #02178C;
  line-height: 90px;
}

.home-content h5 {
  background-color: #fff;
  padding: 8px 20px;
  font-size: 30px;
  border-radius: 0px;
  font-family: "Barlow-Medium";
  color: #000;
  display: inline-block;
  margin-top: 10px;
}

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

.home-btn .btn {
  padding: 4px 20px 4px 4px;
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  background-color: #F9B22A;
  border-radius: 0px;
  font-family: "Barlow-Black";
  font-weight: normal;
}

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


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

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

/* Home End */

@media (max-width:767px) {
  .home {
    background-image: url("../images/responsive-bg.png");
    padding: 30px 0px;
  }

  .logo {
    text-align: center;
  }

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

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

  .home-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
}

@media (max-width:480px) {
  .home-content h4 {
    font-size: 35px;
  }

  .home-content h1 {
    font-size: 120px;
    line-height: 60px;
  }
}

@media (max-width:320px) {
  .home-content h5 {
    font-size: 25px;
  }
}