.hero-item {
  height: 100vh;
  min-height: 750px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/images/banner.png");
}.hero-item .hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3rem;
  box-sizing: border-box;
  font-weight: 700;
  width: 700px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background: rgba(226, 226, 226, 0.7);
}
.hero-item .hero-text .main-heading {
  text-transform: uppercase;
  font-size: 3.6rem;
}

.hero-item .hero-text .left {
  margin-top: 1rem;
  float: left;
}
.hero-item .hero-text .right {
  margin-top: 1rem;
  float: right;
}

@media (max-width: 1000px) {
  .hero-text {
    max-width: 900px !important;
    width: 100% !important;
  }

  .hero-item .hero-text .main-heading {
    font-size: 2.3rem;
  }

  .hero-text .left, .hero-text .right {
    float: none !important;
    text-align: center !important;
  }
}
.why-us-container {
  border-radius: 0.3rem;
}
.why-us-container .why-us-section-content {
  grid-auto-rows: 1fr;
  grid-gap: 10px;
  padding: 3rem;
}
.why-us-container .why-us-description {
  margin: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  justify-self: flex-start;
  box-sizing: border-box;
}
.why-us-container .why-us-description h2, .why-us-container .why-us-description p {
  margin: 1rem auto 1rem auto;
}
.why-us-container .why-us-img {
  margin-right: 1rem;
  justify-self: flex-end;
}
.why-us-container .why-us-img img {
  border-radius: 0.3rem;
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .why-us-section-content {
    grid-auto-rows: auto;
    grid-gap: 0px !important;
    padding: 3rem 0 !important;
  }
  .why-us-description {
    margin: 0 !important;
    padding: 3rem 1.5rem !important;
    text-align: center !important;
    order: 2;
    width: 100%;
    justify-content: center;
  }
  .why-us-img {
    width: 100%;
    margin: 0 !important;
    margin-right: 0 !important;
    order: 1;
  }
  .why-us-img img {
    width: 100% !important;
    border-radius: 0 !important;
  }
}
.services-section {
  grid-auto-rows: 1fr;
  text-align: center;
}

.services-section .services-heading {
  text-align: center;
}

.services-section .grid-33 {
  box-sizing: border-box;
  grid-gap: 0px !important;
}

.service-container {
  padding: 3rem 0;
  box-sizing: border-box;
  border-radius: 0.15rem;
}

.service-items {
  scroll-margin-bottom: 10px;
}

.service-items > .service-item:not(:nth-child(3n))::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: .025em;
  width: 1px;
  background-color: rgba(119, 119, 119, 0.4);
}

.service-item {
  position: relative;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

.service-item h3 {
  position: relative;
}


/* .service-item:hover h3::after {
  content: "\2193";
  color: #F4D03d;
  display: grid;
  align-items: center;
  font-size: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: slidein-absolute 0.5s forwards;
} */

@keyframes slidein-absolute {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.service-item h2, .service-item p, .service-item button {
  margin: 1rem auto 1rem auto;
}
.service-item h2 {
  font-weight: 700;
}
.service-item .service-img {
  margin: auto;
  width: 100%;
}
.service-item .service-img img {
  width: 200px;
  height: 200px;
  border-radius: 0.3rem;
}

.service-desc-container {
  padding: 0 3rem;
  box-sizing: border-box;
  display: none;
}

.service-desc {
  border-radius: 0.25rem;
  padding: 3rem;
}

.service-desc .service-desc-images img{
  height: 250px;
  width: auto;
  margin: 1rem;
  border-radius: 0.25rem;
}

@media (max-width: 1000px) {
  .services-section {
    width: 100%;
  }

  .services-section .grid-33 {
    padding: 0rem;
  }

  .service-desc-container {
    padding: 0 !important;
    box-sizing: border-box;
    display: none;
    margin-top: 2rem;
    scroll-margin-top: 10px;
  }
  
  .service-desc {
    padding: 1.5rem;
  }

}
.about-us-container {
  grid-auto-rows: 1fr;
  grid-gap: 0px;
}

.about-us-description {
  text-align: left;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
}
.about-us-description h2, .about-us-description p, .about-us-description button {
  margin: 1rem auto 1rem auto;
}
.about-us-description h1 {
  font-weight: 900;
}

.about-us-img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .about-us-container {
    grid-auto-rows: auto !important;
  }
  .about-us-description {
    order: 2;
    text-align: center !important;
    padding: 3rem 1.5rem;
    justify-content: center;
    width: 100%;
  }
  .about-us-img {
    order: 1;
  }
  .about-us-img img {
    width: 100% !important;
    height: auto !important;
  }
}
.progress-section .progress-heading {
  text-align: center;
  width: 50%;
  margin: auto;
}

.progress-container {
  padding: 3rem;
  box-sizing: border-box;
  border-radius: 0.3rem;
}

.progress-section .progress-heading h1 {
  font-weight: 800;
}
.progress-section .progress-heading p {
  margin-top: 0;
}
.progress-section .img-container {
  display: flex;
  width: 100%;
  margin-top: 2rem;
  justify-content: center;
}
.progress-section .img-container img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-bottom: 3rem;
}

@media (max-width: 1000px) {
  .progress-heading {
    width: 100% !important;
  }
}
.reviews-heading {
  text-align: center;
}

.reviews-grid {
  grid-gap: 3rem;
}
.reviews-grid .reviews-description {
  text-align: left;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.reviews-grid .reviews-description h2, .reviews-grid .reviews-description p, .reviews-grid .reviews-description button {
  margin: 1rem auto 1rem auto;
}
.reviews-grid .reviews-description h1 {
  font-weight: 900;
}
.reviews-grid .reviews-description .left {
  float: left;
}
.reviews-grid .reviews-description .right {
  float: right;
}
.reviews-grid .reviews-img img {
  border-radius: 0.3rem;
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .reviews-grid {
    grid-auto-rows: auto;
    grid-gap: 0 !important;
  }
  .reviews-description {
    text-align: center !important;
    padding: 3rem 1.5rem !important;
  }
  .reviews-description .left, .reviews-description .right {
    float: none !important;
    display: block !important;
    text-align: center !important;
  }
  .reviews-img img {
    width: 100%;
    border-radius: 0 !important;
  }
}
.bonus-section .bonus-heading {
  text-align: center;
}
.bonus-section .bonus-row, .bonus-section .bonus-row-right, .bonus-section .bonus-row-left {
  margin: 2rem auto;
  padding: 3rem;
  border-radius: 0.3rem;
  width: auto;
  box-sizing: border-box;
}
.bonus-section .bonus-row .card-item, .bonus-section .bonus-row-right .card-item, .bonus-section .bonus-row-left .card-item {
  text-align: left;
}

.bonus-section .bonus-row {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.bonus-section .bonus-row .card-item {
  width: 300px;
  margin: 2rem;
}

.bonus-section .bonus-row .card-item img, .bonus-section .bonus-row-right .card-item img, .bonus-section .bonus-row-left .card-item img {
  border-radius: 0.3rem;
  width: 100%;
  height: 300px;
}
.bonus-section .bonus-row-left {
  margin-left: 2rem;
  justify-content: flex-start;
}
.bonus-section .bonus-row-right {
  margin-right: 2rem;
  justify-content: flex-end;
}

@media (max-width: 1000px) {
  .bonus-row-left {
    margin-left: 0 !important;
    margin: 2rem auto !important;
    justify-content: center !important;
  }
  .bonus-row-right {
    margin-right: 0 !important;
    margin: 2rem auto !important;
    justify-content: center !important;
  }
  .bonus-row, .bonus-section .bonus-row-left, .bonus-section .bonus-row-right {
    padding: 3rem 1.5rem !important;
  }
  .card-item {
    text-align: center !important;
  }
  .card-item img {
    border-radius: 0.3rem;
  }
}
.examples-section {
  grid-auto-rows: 1fr;
  text-align: center;
}

.examples-heading {
  text-align: center;
}

.examples-section .grid-33 {
  grid-gap: 0px !important;
}

.example-item {
  text-align: center;
  padding: 3rem;
  margin: 1rem;
  border-radius: 0.3rem;
}
.example-item h2, .example-item p, .example-item button {
  margin: 1rem auto 1rem auto;
}
.example-item h2 {
  font-weight: 700;
}
.example-item .example-img {
  margin: auto;
  width: 100%;
}
.example-item .example-img img {
  border-radius: 0.3rem;
  width: 100%;
  height: 250px;
}

@media (max-width: 1000px) {
  .examples-section {
    width: 100%;
  }
  .examples-section .example-item {
    margin: 1rem 0 !important;
  }
}
.contacts-section .heading-with-button {
  text-align: center;
}

.contacts-section .heading-with-button button {
  width: fit-content;
}

.demo-link {
  position: relative;
  display: inline-block;
}

.demo-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: white;
}

.demo-link:hover .demo-overlay {
  opacity: 0.9;
}

.demo-text {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/*# sourceMappingURL=output.css.map */
