html {
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #eee;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f05f40;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

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

body {
  font-family: 'Signika', sans-serif;
}

.container {
  width: 85%;
  margin: auto;
}

.f-m, header .logo, header .menu ul {
  float: left;
  margin-top: 10px;
}

.h1, .home .home-content h1, .need h1, .services h2, .download h1, .contact h2 {
  font-size: 3rem;
  color: white;
}

.span, .home .home-content span, .need span, .services span, .download span, .contact span {
  display: block;
  width: 60px;
  height: 5px;
  margin: 20px auto;
  background-color: #f05f40;
  color: white;
}

.p, .home .home-content p, .need p {
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
}

.button, .home .home-content button, .need button, .download button {
  padding: 15px;
  background-color: #f05f40;
  color: white;
  border: 1px solid #f05f40;
  border-radius: 20px;
  outline: none;
  cursor: pointer;
  font-weight: bold;
}

.button:hover, .home .home-content button:hover, .need button:hover, .download button:hover {
  background-color: white;
  color: #f05f40;
}

header {
  overflow: hidden;
  width: 100%;
  background-color: #333;
}

header .logo {
  width: 30%;
}

header .logo h2 {
  color: #ccc;
}

header .bars {
  display: none;
  font-size: 20px;
  color: white;
}

header .menu ul {
  list-style: none;
  width: 65%;
  text-align: right;
  padding-top: 8px;
  padding-bottom: 6px;
}

header .menu ul li a {
  padding: 5px 10px;
  text-decoration: none;
  color: #ccc;
  font-size: 19px;
}

header .menu ul li a:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #f05f40;
}

.home {
  height: 100vh;
  width: 100%;
  background: url(../img/wave.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.home .home-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -65%);
          transform: translate(-50%, -65%);
  text-align: center;
}

.home .home-content button {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.need {
  -webkit-clip-path: polygon(0 0, 100% 21%, 100% 93%, 0 65%);
          clip-path: polygon(0 0, 100% 21%, 100% 93%, 0 65%);
  margin: 60px 0;
  padding: 40px;
  background-color: #f05f40;
  text-align: center;
  color: white;
  height: 398px;
}

.need h1 {
  font-size: 1.9rem;
  margin-top: 30px;
}

.need span {
  background-color: white;
}

.need button {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: white;
  color: #f05f40;
  margin-bottom: 30px;
}

.need button:hover {
  background-color: #f05f40;
  color: white;
}

.services {
  margin: 7rem 0;
  background: white;
  text-align: center;
}

.services h2 {
  color: #f05f40;
  font-size: 1.9rem;
}

.services .service-item {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.services .service-item .item {
  border: 1px solid #f05f40;
  padding: 20px;
}

.services .service-item .item:hover {
  background-color: #f05f40;
  color: white;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.services .service-item .item:hover i,
.services .service-item .item:hover p,
.services .service-item .item:hover h3 {
  color: white;
}

.services .service-item .item h3 {
  margin-bottom: 1rem;
  color: #333;
}

.services .service-item .item p {
  color: #212567;
}

.service-item .item .fa-1 {
  color: #f05f40;
  margin-bottom: 15px;
}

.service-item .item .fa-2 {
  color: #f05f40;
  margin-bottom: 15px;
}

.service-item .item .fa-3 {
  color: #f05f40;
  margin-bottom: 15px;
}

.service-item .item .fa-4 {
  color: #f05f40;
  margin-bottom: 15px;
}

.images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  margin-top: 140px;
  margin-bottom: 140px;
}

.images .img-box {
  position: relative;
}

.images .img-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 95, 64, 0.5);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.images .img-box:hover::after {
  opacity: 1;
}

.images .img-box:hover::before {
  content: "\f0c1    \f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 50px;
  color: white;
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  cursor: pointer;
}

.images .img-box img {
  width: 100%;
}

.download {
  -webkit-clip-path: polygon(100% 0, 0 37%, 0 100%, 100% 59%);
          clip-path: polygon(100% 0, 0 37%, 0 100%, 100% 59%);
  background-color: #212567;
  color: white;
  text-align: center;
  padding: 50px;
  margin-bottom: 100px;
  font-size: 50px;
}

.download h1 {
  font-size: 40px;
  margin-top: 65px;
  margin-bottom: 18px;
}

.download button {
  background-color: white;
  color: #212567;
  width: 200px;
  margin-bottom: 65px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.contact {
  text-align: center;
  padding: 20px;
  background-color: #F1F2F3;
}

.contact h2 {
  color: #212567;
  font-size: 40px;
  margin-top: 50px;
  margin-bottom: 18px;
}

.contact .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 40px;
}

.contact .cards i {
  font-size: 40px;
  color: #212567;
  display: block;
  margin-bottom: 15px;
}

.contact .cards p {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .need {
    -webkit-clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%) !important;
            clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%) !important;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  header {
    position: static;
    background-color: #333;
    text-align: center;
  }
  header .logo {
    padding-bottom: 10px;
  }
  header .bars {
    display: block;
    text-align: right;
    cursor: pointer;
    margin: auto;
    position: absolute;
    -webkit-transform: translate(82vw, 3vh);
            transform: translate(82vw, 3vh);
  }
  header .menu {
    display: none;
  }
  header .menu.active {
    background-color: white;
    width: 133px;
    display: -ms-grid;
    display: grid;
    position: absolute;
    top: 60;
    z-index: 1;
    right: 20px;
  }
  header .menu.active ul:not(:last-child) li {
    text-align: center !important;
  }
  .home {
    height: 120vh;
  }
  .home h1 {
    font-size: 40px !important;
  }
  .need {
    -webkit-clip-path: polygon(0 10%, 100% 31%, 100% 100%, 0 87%);
            clip-path: polygon(0 10%, 100% 31%, 100% 100%, 0 87%);
  }
  .services .service-item {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .images {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .download {
    -webkit-clip-path: polygon(0 24%, 100% 0, 100% 75%, 0 100%);
            clip-path: polygon(0 24%, 100% 0, 100% 75%, 0 100%);
  }
}
/*# sourceMappingURL=main.css.map */