@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  color: #000;
}

.background-black {
  background: #000;
}

.font-white {
  color: #fff;
}

.background-white {
  background: #fff;
}

.font-red {
  color: #aa0607;
}

.background-red {
  background: #aa0607;
}

.font-gray {
  color: #9c9c9c;
}

.background-gray {
  background: #9c9c9c;
}

.font-darkgray {
  color: #18191b;
}

.background-darkgray {
  background: #18191b;
}

.font-primary {
  color: #5cb800;
}

.background-primary {
  background: #5cb800;
}

.font-secondary {
  color: #434343;
}

.background-secondary {
  background: #434343;
}

.font-lightprimary {
  color: #1268f5;
}

.background-lightprimary {
  background: #1268f5;
}

.font-darkprimary {
  color: #124e91;
}

.background-darkprimary {
  background: #124e91;
}

.font-lightgray {
  color: #e7eefa;
}

.background-lightgray {
  background: #e7eefa;
}

.font-lightgradient {
  color: linear-gradient(270deg, #e9defa 0%, rgba(251, 252, 219, 0.5) 100%);
}

.background-lightgradient {
  background: linear-gradient(270deg, #e9defa 0%, rgba(251, 252, 219, 0.5) 100%);
}

.font-lightblue {
  color: #d6f1ff;
}

.background-lightblue {
  background: #d6f1ff;
}

body {
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #434343;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.custom-container {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .custom-container {
    width: 92%;
  }
}

.section-title {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}

.home-section {
  padding: 3rem 0;
}

.list-items li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.list-items li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #5cb800;
  position: absolute;
  left: 0;
  top: 13px;
  border-radius: 50px;
}

.default-btn, .color-border-btn, .color-btn {
  font-size: 17px;
  text-align: center;
  padding: 10px 30px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}
.default-btn:after, .color-border-btn:after, .color-btn:after {
  content: "\e900";
  font-family: "icomoon" !important;
  font-size: 13px;
  position: relative;
  left: 5px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.color-btn {
  background: #5cb800;
  color: #fff;
}
.color-btn:hover {
  background: #438500;
  color: #fff;
}
.color-btn:hover:after {
  left: 8px;
}

.color-border-btn {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.color-border-btn:hover {
  background: #5cb800;
  color: #fff;
}

.fixed-top {
  box-shadow: 2px 2px 10px #9c9c9c;
  -moz-box-shadow: 2px 2px 10px #9c9c9c;
  -webkit-box-shadow: 2px 2px 10px #9c9c9c;
  -ms-box-shadow: 2px 2px 10px #9c9c9c;
  background: #fff;
  padding: 2px 0;
}
.fixed-top .navbar-brand img {
  width: 75px;
}
@media (max-width: 768px) {
  .fixed-top .navbar-brand img {
    width: 50px;
  }
}

header {
  padding: 0;
}
header .navbar-brand img {
  width: 100px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
@media (max-width: 768px) {
  header .navbar-brand img {
    width: 75px;
  }
}
header .bsnav {
  background: none;
}
header .bsnav .navbar-nav {
  margin-top: -15px;
}
@media (max-width: 768px) {
  header .bsnav .nav-item {
    border-bottom: 1px solid #ccc !important;
  }
}
header .bsnav .nav-item .nav-link {
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 15px;
}
@media (max-width: 768px) {
  header .bsnav .nav-item .nav-link {
    display: block !important;
    border-bottom: 1px solid #ccc;
  }
}
header .bsnav .nav-item .nav-link:hover {
  color: #5cb800;
}
header .bsnav .nav-item .activenav {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
  color: #5cb800;
  font-size: 15px;
  letter-spacing: 3px;
}

.home-slider {
  height: 100%;
  margin-top: -15px;
}
.home-slider .swiper-wrapper {
  height: 100%;
}
.home-slider .swiper-wrapper .swiper-slide {
  position: relative;
}
.home-slider .swiper-wrapper .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.home-slider .swiper-wrapper .swiper-slide article {
  position: absolute;
  bottom: 12%;
  left: 5%;
  width: 50%;
  display: none;
}
@media (max-width: 768px) {
  .home-slider .swiper-wrapper .swiper-slide article {
    width: 93%;
  }
}
.home-slider .swiper-wrapper .swiper-slide article h2 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 500;
  color: #fff;
}
.home-slider .swiper-wrapper .swiper-slide article p {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #fff;
}
@media (max-width: 768px) {
  .home-slider .swiper-wrapper .swiper-slide article p {
    display: none;
  }
}
.home-slider .swiper-pagination {
  opacity: 1;
  color: #fff;
  bottom: 10%;
  top: inherit;
  background: rgba(255, 255, 255, 0.3);
  width: 90%;
  left: 5%;
  height: 3px;
}
.home-slider .swiper-pagination-progressbar-fill {
  background: #fff;
  height: 3px;
}

@media (max-width: 768px) {
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

.intro-msg {
  padding-top: 8rem;
}
@media (max-width: 768px) {
  .intro-msg {
    padding-top: 3rem;
  }
}
.intro-msg h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 300;
  line-height: 150%;
}

.canvas-img {
  background: url(../img/canvasimg.jpg) no-repeat 0 0;
  min-height: 585px;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .canvas-img {
    min-height: 400px;
    margin-bottom: 3rem;
  }
}
.canvas-img h3 {
  font-size: clamp(2rem, 5vw, 5rem);
  color: #fff;
  text-align: end;
  letter-spacing: 3rem;
  position: relative;
  top: -30px;
}

.title-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid #9c9c9c;
}
.title-section h3 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  color: #000;
}

.industries .custom-container {
  border-top: 1px solid #9c9c9c;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .industries .custom-container {
    padding-top: 3rem;
  }
}
.industries .highlet-col article h2 {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 300;
}
.industries .highlet-col article p {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 300;
}

.link-text {
  font-size: 16px;
  color: #5cb800;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.link-text .icomoon {
  position: relative;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.link-text:hover .icomoon {
  left: -2px;
}

h5 {
  line-height: 150%;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
}

.featured-works {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .featured-works {
    margin-top: 3rem;
  }
}
.featured-works .work-sections .row {
  padding-top: 3rem;
}
.featured-works .work-sections .row .project-article {
  height: 90%;
  padding-bottom: 15px;
}
.featured-works .work-sections .row .project-article article {
  height: 60%;
}
@media (max-width: 768px) {
  .featured-works .work-sections .row .project-article article {
    padding: 15px 0;
  }
}
.featured-works .work-sections .row .project-article article h4 {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 300;
}
.featured-works .work-sections .row .project-article .project-highlet div {
  border-right: 1px solid #9c9c9c;
}
.featured-works .work-sections .row .project-article .project-highlet div:last-child {
  border: none;
}
.featured-works .work-sections .row .project-article .project-highlet div h5 {
  font-size: clamp(1.2rem, 2.2vw, 2.2rem);
  color: #5cb800;
  font-weight: 300;
  margin-bottom: 0;
  padding-bottom: 0.2rem;
}
.featured-works .work-sections .row .project-article .project-highlet div p {
  margin: 0;
  padding: 0;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 21px;
  color: #000;
}

.all-projects .swiper-button-next,
.all-projects .swiper-button-prev {
  top: 40%;
}

.all-projects {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .all-projects {
    margin-top: 3rem;
  }
}
.all-projects .projects-swiper {
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.all-projects .projects-swiper .project-item h5 {
  padding-bottom: 5px;
  margin: 0;
}
.all-projects .projects-swiper .project-item h5 a {
  color: #434343;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 400;
}
.all-projects .projects-swiper .project-item p small {
  color: #9c9c9c;
}
.all-projects .swiper-pagination-bullet {
  border-radius: 0;
  width: 25px;
  height: 3px;
}
.all-projects .swiper-pagination-bullet-active {
  background: #5cb800;
}

.process-home {
  margin-top: 8rem;
}
.process-home .processrow [class^=col-md-] {
  padding-top: 3rem;
}
.process-home .processrow:last-child {
  border-bottom: 1px solid #9c9c9c;
}
.process-home .processrow:last-child .col-md-9 {
  padding-bottom: 3rem;
}
.process-home .processrow .col-md-9 {
  border-left: 1px solid #9c9c9c;
  padding-left: 2rem;
}
.process-home .processrow .num h2 {
  font-size: clamp(2rem, 10vw, 10rem);
  font-weight: 300;
  color: #5cb800;
}
.process-home .processrow article h3 {
  font-size: clamp(1.2rem, 2.3vw, 2.3rem);
  font-weight: 300;
}
.process-home .processrow article p {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}

.contact-info {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .contact-info {
    padding: 2rem 0;
  }
}
.contact-info p {
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  font-weight: 300;
}
.contact-info h2 {
  font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 2rem);
  padding-bottom: 1.5rem;
}

footer {
  background: url(../img/footerbg.jpg) no-repeat 0 0;
  background-size: cover;
  min-height: 350px;
  position: relative;
  padding-top: 6rem;
  color: #fff;
  margin-top: 8rem;
  word-wrap: break-word;
}
footer .footer-logo {
  width: 100px;
}
@media (max-width: 768px) {
  footer .footer-logo {
    width: 50px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  footer {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
footer .custom-container {
  position: relative;
  z-index: 9;
}
footer .custom-container h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
footer .custom-container ul li {
  margin-bottom: 0.6rem;
}
footer .custom-container ul li a {
  color: #fff;
}
footer .custom-container ul li a:hover {
  text-decoration: underline;
}
footer .custom-container .footer-social {
  margin-top: 2rem;
}
footer .custom-container .footer-social a {
  margin: 0 10px;
}
footer .custom-container .footer-social a:hover .icomoon {
  color: #5cb800;
}
footer .custom-container .footer-social a .icomoon {
  font-size: 18px;
  color: #fff;
}
footer .bottom-footer {
  padding: 4rem 0;
  border-top: 1px solid #5cb800;
  margin-top: 4rem;
}
footer .move-top {
  position: absolute;
  bottom: 5%;
  right: 2%;
  color: #5cb800;
  display: none;
  position: fixed;
  z-index: 999;
}

#load {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  background: url("../img/load.gif") no-repeat center center rgba(0, 0, 0, 0.8);
}

.subpage {
  min-height: 700px;
}
.subpage .subpage-header {
  padding-top: 6rem;
}
.subpage .subpage-header h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
}
.subpage .subpage-header h6 {
  color: #5cb800;
}
.subpage .subpage-main h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
  font-weight: 300;
}
.subpage .subpage-main h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 300;
}
.subpage .subpage-main h6 {
  color: #5cb800;
}
.subpage .subpage-main p {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 300;
  line-height: 165%;
}
.subpage .subpage-main .section-row {
  padding-top: 8rem;
}
@media (max-width: 768px) {
  .subpage .subpage-main .section-row {
    padding-top: 3rem;
  }
}
.subpage .project-col {
  margin-bottom: 4rem;
}
.subpage .project-col h4,
.subpage .project-col p {
  color: #000;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.subpage .project-col h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
}
.subpage .project-col:hover h4 {
  color: #5cb800;
  position: relative;
  transform: translateX(10px);
}

.contact_form .text-danger {
  font-size: 12px;
}
.contact_form .form-group {
  margin-bottom: 1rem;
}
.contact_form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 0;
}
.contact_form .form-group .form-control::-moz-placeholder {
  font-size: 14px;
}
.contact_form .form-group .form-control::placeholder {
  font-size: 14px;
}
.contact_form .form-group .form-control:focus {
  box-shadow: none;
}

.project-highlet-item {
  padding-bottom: 2.5rem;
}

.grid-gallery .item {
  padding-bottom: 2rem;
}/*# sourceMappingURL=style.css.map */