@charset "UTF-8";
:root {
  --pumpkin: #f5771e;
  --celery: #97be48;
  --cinnabar: #f15822;
  --tangerine: #fdb913;
  --grey: #777;
  --dimgrey: #707070;
  --eclipse: #393939;
  --empress: #767676;
  --shady: #979797;
  --nero: #2d2d2d;
  --mortar: #5b5b5b;
  --silver: #c4c4c4;
  --lightgrey: #cccccc;
}

* {
  font-family: "Montserrat", sans-serif;
  outline: none;
}

ul {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: var(--dimgrey);
  padding-left: 20px;
  list-style-type: disc;
}
ul li {
  margin-bottom: 16px;
}

figure {
  margin: 0;
}

.border-bottom {
  border-bottom: 1px solid #EEEEEE;
}

/*typography*/
/* Custom Font Import */
h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 48px;
  color: var(--eclipse);
  margin-bottom: 20px;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 49px;
  color: var(--celery);
  margin-bottom: 32px;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  color: var(--celery);
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22.652px;
  line-height: 28px;
  color: var(--eclipse);
  margin-bottom: 12px;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--nero);
}

.heading-super {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 88px;
  color: var(--nero);
}

.heading-small {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: var(--nero);
}

.text-body-normal {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--dimgrey);
}
.text-body-normal:not(:last-child) {
  margin-bottom: 16px;
}

.text-body-medium {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--empress);
}
.text-body-medium:not(:last-child) {
  margin-bottom: 16px;
}

.text-body-bold {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--eclipse);
  margin-bottom: 0;
}

.text-body-small {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 0;
}

.text-body-light {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--silver);
  margin-bottom: 0;
}

.text-body-small--sub {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--dimgrey);
}

.text-mid {
  font-size: 32px;
  line-height: 39px;
  font-weight: 400;
  margin-bottom: 0;
}

.text-accent, .text-accent--small {
  position: relative;
  margin-bottom: 38px;
}
.text-accent::after, .text-accent--small::after {
  content: "";
  width: 90px;
  height: 4px;
  position: absolute;
  bottom: -15px;
  left: 0;
  border-radius: 4px;
  background-color: var(--cinnabar);
  transition: transform 1s ease;
  transform: scaleX(0.4);
  transform-origin: 0% 50%;
}

.text-accent--small::after {
  width: 40px;
  bottom: -10px;
}

.text-accent-expand.text-accent--small::after {
  transform: scaleX(1);
}

.text-accent-expand.text-accent::after, .text-accent-expand.text-accent--small::after {
  transform: scaleX(1);
}

.font-size-15 {
  font-size: 15px;
}

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

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

.text-light-grey {
  color: var(--shady);
}

.text-green {
  color: var(--celery);
}

.text-orange {
  color: var(--pumpkin);
}

.text-black {
  color: var(--eclipse);
}

.text-black-2 {
  color: #151c07;
}

.text-grey {
  color: var(--dimgrey);
}

.text-white {
  color: #fff;
}

@media screen and (max-height: 600px) and (max-width: 1000px) {
  h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 576px) {
  h1 {
    font-size: 36px;
    line-height: 44px;
  }

  h2 {
    font-size: 34px;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .heading-super {
    font-size: 55px;
    line-height: 68px;
  }
}
.link-primary {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  color: var(--cinnabar);
}
.link-primary .text-animate {
  transform: translateX(10px);
  display: inline-block;
  transition: transform 0.2s ease;
}
.link-primary .icon-animate {
  display: inline-block;
  width: 14px;
  height: 14px;
  overflow: hidden;
}
.link-primary .icon-animate i {
  transform: translateX(-14px);
  transition: transform 0.2s ease;
}
.link-primary:hover {
  text-decoration: none;
  color: var(--cinnabar);
}
.link-primary:hover .icon-animate i {
  transform: translateX(0px);
}
.link-primary:hover .text-animate {
  transform: translateX(0px);
}

.button-primary {
  background-color: var(--celery);
  padding: 18px 30px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.168519px;
  color: #fff;
  border: 0;
  text-align: center;
  border-radius: 10px;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.button-primary .button-text {
  position: relative;
  z-index: 1;
}
.button-primary .text-animate {
  transform: translateX(10px);
  display: inline-block;
  transition: transform 0.2s ease;
}
.button-primary .icon-animate {
  display: inline-block;
  width: 14px;
  height: 12px;
  overflow: hidden;
}
.button-primary .icon-animate i {
  transform: translateX(-14px);
  transition: transform 0.2s ease;
}
.button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pumpkin);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.button-primary:hover {
  text-decoration: none;
  color: #fff;
}
.button-primary:hover .icon-animate i {
  transform: translateX(0px);
}
.button-primary:hover .text-animate {
  transform: translateX(0px);
}
.button-primary:hover::before {
  transform: scaleX(1);
}

.button-secondary {
  background-color: var(--nero);
  padding: 12px 30px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.168519px;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  text-transform: capitalize;
  position: relative;
}
.button-secondary .text-animate {
  transform: translateX(10px);
  display: inline-block;
  transition: transform 0.2s ease;
}
.button-secondary .icon-animate {
  display: inline-block;
  width: 14px;
  height: 14px;
  overflow: hidden;
}
.button-secondary .icon-animate i {
  transform: translateX(-14px);
  transition: transform 0.2s ease;
}
.button-secondary:hover {
  text-decoration: none;
  color: #fff;
}
.button-secondary:hover .icon-animate i {
  transform: translateX(0px);
}
.button-secondary:hover .text-animate {
  transform: translateX(0px);
}

.button-tertiary {
  background-color: #fff;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.168519px;
  color: var(--nero);
  text-align: center;
  border: 1px solid var(--shady);
  border-radius: 5px;
  text-transform: capitalize;
  position: relative;
}
.button-tertiary .text-animate {
  transform: translateX(10px);
  display: inline-block;
  transition: transform 0.2s ease;
}
.button-tertiary .icon-animate {
  display: inline-block;
  width: 14px;
  height: 14px;
  overflow: hidden;
}
.button-tertiary .icon-animate i {
  transform: translateX(-14px);
  transition: transform 0.2s ease;
}
.button-tertiary:hover {
  text-decoration: none;
  color: var(--cinnabar);
  border-color: var(--cinnabar);
}
.button-tertiary:hover .icon-animate i {
  transform: translateX(0px);
}
.button-tertiary:hover .text-animate {
  transform: translateX(0px);
}

.fw-dropdown-toggle-footer {
  border: 1px solid var(--dimgrey);
  border-radius: 5px;
  padding: 8px 12px;
  color: #1a1a1a;
  display: inline-block;
}
.fw-dropdown-toggle-footer:hover {
  text-decoration: none;
  color: var(--cinnabar);
  border-color: var(--cinnabar);
}

i svg {
  width: 16px;
}

.icon svg {
  width: 16px;
}

.logo {
  display: inline-block;
  margin: 0;
}
.logo img {
  height: 56px;
}

.image-fluid img {
  width: 100%;
}

.image-mw-500 {
  max-width: 500px;
}

.image-container .image-inner-border {
  position: absolute;
  top: 0;
  left: 0;
  margin: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid #ffffff;
  border-radius: 5px;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.image-container .image-outline {
  width: 98%;
  height: 98%;
  position: absolute;
  top: -7px;
  left: -4px;
  z-index: -1;
  object-fit: initial;
}

.image-shadow {
  box-shadow: -10px -2px 20px rgba(77, 101, 29, 0.2);
}

.image-3-4 {
  position: relative;
  padding-top: 100%;
}
.image-3-4 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-15-10 {
  position: relative;
  padding-top: 65%;
}
.image-15-10 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.service-icon {
  height: 75px;
  overflow: hidden;
  margin-bottom: 16px;
}
.service-icon img {
  height: 75px;
  transform: translateY(75px);
  transition: transform 0.5s ease;
}
.service-icon.show img {
  transform: translateY(0);
}

.service-hero {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
.service-hero .hero-col {
  display: inline-block;
  margin-left: 12px;
  margin-right: 12px;
  vertical-align: top;
  position: relative;
}
.service-hero .hero-col--1 {
  top: -20px;
}
.service-hero .hero-col--2 {
  top: -200px;
}
.service-hero .hero-col--3 {
  top: -70px;
}
.service-hero .service-hero-img {
  margin-bottom: 14px;
}
.service-hero .service-hero-img img {
  box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.service-hero .service-hero-img--1 {
  width: 132px;
  height: 218px;
}
.service-hero .service-hero-img--2 {
  width: 132px;
  height: 125px;
}
.service-hero .service-hero-img--3 {
  width: 132px;
  height: 172px;
}

.service-img {
  position: relative;
  padding-top: 80%;
}
.service-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  z-index: 2;
}
.service-img img.service-outline {
  width: 98%;
  height: 102%;
  position: absolute;
  top: 0px;
  left: -14px;
  z-index: 1;
  object-fit: initial;
}

.collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: 48px;
  margin-top: 40px;
}
.collage figure {
  margin-left: 18px;
  margin-bottom: 18px;
  position: relative;
}
.collage figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}
.collage figure img.collage-outline-1 {
  width: 106%;
  height: 92%;
  max-width: 480px;
  max-height: 500px;
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: 1;
  object-fit: initial;
}
.collage figure img.collage-outline-2 {
  width: 102%;
  height: 98%;
  max-width: 480px;
  max-height: 500px;
  position: absolute;
  top: 14px;
  left: -11px;
  z-index: 1;
  object-fit: initial;
}
.collage figure img.collage-outline-3 {
  width: 110%;
  height: 100%;
  max-width: 480px;
  max-height: 500px;
  position: absolute;
  top: 12px;
  left: -12px;
  z-index: 1;
  object-fit: initial;
}
.collage figure:nth-child(1) {
  flex-basis: 85%;
  padding-top: 48%;
}
.collage figure:nth-child(2) {
  flex-basis: 45%;
  padding-top: 30%;
}
.collage figure:nth-child(3) {
  flex-basis: 45%;
  padding-top: 60%;
}

.outline-animation-1 {
  animation: outline-ani-1 8s ease infinite alternate-reverse;
}

@keyframes outline-ani-1 {
  0% {
    transform: translateX(0) scaleX(1) scaleY(1);
  }
  33% {
    transform: translateX(-5) scaleX(1.2) scaleY(1.025);
  }
  66% {
    transform: translateX(0) scaleX(1.025) scaleY(1.075);
  }
  100% {
    transform: translateX(0) scaleX(1.0125) scaleY(1.035);
  }
}
.outline-animation-2 {
  animation: outline-ani-2 6s ease infinite alternate-reverse;
}

@keyframes outline-ani-2 {
  0% {
    transform: translateX(0) scaleX(1) scaleY(1);
  }
  33% {
    transform: translateX(0) scaleX(1.03) scaleY(1.05);
  }
  60% {
    transform: translateX(5) scaleX(1.07) scaleY(1.04);
  }
  100% {
    transform: translateX(0) scaleX(1.015) scaleY(1.1);
  }
}
.bg-element {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(50%);
  transform-origin: right;
}

@media screen and (max-width: 1280px) {
  .bg-element {
    transform: translateY(50%) scale(0.8);
  }
}
@media screen and (max-width: 991px) {
  .service-hero .hero-col {
    margin-left: 8px;
    margin-right: 8px;
  }
  .service-hero .hero-col--1 {
    top: -10px;
  }
  .service-hero .hero-col--2 {
    top: -70px;
  }
  .service-hero .hero-col--3 {
    top: -20px;
  }
  .service-hero .service-hero-img {
    margin-bottom: 24px;
  }
  .service-hero .service-hero-img--1 {
    width: 120px;
    height: 180px;
  }
  .service-hero .service-hero-img--2 {
    width: 120px;
    height: 100px;
  }
  .service-hero .service-hero-img--3 {
    width: 120px;
    height: 135px;
  }

  .bg-element {
    transform: translateY(50%) scale(0.6);
  }
}
@media screen and (max-width: 768px) {
  .collage figure:nth-child(2) {
    flex-basis: 42%;
    padding-top: 30%;
  }
}
@media screen and (max-width: 576px) {
  .logo img {
    height: 42px;
  }

  .service-img img.service-outline {
    left: -8px;
  }
}
.full-section {
  padding: 60px 0 75px 0;
  background-color: linear-gradient(102.26deg, #89af3d 34.37%, #c1e17f 96.57%);
  background-image: url("../images/bg4.png"), linear-gradient(102.26deg, #89af3d 34.37%, #c1e17f 96.57%);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  background-blend-mode: color-burn;
}

.full-section-service {
  padding: 60px 0 75px 0;
  background-color: #89af3d;
  background-image: url("../images/section-bg.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  background-blend-mode: screen;
}

@media screen and (max-width: 768px) {
  .full-section-light {
    padding: 30px 0 35px 0;
  }
}
@media screen and (max-width: 576px) {
  .full-section {
    padding: 40px 0 40px 0;
  }
}
/* Navbar Items */
.header-navbar {
  background-color: rgba(255, 255, 255, 0);
  padding-top: 6px;
  padding-bottom: 10px;
  transition: all 0.4s ease;
}

.header-bg {
  background-color: white;
  box-shadow: 0 2px 10px 0 rgba(5, 5, 5, 0.15);
}

.fw-navbar {
  padding-left: 0;
  padding-right: 0;
}

.fw-navbar-nav {
  opacity: 1;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
  background-color: #fff;
}

.fw-nav-item {
  margin: 0;
  opacity: 1;
}

.fw-nav-link {
  padding: 20px 10px;
  font-size: 14px;
  line-height: 17px;
  color: var(--dimgrey);
  position: relative;
}
.fw-nav-link:hover {
  text-decoration: none;
  color: var(--cinnabar);
}
.fw-nav-link:active {
  color: var(--cinnabar);
  font-weight: 400;
}

.fw-nav-item.active .fw-nav-link {
  color: var(--cinnabar);
  font-weight: 600;
}
.fw-nav-item.active .fw-nav-link::before {
  content: "•";
  font-size: 24px;
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  animation: active-bounce 1s 0.9s;
}

@keyframes active-bounce {
  0%, 50%, 70% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, 10px);
  }
  60% {
    transform: translate(-50%, 7px);
  }
  80% {
    transform: translate(-50%, 3px);
  }
  100% {
    transform: translate(-50%, 0px);
  }
}
.fw-dropdown-menu {
  border: 0;
  padding: 16px 24px;
  background-color: #fff;
  box-shadow: 1px 5px 15px rgba(0, 0, 0, 0.11);
  border-radius: 5px;
}
.fw-dropdown-menu .fw-dropdown-item {
  padding: 8px 0;
  font-size: 14px;
  line-height: 17px;
  color: var(--dimgrey);
  position: relative;
}
.fw-dropdown-menu .fw-dropdown-item:hover {
  background-color: transparent;
  color: var(--cinnabar);
}
.fw-dropdown-menu .fw-dropdown-item:hover::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--silver);
  position: absolute;
  bottom: 2px;
  left: 0;
}

.fw-navbar-toggler {
  outline: none;
  margin-top: 10px;
}
.fw-navbar-toggler:focus {
  outline: none;
}
.fw-navbar-toggler span {
  width: 24px;
  height: 2px;
  background-color: var(--dimgrey);
  display: block;
  margin-bottom: 8px;
  transform-origin: 50% 50%;
  transition: all 0.2s ease;
}
.fw-navbar-toggler span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}
.fw-navbar-toggler span:nth-child(2) {
  transform: rotate(-45deg) translate(2px, -1px);
}

.fw-navbar-toggler.collapsed span:nth-child(1) {
  transform: rotate(0deg);
}
.fw-navbar-toggler.collapsed span:nth-child(2) {
  transform: rotate(0deg);
}

@media screen and (max-width: 991px) {
  .fw-navbar-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: white;
    background: url(../images/nav-bg.png) #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-top: 200px;
    padding-left: 74px;
  }
  .fw-navbar-nav .fw-nav-item {
    margin-bottom: 10px;
  }
  .fw-navbar-nav .fw-nav-item .fw-nav-link {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--silver);
  }
  .fw-navbar-nav .fw-nav-item.active .fw-nav-link {
    color: var(--cinnabar);
  }
  .fw-navbar-nav .fw-nav-item.active .fw-nav-link::after {
    left: -16px;
    bottom: 20px;
    transform: translateX(0%);
  }

  .fw-nav-item.active .fw-nav-link::after {
    animation: none;
  }
}
@media screen and (max-width: 768px) {
  .fw-navbar {
    padding: 0;
  }
}
@media screen and (max-width: 567px) {
  .fw-navbar-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: white;
    padding-top: 140px;
    padding-left: 40px;
  }
  .fw-navbar-nav .fw-nav-item {
    margin-bottom: 0px;
  }
  .fw-navbar-nav .fw-nav-item .fw-nav-link {
    font-size: 26px;
  }
  .fw-navbar-nav .fw-nav-item.active .fw-nav-link::after {
    left: -16px;
    bottom: 20px;
    transform: translateX(0%);
  }
}
.project-slider::before {
  content: "";
  border-radius: 10px;
  width: 100%;
  height: calc(100% - 125px);
  position: absolute;
  top: 135px;
  left: 0;
  box-shadow: inset 0px -5px 40px rgba(197, 158, 62, 0.2);
}
.project-slider .slick-slide {
  padding: 20px;
  height: 500px;
  display: flex;
  align-items: flex-end;
}
.project-slider .slick-slide > div {
  flex-shrink: 1;
  flex-grow: 1;
}
.project-slider .project-slider-figure {
  position: relative;
  transition: padding 0.5s ease;
}
.project-slider .project-slider-figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 5px 8px rgba(57, 57, 57, 0.2);
}
.project-slider .slick-slide .project-slider-figure,
.project-slider .slick-slide[aria-hidden=true]:not(.slick-cloned) ~ .slick-cloned[aria-hidden=true] .project-slider-figure {
  padding-bottom: 120%;
}
.project-slider .slick-center .project-slider-figure,
.project-slider .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true] .project-slider-figure {
  padding-bottom: 160%;
}

@media screen and (max-width: 1199px) {
  .project-slider::before {
    height: calc(100% - 125px);
    top: 115px;
  }
  .project-slider .slick-slide {
    height: 400px;
  }
}
@media screen and (max-width: 991px) {
  .project-slider::before {
    height: calc(100% - 80px);
    top: 80px;
  }
  .project-slider .slick-slide {
    height: 240px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .project-slider {
    margin-top: 40px;
  }
  .project-slider::before {
    height: calc(100% - 100px);
    top: 135px;
  }
  .project-slider .slick-slide {
    height: 600px;
    padding: 10px;
  }
}
@media screen and (max-width: 575px) {
  .project-slider::before {
    height: calc(100% - 145px);
    top: 155px;
  }
  .project-slider .slick-slide {
    padding: 20px;
    height: 640px;
  }
}
@media screen and (max-width: 479px) {
  .project-slider {
    margin-top: 30px;
  }
  .project-slider::before {
    height: calc(100% - 85px);
    top: 100px;
  }
  .project-slider .slick-slide {
    padding: 10px;
    height: 482px;
  }
}
@media screen and (max-width: 376px) {
  .project-slider {
    margin-top: 30px;
  }
  .project-slider::before {
    height: calc(100% - 85px);
    top: 90px;
  }
  .project-slider .slick-slide {
    padding: 10px;
    height: 340px;
  }
}
.project-slider-controls-container {
  position: relative;
  margin-top: 20px;
}

.project-slider-nav .slick-slide {
  cursor: pointer;
}
.project-slider-nav figure {
  margin: 0;
  margin-right: 10px;
  position: relative;
}
.project-slider-nav figure img {
  width: 110px;
  height: 110px;
  padding: 8px;
  object-fit: cover;
  border-radius: 14px;
  object-position: center;
}
.project-slider-nav figure .card-image-border {
  position: absolute;
  top: 0;
  left: 0;
  margin: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 1px solid #ffffff;
  border-radius: 5px;
  transition: opacity 0.3s ease;
  z-index: 1;
  opacity: 0;
}
.project-slider-nav .slick-center .card-image-border {
  opacity: 1;
}

.project-slider-controls {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.project-prev {
  background-color: #fff;
  padding: 15px 10px 15px 6px;
  border-radius: 0 10px 10px 0;
  color: var(--cinnabar);
  cursor: pointer;
  pointer-events: all;
}

.project-next {
  background-color: #fff;
  padding: 15px 6px 15px 10px;
  border-radius: 10px 0 0 10px;
  color: var(--cinnabar);
  cursor: pointer;
  pointer-events: all;
}

@media screen and (max-width: 1199px) {
  .project-slider-nav figure img {
    width: 85px;
    height: 85px;
  }
}
@media screen and (max-width: 991px) {
  .project-slider-nav figure img {
    width: 50px;
    height: 50px;
    padding: 2px;
    border-radius: 10px;
  }
  .project-slider-nav figure .card-image-border {
    margin: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }

  .project-prev {
    padding: 4px 8px 4px 5px;
    border-radius: 0 10px 10px 0;
  }
  .project-prev svg {
    width: 16px;
  }

  .project-next {
    padding: 4px 5px 4px 8px;
    border-radius: 10px 0 0 10px;
  }
  .project-next svg {
    width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .project-slider-nav figure img {
    width: 130px;
    height: 130px;
  }
  .project-slider-nav figure .card-image-border {
    margin: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }

  .project-slider-controls-container {
    margin-top: 60px;
  }

  .project-prev {
    padding: 15px 10px 15px 6px;
    border-radius: 0 10px 10px 0;
  }
  .project-prev svg {
    width: 32px;
  }

  .project-next {
    padding: 15px 6px 15px 10px;
    border-radius: 10px 0 0 10px;
  }
  .project-next svg {
    width: 32px;
  }
}
@media screen and (max-width: 575px) {
  .project-slider-nav figure img {
    width: 142px;
    height: 142px;
  }

  .project-slider-controls-container {
    margin-top: 40px;
  }
}
@media screen and (max-width: 479px) {
  .project-slider-nav figure img {
    width: 98px;
    height: 98px;
  }
  .project-slider-nav figure .card-image-border {
    width: calc(100% - 25px);
  }
}
@media screen and (max-width: 376px) {
  .project-slider-nav figure img {
    width: 75px;
    height: 75px;
  }
  .project-slider-nav figure .card-image-border {
    width: calc(100% - 12px);
  }

  .project-slider-controls-container {
    margin-top: 20px;
  }
}
/*card*/
.services-card {
  margin-bottom: 80px;
}

.project-card {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in;
  transition: opacity 0.6s ease-in;
  margin-bottom: 50px;
}
.project-card.show {
  opacity: 1;
}
.project-card .project-card-link:hover {
  text-decoration: none;
}
.project-card .project-card-link:hover img {
  transform: scale(1.1);
}
.project-card .project-card-link:hover .card-image-border {
  opacity: 0;
}
.project-card figure {
  margin-bottom: 12px;
  padding-top: 70%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.project-card figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.project-card figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--celery);
  padding: 6px 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  border-top-right-radius: 10px;
  z-index: 2;
}
.project-card figure .card-image-border {
  position: absolute;
  top: 0;
  left: 0;
  margin: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid #ffffff;
  border-radius: 5px;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.project-category-card {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid var(--silver);
  transition: background-color 0.3s ease;
}
.project-category-card .project-category-content {
  margin-top: 15px;
}
.project-category-card .project-category-content .project-category-icon {
  text-align: center;
}
.project-category-card .project-category-content .project-category-icon img {
  height: 40px;
  margin-bottom: 6px;
  transform-origin: 50% 30%;
  transition: transform 0.3s ease;
}
.project-category-card .project-category-content .project-category-icon figcaption {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  text-align: center;
  color: var(--dimgrey);
  transition: transform 0.3s ease;
}
.project-category-card:hover {
  text-decoration: none;
  background-color: var(--celery);
  border-color: var(--celery);
  box-shadow: 0px 4px 10px rgba(151, 190, 72, 0.3);
}
.project-category-card:hover .project-category-content .project-category-icon img {
  transform: scale(1.4);
}
.project-category-card:hover .project-category-content .project-category-icon figcaption {
  color: #fff;
  transform: translateY(15px);
}

@media screen and (max-width: 576px) {
  .services-card {
    margin-bottom: 40px;
    text-align: center;
  }

  .project-card {
    margin-bottom: 28px;
  }
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

footer {
  position: relative;
  overflow: hidden;
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 100% 100%;
}
footer .footer-container {
  border-top: 1px solid var(--lightgrey);
  padding-top: 32px;
  padding-bottom: 50px;
}
footer .footer-title {
  margin-top: 38px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
footer .text-body-small {
  margin-bottom: 0px;
  padding-top: 10px;
}
footer .text-body-small {
  color: var(--dimgrey);
}
footer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 80px;
}
footer ul li {
  margin-bottom: 0;
}
footer ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: var(--dimgrey);
  border-bottom: 1px solid var(--lightgrey);
  display: block;
  padding: 12px 0;
}
footer ul li a:hover {
  text-decoration: none;
  color: var(--celery);
}
footer ul li:last-child a {
  border: 0;
}

.social-links {
  padding: 0;
}
.social-links li {
  display: inline-block;
  margin-right: 8px;
}
.social-links li a {
  border: none;
  color: var(--celery);
}
.social-links li a:hover {
  color: var(--pumpkin);
}

@media screen and (max-width: 576px) {
  footer ul {
    margin-bottom: 0px;
  }

  footer ul li {
    margin: 0;
  }

  footer ul li a {
    padding: 14px 0 10px 0;
  }
}
table {
  font-size: 14px;
  line-height: 17px;
  color: var(--mortar);
}
table td {
  padding-right: 20px;
  padding-bottom: 8px;
  line-height: 24px;
}

.hero-section {
  height: calc(100vh - 180px);
  background-image: url(../images/background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  margin-bottom: 80px;
}
.hero-section .container {
  overflow-x: hidden;
}
.hero-section p {
  width: 80%;
}

.hero-text-container {
  margin-top: 10%;
  transform: translateY(0px);
  opacity: 0;
}

.hero-image-container {
  justify-content: flex-end;
}
.hero-image-container .hero-image-container-layer1 {
  width: 100%;
  height: calc( 100vh - 285px );
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.hero-image-container .hero-image-container-layer2 {
  width: 50vh;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.main-section {
  padding-top: 100px;
}

@media screen and (max-width: 1360px) {
  .hero-section {
    height: calc(100vh - 70px);
  }

  .hero-image-container .hero-image-container-layer1 {
    height: calc( 100vh - 170px );
    margin-top: 26px;
  }
  .hero-image-container .hero-image-container-layer2 {
    width: 55vh;
  }
}
@media screen and (max-width: 768px) {
  .hero-section {
    margin-bottom: 100px;
  }

  .hero-text-container {
    margin-top: 80px;
  }

  .main-section {
    padding-top: 84px;
  }

  .hero-image-container .hero-image-container-layer1 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-height: 1024px) {
  .hero-section {
    height: calc(100vh - 270px);
    margin-bottom: 50px;
  }

  .hero-image-container .hero-image-container-layer1 {
    height: calc( 100vh - 470px );
  }
}
@media screen and (max-width: 576px) {
  .hero-section {
    margin-bottom: 0;
    align-items: flex-start;
    height: 100vh;
  }

  .main-section {
    padding-top: 70px;
  }
}
@media screen and (min-width: 992px) and (max-height: 580px) {
  .hero-section {
    position: relative;
    padding-bottom: 100px;
    min-height: 580px;
    height: 100vh;
  }
}
.hero-slider .slide {
  display: flex !important;
}
.hero-slider .slick-slide {
  margin: 0 200px;
}
.hero-slider .slick-list {
  margin: 0 -200px;
}
.hero-slider .slick-slide.slick-active .hero-text-container {
  animation: slideUp 1s 0.4s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(15px);
    opacity: 0.11;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.slide-img {
  position: relative;
  padding-bottom: 124%;
  width: 100%;
  height: 97%;
}
.slide-img .slide-img-item {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}
.slide-img .outline-1 {
  width: 108%;
  height: 98%;
  position: absolute;
  top: -16px;
  left: -12px;
  z-index: 1;
  max-width: inherit;
}
.slide-img .outline-2 {
  width: 112%;
  height: 96%;
  position: absolute;
  top: -15px;
  left: -28px;
  z-index: 1;
  max-width: inherit;
}

.controls-container {
  position: absolute;
  /*bottom: 170px;*/
  left: 50%;
  transform: translateX(-50%);
}
.controls-container .hero-slider-controls {
  width: fit-content;
  width: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.controls-container .hero-slider-controls .prev,
.controls-container .hero-slider-controls .next {
  color: var(--shady);
  cursor: pointer;
}
.controls-container .hero-slider-controls .prev:hover,
.controls-container .hero-slider-controls .next:hover {
  color: var(--cinnabar);
}

.custom-pagination {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
}
.custom-pagination ul {
  margin: 0;
}

.custom-dots {
  list-style: none;
  padding: 0;
}
.custom-dots li {
  display: inline-block;
}
.custom-dots li button {
  background-color: transparent;
  border: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: var(--empress);
}
.custom-dots li button::before {
  content: "0";
}
.custom-dots li:not(:last-child)::after {
  content: " /";
  color: var(--empress);
}
.custom-dots li.slick-active button {
  color: var(--cinnabar);
  font-weight: 500;
}

@media screen and (max-width: 1360px) {
  .controls-container {
    bottom: 65px;
  }
}
@media screen and (max-width: 1000px) {
  .controls-container {
    bottom: 0;
  }
}
@media screen and (max-width: 768px) and (min-height: 1024px) {
  .controls-container {
    bottom: 270px;
  }
}
@media screen and (max-height: 680px) {
  .hero-text-container {
    margin-top: 2%;
  }

  .hero-section p {
    width: 100%;
  }

  .slide-img .outline-1,
.slide-img .outline-2 {
    top: 0;
    height: 94%;
  }
}
@media screen and (max-width: 576px) {
  .controls-container {
    bottom: 25px;
  }

  .hero-text-container {
    margin-top: 10%;
  }
}
@media screen and (min-width: 992px) and (max-height: 580px) {
  .controls-container {
    bottom: 20px;
  }
}
.accordion .accordion-item .accordion-item-header h2 button {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--celery);
  text-align: left;
  padding-left: 0;
  position: relative;
}
.accordion .accordion-item .accordion-item-header h2 button::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: -8px;
  top: 10px;
}
.accordion .accordion-item .accordion-item-header h2 button:focus {
  text-decoration: none;
}
.accordion .accordion-item .accordion-item-header h2 button.collapsed {
  color: var(--silver);
}
.accordion .accordion-item .accordion-item-header h2 button.collapsed::after {
  content: "";
  top: 2px;
}
.accordion .accordion-item .accordion-item-body {
  background: #f7f7f7;
  border: 1px solid #c4c4c4;
  padding: 16px;
}
.accordion .accordion-item .accordion-item-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion .accordion-item .accordion-item-body ul li:last-child {
  margin: 0;
}
.accordion .accordion-item .accordion-item-body ul li a {
  font-size: 14px;
  line-height: 17px;
  color: #343434;
}

.input-text,
.input-textarea {
  border-radius: 5px;
  border: 1px solid var(--shady);
  outline: 0;
  padding: 8px 14px;
  height: 36px;
  width: 100%;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 20px;
  color: var(--nero);
}
.input-text::placeholder,
.input-textarea::placeholder {
  color: var(--shady);
}
.input-text:focus,
.input-textarea:focus {
  border-color: var(--celery);
}
.input-text:invalid,
.input-textarea:invalid {
  border-color: var(--cinnabar);
}

.input-textarea {
  height: auto;
}

.label {
  font-size: 16px;
  line-height: 20px;
  color: var(--nero);
  margin-bottom: 6px;
  display: block;
}

.form-info {
  margin-bottom: 20px;
  display: block;
  font-weight: 400;
}

/*spacing*/
section {
  margin-bottom: 120px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-30 {
  margin-top: 30px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-68 {
  margin-top: 68px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mt-32 {
    margin-top: 12px;
  }

  .mt-68 {
    margin-top: 58px;
  }
}
@media screen and (max-width: 576px) {
  section {
    margin-bottom: 60px;
  }

  .mb-120 {
    margin-bottom: 80px;
  }

  .mt-32 {
    margin-top: 32px;
  }

  .mt-68 {
    margin-top: 38px;
  }
}
.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--dimgrey);
}
.breadcrumb-item a:hover {
  color: var(--cinnabar);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--celery);
}

.breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.5rem;
  color: var(--dimgrey);
  content: ">";
}

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