@font-face {
  font-family: "KellySans-Regular";
  src: url("../font/KellySans-Bold.otf") format("opentype");
}
@font-face {
  font-family: "KellySans-Bold";
  src: url("../font/KellySans-Regular.otf") format("opentype");
}
/* Header Start */
.active {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

header {
  font-family: "KellySans-Regular", sans-serif;
  position: fixed;
  width: 100%;
  z-index: 99;
  background: #fff;
  padding: 5px 0 4px;
}
header .navbar-brand {
  margin: 2px 0 0 12px;
}
header .nav-item {
  margin: 0 5px;
}
header .nav-item .nav-link {
  color: #000;
  font-family: "KellySans-Bold", sans-serif;
  font-weight: 100;
  position: relative;
  font-size: 14px;
  padding: 12px 0 12px 0;
}
header .nav-item .nav-link:after {
  content: "";
  width: 0%;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: all 0.4s ease;
}
header .nav-item .nav-link:hover {
  color: #000;
}
header .nav-item .nav-link:hover:after {
  width: 90%;
  left: 5%;
}
@media screen and (max-width: 768px) {
  header .navbar-brand {
    margin: 10px 0 0 12px;
  }
  header .navbar-toggler {
    border: 0;
  }
  header .navbar-toggler .navbar-toggler-icon::before {
    display: none;
  }
  header .nav-item .nav-link:hover:after {
    width: 90%;
    left: 0;
  }
}

/* Header End */
/* Banner Start */
.banner {
  height: 600px;
  background: url(../images/bg-intro.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0 0;
}
.banner .title {
  margin: 30px 0;
  text-align: center;
}
.banner .title h5 {
  font-family: "KellySans-Regular", sans-serif;
  font-size: 38px;
  color: #fff;
}
.banner .title p {
  font-family: "KellySans-Bold", sans-serif;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 30px;
  max-width: 400px;
}
.banner .title .btn {
  line-height: 44px;
  text-transform: uppercase;
  padding: 4px 40px 0px 40px;
  border: 0px;
  border-radius: 0;
  color: #000;
  font-family: "KellySans-Bold", sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  background: rgb(255, 237, 0);
  background: linear-gradient(90deg, rgb(255, 237, 0) 0%, rgb(120, 191, 38) 100%);
  transition: background 0.3s ease;
}
.banner .title .btn:hover {
  background: linear-gradient(90deg, rgb(120, 191, 38), rgb(120, 191, 38));
}
@media screen and (max-width: 760px) {
  .banner .title p {
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 420px) {
  .banner .title h5 {
    font-size: 30px;
  }
}

/* Banner End */
/* Above Start */
.about .container {
  max-width: 960px;
}
.about .content h5 {
  font-family: "KellySans-Regular", sans-serif;
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}
.about .content p {
  font-family: "KellySans-Bold", sans-serif;
  color: #515151;
}
.about .content .btn {
  margin-top: 20px;
  line-height: 44px;
  text-transform: uppercase;
  padding: 4px 40px 0px 40px;
  border: 0px;
  border-radius: 0;
  color: #000;
  font-family: "KellySans-Bold", sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  background: rgb(255, 237, 0);
  background: linear-gradient(90deg, rgb(255, 237, 0) 0%, rgb(120, 191, 38) 100%);
  transition: background 0.3s ease;
}
.about .content .btn:hover {
  background: linear-gradient(90deg, rgb(120, 191, 38), rgb(120, 191, 38));
}
@media screen and (max-width: 990px) {
  .about .container {
    padding: 40px 25px;
  }
}
@media screen and (max-width: 520px) {
  .about .image-wrapper {
    margin: 30px 0;
  }
  .about .content h5 {
    font-size: 30px;
    line-height: 40px;
  }
}

/* Above End */
/* Assignment Start */
.assignment {
  background: url(../images/bg-assignments.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.assignment .title {
  margin: 30px 0;
  text-align: center;
}
.assignment .title h5 {
  font-family: "KellySans-Regular", sans-serif;
  font-size: 35px;
  color: #fff;
  margin-bottom: 30px;
}
.assignment .title p {
  font-family: "KellySans-Bold", sans-serif;
  font-size: 24px;
  color: #fff;
  line-height: 40px;
  margin-bottom: 30px;
}
.assignment .title .btn {
  line-height: 44px;
  text-transform: uppercase;
  padding: 4px 40px 0px 40px;
  border: 0px;
  border-radius: 0;
  color: #000;
  font-family: "KellySans-Bold", sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  background: rgb(255, 237, 0);
  background: linear-gradient(90deg, rgb(255, 237, 0) 0%, rgb(120, 191, 38) 100%);
  transition: background 0.3s ease;
}
.assignment .title .btn:hover {
  background: linear-gradient(90deg, rgb(120, 191, 38), rgb(120, 191, 38));
}
@media screen and (max-width: 520px) {
  .assignment .title p {
    font-size: 18px;
    line-height: 30px;
  }
}

/* Assignment End */
/* Working Start */
.working {
  padding: 80px 0 200px;
  background-color: #EFEDEA;
}
.working .container {
  max-width: 960px;
}
.working .title {
  text-align: center;
}
.working .title h5 {
  font-family: "KellySans-Regular", sans-serif;
  font-size: 30px;
  color: #333;
  margin-bottom: 30px;
}
.working .image-wrapper {
  position: relative;
}
.working .image-wrapper .content {
  position: absolute;
  max-width: 150px;
  text-align: center;
}
.working .image-wrapper .content p {
  font-family: "KellySans-Bold", sans-serif;
  color: #515151;
  font-size: 18px;
}
.working .image-wrapper .content-1 {
  top: 60%;
  left: -30px;
}
.working .image-wrapper .content-2 {
  top: 110%;
  left: 28%;
}
.working .image-wrapper .content-3 {
  right: 25%;
  top: 65%;
}
.working .image-wrapper .content-4 {
  top: 110%;
  right: -30px;
}
@media screen and (max-width: 990px) {
  .working .container {
    padding: 40px 25px;
  }
}
@media screen and (max-width: 768px) {
  .working {
    padding-bottom: 80px;
  }
  .working .content {
    display: none;
  }
}

/* Working End */
/* Contact Start */
.contact {
  background-color: #72706E;
  padding: 100px 0;
}
.contact .title {
  text-align: center;
}
.contact .title h5 {
  font-family: "KellySans-Regular", sans-serif;
  font-size: 35px;
  color: #fff;
  margin-bottom: 30px;
}
.contact .title p {
  font-family: "KellySans-Bold", sans-serif;
  font-size: 19px;
  color: #fff;
  line-height: 40px;
  margin-bottom: 0px;
}
.contact .title p a {
  color: #fff;
}

/* Contact End */
/* Footer Start */
footer {
  background-color: #22201E;
  font-family: "KellySans-Bold", sans-serif;
}
footer p {
  color: #979797;
  max-width: 300px;
  margin-top: 30px;
  margin-bottom: 0;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer a:hover {
  color: #fff;
}
footer .link-wrapper {
  text-align: right;
}
@media screen and (max-width: 760px) {
  footer .link-wrapper {
    margin-top: 30px;
    text-align: left;
  }
}

/* Footer End *//*# sourceMappingURL=style.css.map */