@import url("../fonts/stylesheet.css");
@import url("../css/bootstrap.css");
@import url("../css/owl.carousel.css");
@import url("../css/responsive.css");
* {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  text-decoration: none !important;
}

/*Navbar*/
.navbar {
  height: 100px;
  background-color: #fff;
}
.navbar.fixed {
  position: fixed;
  background-color: red;
  width: 100%;
  z-index: 997;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  animation-name: sticky-navbar-anim;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-duration: 800ms;
}
.navbar .navbar-inner-brand .navbar-brand img {
  width: 150px;
}
.navbar .navbar-inner-content {
  display: flex;
  align-items: center;
}
.navbar .navbar-inner-content .support-line-btn {
  display: flex;
  align-items: center;
  color: #8C8C8C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 100px;
}
.navbar .navbar-inner-content .support-line-btn svg {
  fill: #8C8C8C;
  margin-right: 10px;
}
.navbar .navbar-inner-content .support-line-btn span {
  margin-left: 10px;
  font-weight: 600;
  color: #8C8C8C;
  position: relative;
  transition: 0.2s all ease-in-out;
}
.navbar .navbar-inner-content .support-line-btn span::before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background-color: #8C8C8C;
  top: 65%;
  transition: 0.2s all ease-in-out;
}
.navbar .navbar-inner-content .support-line-btn:hover span {
  color: #222222;
}
.navbar .navbar-inner-content .support-line-btn:hover span::before {
  width: 100%;
  background-color: #222222;
}
.navbar .navbar-inner-content .content-seperator {
  display: block;
  height: 40px;
  width: 1px;
  background-color: #e0e0e0;
  margin: 0 50px;
}
.navbar .navbar-inner-content .offcanvas-menu-btn {
  margin-right: 20px;
  line-height: 100px;
  cursor: pointer;
}

/*Offcanvas Menu*/
.offcanvas {
  min-width: 700px;
  transition: 0.5s all ease-in-out;
}
.offcanvas .offcanvas-header {
  padding: 30px 60px;
  display: flex;
  justify-content: flex-end;
}
.offcanvas .offcanvas-header a {
  cursor: pointer;
}
.offcanvas .offcanvas-header a svg {
  fill: #222222;
  transition: 0.4s all ease-in-out;
}
.offcanvas .offcanvas-header a:hover svg {
  fill: #AFD136;
}
.offcanvas .offcanvas-body {
  padding: 100px;
}
.offcanvas .offcanvas-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas .offcanvas-body ul li {
  margin-top: 20px;
}
.offcanvas .offcanvas-body ul li:first-child {
  margin-top: 0;
}
.offcanvas .offcanvas-body ul li a {
  cursor: pointer;
  font-size: 36px;
  font-weight: 600;
  color: #999999;
  transition: 0.2s all ease;
}
.offcanvas .offcanvas-body ul li a:hover {
  color: #222222;
}
.offcanvas .offcanvas-footer {
  padding: 100px;
}
.offcanvas .offcanvas-footer p a {
  font-weight: 600;
  color: #9C9C9C;
  transition: 0.3s all ease;
}
.offcanvas .offcanvas-footer p a:hover {
  color: #222222;
}

/*Landing*/
.landing {
  position: relative;
}
.landing .carousel-area {
  position: relative;
}
.landing .carousel-area .owl-carousel .owl-nav {
  display: none;
}
.landing .carousel-area .owl-carousel .owl-dots {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 85%;
  right: 10%;
  transition: 0.2s all ease-in-out;
}
.landing .carousel-area .owl-carousel .owl-dots button {
  width: 30px;
  height: 5px;
  background-color: #fff;
  margin: 0 8px;
  transition: 0.2s all ease-in-out;
}
.landing .carousel-area .owl-carousel .owl-dots button.active {
  background-color: #AFD136;
}
.landing .carousel-area .owl-carousel:hover .owl-dots {
  visibility: visible;
  opacity: 1;
}
.landing .carousel-area .owl-carousel .item .slider-wrap {
  position: relative;
  min-height: calc(100vh - 100px);
  width: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner {
  position: relative;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner .rectangle {
  width: inherit;
  height: inherit;
  border: 5px solid #AFD136;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner .slider-content {
  position: absolute;
  top: 50px;
  left: 40px;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner .slider-content span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner .slider-content h1 {
  font-size: 72px;
  font-weight: 600;
  color: #fff;
  margin: inherit;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner .slider-content a {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  transition: 0.2s all ease-in-out;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner .slider-content a svg {
  position: relative;
  left: -30px;
  opacity: 0;
  visibility: hidden;
  fill: #fff;
  transition: 0.2s all ease-in-out;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner .slider-content a:hover {
  color: #AFD136;
}
.landing .carousel-area .owl-carousel .item .slider-wrap .slider-inner .slider-content a:hover svg {
  visibility: visible;
  opacity: 1;
  fill: #AFD136;
  left: 5px;
}

/*About*/
.about {
  margin: 90px 0;
}
.about .section-header {
  font-size: 48px;
  font-weight: 600;
  color: #222222;
}
.about .section-inner {
  margin-top: 115px;
}
.about .section-inner .section-title span {
  color: #8C8C8C;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about .section-inner .section-title .section-title-hr {
  display: block;
  margin-top: 15px;
  height: 4px;
  width: 100px;
  background-color: #AFD136;
}
.about .section-inner .section-desc h1 {
  font-size: 24px;
  font-weight: 600;
  color: #222222;
}
.about .section-inner .section-paragraph {
  margin-top: 20px;
}
.about .section-inner .section-paragraph p {
  color: #666;
  font-size: 16px;
  margin: 50px 0;
}
.about .section-inner .section-paragraph p:last-child, .about .section-inner .section-paragraph p:first-child {
  margin: 0;
}
.about .section-inner .section-actions {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
.about .section-inner .section-actions a {
  color: #222222;
  transition: 0.2s all ease-in-out;
}
.about .section-inner .section-actions a:hover {
  color: #AFD136;
}
.about .section-inner .section-actions a.large-btn {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about .section-inner .section-actions a.large-btn svg {
  position: relative;
  transition: 0.2s all ease-in-out;
  fill: #222222;
  left: 0;
  margin-left: 5px;
}
.about .section-inner .section-actions a.large-btn:hover svg {
  fill: #AFD136;
  left: 10px;
}
.about .section-inner .section-actions a.small-btn {
  font-size: 16px;
  font-weight: 600;
}

/*Features*/
.features {
  padding: 90px 0;
  margin: 0 90px;
  background-image: url(../img/bg-dot.png);
  background-repeat: repeat;
}
.features .section-title span {
  color: #8C8C8C;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.features .section-title .section-title-hr {
  display: block;
  margin-bottom: 15px;
  height: 4px;
  width: 100px;
  background-color: #AFD136;
}
.features .feature-box {
  padding: 0 20px;
}
.features .feature-box .feature-icon img {
  width: 60px;
}
.features .feature-box .feature-desc h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 45px 0;
  color: #222222;
}
.features .feature-box .feature-desc p {
  color: #8C8C8C;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
}

/*Services*/
.services {
  padding: 90px 0;
}
.services .section-header {
  font-size: 36px;
  font-weight: 600;
  color: #222222;
}
.services .owl-carousel {
  margin-top: 80px;
}
.services .owl-carousel .item {
  position: relative;
  min-height: 575px;
}
.services .owl-carousel .item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5746673669) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 1;
  transition: 0.2s all ease-in-out;
}
.services .owl-carousel .item:hover::before {
  background: #CEE002;
  opacity: 0.85;
}
.services .owl-carousel .item:hover .slider-wrap h1 {
  color: #222222;
  top: 60px;
  animation-name: service-box-title-anim;
  animation-duration: 0.4s;
}
.services .owl-carousel .item:hover .slider-wrap p {
  top: 80px;
  opacity: 1;
  animation-name: service-box-desc-anim;
  animation-duration: 0.4s;
  animation-delay: 200ms;
  animation-fill-mode: both;
}
.services .owl-carousel .item:hover .slider-wrap a {
  color: #222222;
}
.services .owl-carousel .item:hover .slider-wrap a svg {
  fill: #222222;
}
.services .owl-carousel .item .slider-wrap {
  position: relative;
  padding: 40px;
  position: absolute;
  width: 100%;
  height: 100%;
}
.services .owl-carousel .item .slider-wrap h1 {
  position: absolute;
  top: 80%;
  width: calc(100% - 80px);
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}
.services .owl-carousel .item .slider-wrap p {
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
  visibility: hidden;
}
.services .owl-carousel .item .slider-wrap a {
  position: absolute;
  bottom: 40px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: 0.2s all ease-in-out;
}
.services .owl-carousel .item .slider-wrap a svg {
  position: relative;
  fill: #fff;
  left: 5px;
  transition: 0.2s all ease-in-out;
}
.services .owl-carousel .item .slider-wrap a:hover svg {
  left: 15px;
}

/*Partners*/
.partners {
  background-image: url("../img/bg-dot.png");
  background-repeat: repeat;
  padding: 90px 0;
  margin: 0 90px;
}
.partners .section-header {
  font-size: 36px;
  font-weight: 600;
  color: #222222;
}
.partners .section-list-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 140px;
}
.partners ul li {
  float: left;
  display: block;
  margin: 0 25px;
  padding: 20px;
}
.partners ul li a img {
  height: 24px;
  width: auto;
  opacity: 0.2;
  transition: 0.4s all ease;
}
.partners ul li a:hover img {
  opacity: 0.6;
}

/*Service Areas*/
.service-areas {
  padding: 90px 0;
}
.service-areas .section-header {
  font-size: 36px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 50px;
}
.service-areas span {
  color: #9C9C9C;
}
.service-areas span strong {
  color: #222222;
  margin-right: 5px;
}
.service-areas span a {
  color: #9C9C9C;
  line-height: 2.15;
  transition: 0.4s all ease;
}
.service-areas span a:hover {
  color: #AFD136;
}
.service-areas .section-act-btns {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.service-areas .section-act-btns a {
  color: #222222;
  transition: 0.2s all ease-in-out;
}
.service-areas .section-act-btns a:hover {
  color: #AFD136;
}
.service-areas .section-act-btns a.large-btn {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-areas .section-act-btns a.large-btn svg {
  position: relative;
  transition: 0.2s all ease-in-out;
  fill: #222222;
  left: 0;
  margin-left: 5px;
}
.service-areas .section-act-btns a.large-btn:hover svg {
  fill: #AFD136;
  left: 10px;
}
.service-areas .section-act-btns a.small-btn {
  font-size: 16px;
  font-weight: 600;
}

/*Quick Access*/
.quick-access {
  padding: 90px 0;
}
.quick-access .section-header {
  font-size: 36px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 50px;
}
.quick-access span {
  display: block;
  font-size: 18px;
  margin-bottom: 36px;
}
.quick-access img {
  width: 300px;
  height: 300px;
}

/*Footer*/
.footer {
  padding: 90px 0;
  margin: 0 90px;
  border-top: 1px solid #e1e1e1;
}
.footer .brand-area img {
  width: 150px;
}
.footer .copyright-area {
  text-align: center;
  color: #222222;
}
.footer .copyright-area p a {
  font-weight: 600;
  color: #9C9C9C;
  transition: 0.3s all ease;
}
.footer .copyright-area p a:hover {
  color: #222222;
}
.footer .quick-links-area {
  display: flex;
  justify-content: flex-end;
}
.footer .quick-links-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .quick-links-area ul li a {
  cursor: pointer;
  color: #222222;
  transition: 0.4s all ease;
}
.footer .quick-links-area ul li a:hover {
  color: #AFD136;
}

/*Contact*/
.contact {
  padding: 90px 0;
}
.contact .section-title span {
  color: #8C8C8C;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact .section-title .section-title-hr {
  display: block;
  margin-bottom: 15px;
  height: 4px;
  width: 100px;
  background-color: #AFD136;
}
.contact .address-box span {
  margin-bottom: 5px;
}
.contact .address-box span.mail-address strong {
  font-size: 14px;
}
.contact .address-box span.mail-address a {
  color: #AFD136;
}
.contact .address-box span.mail-address a:hover {
  text-decoration: underline !important;
}
.contact .address-box span,
.contact .address-box strong {
  font-size: 30px;
  color: #ccc;
}
.contact .address-box span strong,
.contact .address-box strong strong {
  margin-right: 5px;
  font-weight: 600;
  color: #222222;
}
.contact .address-box p {
  font-size: 16px;
  color: #999;
  font-weight: 600;
  margin-bottom: 30px;
}
.contact .gsm-tel-box {
  margin-bottom: 50px;
}
.contact .gsm-tel-box span {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 5px;
}
.contact .gsm-tel-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact .gsm-tel-box ul li a {
  font-size: 30px;
  color: #AFD136;
  font-weight: 300;
}
.contact .gsm-tel-box ul li a:hover {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
}
.contact .whatsapp-tel-box {
  margin-bottom: 50px;
}
.contact .whatsapp-tel-box span {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 5px;
}
.contact .whatsapp-tel-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact .whatsapp-tel-box ul li a {
  font-size: 30px;
  color: #AFD136;
  font-weight: 300;
}
.contact .whatsapp-tel-box ul li a:hover {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
}
.contact .work-hours-box span {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
}
.contact .work-hours-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 10px !important;
}
.contact .work-hours-box ul li {
  color: #999;
}

/*Get Quote Form*/
.get-quote-form {
  padding: 90px 0;
}
.get-quote-form .section-title span {
  color: #8C8C8C;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.get-quote-form .section-title .section-title-hr {
  display: block;
  margin-bottom: 15px;
  height: 4px;
  width: 100px;
  background-color: #AFD136;
}
.get-quote-form form textarea {
  margin-top: 30px;
  resize: none;
}
.get-quote-form form .form-group-input {
  background-color: #f6f6f6;
  outline: none;
  border: none;
  padding: 14px;
  display: block;
  width: 100%;
  border: 1px solid #d1d1d1;
  transition: 0.2s all ease;
}
.get-quote-form form .form-group-input:focus {
  border-color: #AFD136;
  background-color: #fff;
}
.get-quote-form form button {
  border: none;
  display: inline-block;
  margin-top: 30px;
  background-color: #AFD136;
  color: #222222;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: 0.2s all ease;
}
.get-quote-form form button:hover {
  color: #fff;
  background-color: #222222;
}

/*Keyframes*/
@keyframes service-box-title-anim {
  from {
    top: 20px;
  }
  to {
    top: 60px;
  }
}
@keyframes service-box-desc-anim {
  from {
    top: 40px;
    opacity: 0;
    visibility: hidden;
  }
  to {
    top: 80px;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes sticky-navbar-anim {
  from {
    top: -120px;
  }
  to {
    top: 0;
  }
}/*# sourceMappingURL=main.css.map */