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

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

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

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

/* Home Start */
.home {
  padding: 80px 0px;
  height: 100vh;
}

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

.home-content h4 {
  font-size: 40px;
  color: #0F208B;
  font-family: "Barlow-SemiBold";
}

.home-content h1 {
  font-size: 90px;
  color: #FAB32B;
  font-family: "MotionControl-Bold";
  text-transform: uppercase;
  line-height: 70px;
}

.home-content h1 span {
  color: #0F208B;
}

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

.home-btn .btn {
  padding: 4px 20px 4px 4px;
  font-size: 20px;
  text-transform: uppercase;
  color: #141414;
  background-image: linear-gradient(#FFFFFF, #FAB32B, #B66E4E);
  border-radius: 50px;
  font-family: "Barlow-Bold";
}

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

.sub-title h6 {
  font-size: 30px;
  color: #0F208B;
  font-family: "Barlow-SemiBold";
  margin-top: 10px;
}

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

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

.home-image .sub-title {
  display: none;
}

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

/* Home End */

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

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

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

@media (max-width:1199px) {
  .home-content h1 {
    font-size: 75px;
    line-height: 58px;
  }

  .sub-title h6 {
    font-size: 28px;
  }
}

@media (max-width:767px) {
  .logo {
    text-align: center;
  }

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

  .sub-title {
    display: none;
  }

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

  .home-image .sub-title {
    display: inherit;
    text-align: center;
  }

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

@media (max-width:480px) {
  .home-content h1 {
    font-size: 60px;
    line-height: 45px;
  }

  .home {
    padding: 30px 0px;
    height: 100%;
  }
}

@media (max-width:360px) {
  .home-content h1 {
    font-size: 50px;
    line-height: 35px;
  }

  .sub-title h6 {
    font-size: 25px;
  }
}