/*
@File: Git-Aid Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

/*--------------------------------
=========Table Of Contents========

1.  General Styles 
2.  Back To Top Button CSS
3.  Preloader CSS
4.  Button & Link CSS
5.  Section Title, Overlay & Shape CSS
6.  Pagination CSS
7.  Breadcrumb CSS
8.  Hero CSS
----------------------------------*/
:root {
  --primaryFont: 'Mulish', sans-serif;
  --secondaryFont: 'URClassico-Bold';
  --optionalFont: 'URClassico-Regular';
  --titleFont: 'GT-Super-Display-Super';
  --GtBoldFont: 'GT-Super-Display-Bold';
  --GtMediumFont: 'GT-Super-Display-Medium';
  --primaryColor: #FA8977;
  --secondaryColor: #1B321D;
  --paraColor: #546255;
  --orangeBlackColor: #3C1813;
  --lemonColor: #9DE4A1;
  --whiteColor: #ffffff;
  --offwhiteColor: #E8EBE8;
  --aztechColor:#00181d;
  --codColor: #111;
  --blackColor: #000;
  --fontSize: 16px;
  --transition: all ease .5s;
}

@font-face {
  font-family: URClassico-Bold;
  src: url(../fonts/URWClassico-Bold.woff);
}

@font-face {
  font-family: URClassico-Regular;
  src: url(../fonts/URWClassico-Regular.woff);
}

@font-face {
  font-family: GT-Super-Display-Bold;
  src: url(../fonts/GT-Super-Display-Bold.otf);
}

@font-face {
  font-family: GT-Super-Display-Super;
  src: url(../fonts/GT-Super-Display-Super.otf);
}

@font-face {
  font-family: GT-Super-Display-Medium;
  src: url(../fonts/GT-Super-Display-Medium.otf);
}

/*---------------------------------
    General Styles 
-----------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus,
button:focus,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a,
button,
input[type="submit"] {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

input, textarea, select {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 15px 12px;
  width: 100%;
  font-size: 16px;
}

.select-options {
  background-image: url(../img/icons/down-arrow.svg);
  background-position: calc(100% - 18px) 50%;
  background-size: 12px;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--whiteColor);
  letter-spacing: 0.8px;
  font-family: var(--secondaryFont);
  display: inline-block;
  height: 52px;
  width: 176px;
  padding: 12px 20px;
}

.select-options option {
  color: var(--blackColor);
}

input {
  height: 50px;
}

a {
  text-transform: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--paraColor);
}

a:hover,
a :focus {
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondaryFont);
  color: var(--secondaryColor);
  font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--secondaryColor);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: var(--primaryColor);
}

body {
  font-size: 16px;
  font-family: var(--primaryFont);
  color: var(--paraColor);
  font-weight: 400;
  line-height: 28px;
}

p {
  font-size: 16px;
  line-height: 28px;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
}

.text_primary {
  color: var(--primaryColor);
}

.text_secondary {
  color: var(--secondaryColor);
}

.text-title {
  color: var(--secondaryColor);
}

.text-lemon {
  color: #A2C9A5;
}

.text-offwhite {
  color: var(--offwhiteColor);
}

.text-orangeBlack {
  color: var(--orangeBlackColor);
}

.bg_secondary {
  background-color: var(--secondaryColor);
}

.bg-lemon {
  background-color: var(--lemonColor);
}

.bg-corn {
  background-color: #EFEAE6;
}

.f-primary {
  font-family: var(--primaryFont);
}

.f-secondary {
  font-family: var(--secondaryFont);
}

.f-optional {
  font-family: var(--optionalFont);
}

.f-title {
  font-family: var(--titleFont);
}

.f-GtMedium {
  font-family: var(--GtMediumFont);
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

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

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-30 {
  font-size: 30px;
}

.fs-36 {
  font-size: 36px;
}

.fs-42 {
  font-size: 42px;
}

.fs-46 {
  font-size: 46px;
}

.fs-64 {
  font-size: 64px;
}

.lh-54 {
  line-height: 54px;
}

.lh-34 {
  line-height: 34px;
}

.lh-36 {
  line-height: 36px;
}

.h-60 {
  height: 60px;
}

.resize-0 {
  resize: none;
}

.round-5 {
  border-radius: 5px;
}

.index-1 {
  z-index: 1;
}

.index-2 {
  z-index: 2;
}

.pt-75 {
  padding-top: 75px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.round-10 {
  border-radius: 10px;
}

.list-unstyle {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-unstyle li {
  list-style: none;
}

.btn {
  padding: 16px 30px;
  position: relative;
  z-index: 1;
  font-weight: 700;
  overflow: hidden;
  border-radius: 0;
  border: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.btn img, .btn svg {
  position: relative;
  top: -2px;
  margin-left: 13px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.btn:before {
  position: absolute;
  top: -5%;
  left: -5%;
  content: "";
  width: 0%;
  height: 110%;
  z-index: -1;
  border-radius: 5px;
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
  overflow: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.btn:hover:before {
  width: 120%;
  visibility: visible;
  opacity: 1;
}

.btn.style-one {
  color: var(--orangeBlackColor);
  background-color: var(--primaryColor);
  border-color: transparent;
}

.btn.style-one:before {
  background-color: var(--secondaryColor);
}

.btn.style-one:hover {
  color: var(--whiteColor);
}

.btn.style-one:hover i {
  color: var(--whiteColor);
}

.btn.style-one:hover img, .btn.style-one:hover svg {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.btn.style-two {
  background: var(--secondaryColor);
  color: var(--whiteColor);
  border-radius: 0;
}

.btn.style-two img, .btn.style-two svg {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.btn.style-two:before {
  background-color: var(--primaryColor);
}

.btn.style-two:hover {
  color: var(--secondaryColor);
}

.btn.style-two:hover img, .btn.style-two:hover svg {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}

.btn.style-three {
  background-color: var(--lemonColor);
  color: var(--secondaryColor);
}

.btn.style-three:before {
  background-color: var(--primaryColor);
}

.btn.style-four {
  background-color: transparent;
  color: var(--orangeBlackColor);
  border: 1px solid var(--primaryColor);
}

.btn.style-four:before {
  background-color: var(--primaryColor);
}

.btn.style-four:hover {
  border-color: transparent;
}

.btn.style-five {
  background-color: transparent;
  color: var(--orangeBlackColor);
  border: 1px solid var(--lemonColor);
}

.btn.style-five:before {
  background-color: var(--lemonColor);
}

.btn.style-six {
  background-color: var(--orangeBlackColor);
  color: var(--whiteColor);
}

.btn.style-six:before {
  background-color: var(--lemonColor);
}

.btn.style-six img, .btn.style-six svg {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.btn.style-six:hover {
  color: var(--orangeBlackColor);
}

.btn.style-six:hover img, .btn.style-six:hover svg {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}

.btn.style-seven {
  background: var(--secondaryColor);
  color: var(--lemonColor);
  border-radius: 0;
  font-weight: 500;
  border: 1px solid transparent;
}

.btn.style-seven:before {
  background-color: var(--primaryColor);
}

.btn.style-seven img {
  margin-left: 10px;
}

.btn.style-seven:hover {
  color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}

.btn.style-seven:hover img {
  -webkit-filter: brightness(0) invert(0);
          filter: brightness(0) invert(0);
}

.link {
  position: relative;
  font-weight: 600;
}

.link img, .link svg {
  margin-left: 13px;
  position: relative;
  top: -1px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.link:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.link:hover:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.link:hover img, .link:hover svg {
  margin-left: 13px;
}

.link.style-one {
  color: var(--orangeBlackColor);
}

.link.style-one:after {
  background-color: var(--orangeBlackColor);
}

.link.style-two {
  color: var(--primaryColor);
}

.link.style-two:after {
  background-color: var(--primaryColor);
}

.link.style-three {
  color: var(--secondaryColor);
}

.link.style-three:after {
  background-color: var(--secondaryColor);
}

.section-title.style-one {
  padding-left: 36px;
}

.section-title.style-one:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 3px);
  background-color: var(--lemonColor);
}

.section-title.style-two {
  padding-top: 16px;
}

.section-title.style-two:before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: 87px;
  height: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--lemonColor);
}

.section-title span {
  line-height: 14px;
  letter-spacing: 2.6px;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 42px;
  line-height: 54px;
}

.subpara {
  padding-left: 36px;
}

.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

.transition {
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.social-profile li {
  display: inline-block;
}

/*---------------------------------
     Back To Top Button CSS
-----------------------------------*/
@-webkit-keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px var(--primaryColor);
          box-shadow: inset 0 0 0 2px var(--primaryColor);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\EA76";
  font-family: remixicon !important;
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--primaryColor);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primaryColor);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*---------------------------------
   Preloader Area CSS
----------------------------------*/
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #f1faee;
  --outer-line-color: #a8dadc;
  --middle-line-color: #457b9d;
  --inner-line-color: #1d3557;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all .3s 1s ease-out;
  transition: all .3s 1s ease-out;
}

/*---------------------------------
    Back To Top CSS
----------------------------------*/
#backtotop {
  opacity: 0;
  right: 20px;
  z-index: 99;
  width: 50px;
  bottom: 20px;
  height: 50px;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 49px;
  background-color: var(--primaryColor);
  -webkit-animation: border-transform 10s linear infinite alternate forwards;
  animation: border-transform 10s linear infinite alternate forwards;
  color: var(--whiteColor);
}

#backtotop:hover {
  background-color: var(--secondaryColor);
}

@-webkit-keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

/*---------------------------------
     Animation CSS
----------------------------------*/
.rotate {
  -webkit-animation: rotation 20s infinite linear;
  animation: rotation 20s infinite linear;
}

.bounce {
  -webkit-animation: float 1500ms infinite ease-in-out;
  animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
  -webkit-animation: moveHorizontal 3000ms infinite ease-in-out;
  animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
  -webkit-animation: moveVertical 3000ms infinite ease-in-out;
  animation: moveVertical 3000ms infinite ease-in-out;
}

.zoomIn {
  -webkit-animation: zoom-in 5s ease-out infinite;
  animation: zoom-in 5s ease-out infinite;
}

.animationFramesTwo {
  -webkit-animation: animationFramesTwo 20000ms infinite ease-in-out;
  animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.animationFramesThree {
  -webkit-animation: animationFramesThree 20000ms infinite ease-in-out;
  animation: animationFramesThree 20000ms infinite ease-in-out;
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-webkit-keyframes moveHorizontal {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes moveVertical {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes moveVertical {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(-141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(-83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(-141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(-83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -100px;
  }
}

@keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -100px;
  }
}

@-webkit-keyframes mymovetwo {
  from {
    right: 0;
  }
  to {
    right: -100px;
  }
}

@keyframes mymovetwo {
  from {
    right: 0;
  }
  to {
    right: -100px;
  }
}

/*-------------------------------
        Pagination  CSS
-------------------------------*/
.page-nav li {
  margin: 0 4px;
  display: inline-block;
}

.page-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  color: var(--titleColor);
  background-color: #E4EEE5;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.page-nav li a i {
  font-size: 25px;
  font-weight: 300;
  line-height: 0.8;
  margin: 0 auto;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.page-nav li a.active, .page-nav li a:hover {
  opacity: 1;
  background-color: var(--lemonColor);
  border-color: transparent;
}

.page-nav li:first-child, .page-nav li:last-child {
  position: relative;
  top: 2px;
}

.page-nav li:first-child a, .page-nav li:last-child a {
  background-color: transparent;
}

.page-nav li:first-child a i, .page-nav li:last-child a i {
  position: relative;
  top: 1px;
}

.fint-tab-list {
  border: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.fint-tab-list .nav-item {
  border: none;
  margin-right: 35px;
}

.fint-tab-list .nav-item:last-child {
  margin-right: 0;
}

.fint-tab-list .nav-item .nav-link {
  color: var(--secondaryColor);
  background-color: transparent;
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.3px;
  border: none;
  display: inline-block;
  padding: 0 0 4px;
  position: relative;
}

.fint-tab-list .nav-item .nav-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--primaryColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}

.fint-tab-list .nav-item .nav-link.active, .fint-tab-list .nav-item .nav-link:hover {
  font-weight: 800;
}

.fint-tab-list .nav-item .nav-link.active:after, .fint-tab-list .nav-item .nav-link:hover:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

/*---------------------------------
    Breadcrumb Section CSS
----------------------------------*/
.breadcrumb-wrapper {
  background-image: url(../img/breadcrumb/br-bg.webp);
  z-index: 0;
  position: relative;
}

.breadcrumb-wrapper .br-img {
  bottom: -70px;
  right: 20px;
}

.breadcrumb-wrapper .br-content {
  padding-top: 110px;
  padding-bottom: 110px;
}

.breadcrumb-wrapper .br-content .br-title {
  padding-left: 46px;
}

.breadcrumb-wrapper .br-content .br-title:before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 10px);
  background-color: var(--whiteColor);
}

.breadcrumb-wrapper .br-content .br-title h2 {
  line-height: 50px;
  margin-bottom: 17px;
}

.breadcrumb-wrapper .br-content .br-title a {
  color: #445345;
  font-weight: 700;
  margin-right: 18px;
  position: relative;
}

.breadcrumb-wrapper .br-content .br-title a:after {
  position: absolute;
  top: 11px;
  right: -15px;
  content: "";
  width: 5px;
  height: 1px;
  background-color: #445345;
}

/*---------------------------------
    Hero Section CSS
----------------------------------*/
.hero-section.style-one .hero-slide-item {
  padding: 140px 0 348px;
  background-position: top center;
}

.hero-section.style-one .hero-slide-item:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/hero-shape-1.webp);
  content: "";
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.hero-section.style-one .hero-slide-item .hero-content h1 {
  padding-left: 45px;
  font-size: 48px;
  line-height: 58px;
  position: relative;
}

.hero-section.style-one .hero-slide-item .hero-content h1:before {
  position: absolute;
  top: 15px;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 15px);
  background-color: var(--lemonColor);
}

.hero-section.style-one .hero-slide-item .hero-content p {
  margin: 20px 0 30px;
}

.hero-section.style-one .hero-slide-item .hero-content .hero-btn {
  padding: 17px 35px 17px 20px;
  background-color: var(--lemonColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-section.style-one .hero-slide-item .hero-content .hero-btn .hero-btn-icon {
  width: 47px;
  height: 47px;
  margin-right: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-section.style-one .hero-slide-item .hero-content .hero-btn span {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-section.style-one .hero-slide-item .hero-content .hero-btn:hover {
  background-color: var(--secondaryColor);
}

.hero-section.style-one .hero-slide-item .hero-content .hero-btn:hover span {
  color: var(--whiteColor);
}

.hero-section.style-two .hero-img-wrap .hero-bg {
  height: 649px;
  position: relative;
  background-position: left center;
}

.hero-section.style-two .hero-img-wrap .hero-bg .social-profile {
  position: absolute;
  bottom: 22px;
  left: 25px;
}

.hero-section.style-two .hero-img-wrap .hero-bg .social-profile li {
  margin-right: 12px;
}

.hero-section.style-two .hero-img-wrap .hero-bg .social-profile li:last-child {
  margin-right: 0;
}

.hero-section.style-two .hero-img-wrap .hero-bg .social-profile li a i {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 300;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-section.style-two .hero-img-wrap .hero-bg .social-profile li a:hover i {
  color: var(--primaryColor);
}

.hero-section.style-two .hero-img-wrap .brand-wrapper {
  padding-top: 85px;
  padding-bottom: 85px;
}

.hero-section.style-two .hero-img-wrap .brand-wrapper .brand-logo {
  width: 25%;
}

.hero-section.style-two .hero-logo-text {
  color: #F4F5F4;
  font-family: var(--secondaryFont);
  font-size: 240px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: block;
  padding: 60px 0 50px 90px;
}

.hero-section.style-two .hero-content-slider {
  padding: 60px 30px 80px 30px;
  position: relative;
}

.hero-section.style-two .hero-content-slider .slider-btn {
  position: absolute;
  bottom: 83px;
  right: 40px;
  z-index: 1;
}

.hero-section.style-two .hero-content-slider .slider-btn .hero-prev {
  margin-right: 5px;
}

.hero-section.style-two .hero-content-slider .slider-btn .hero-next {
  margin-left: 5px;
}

.hero-section.style-two .hero-content-slider .slider-btn .hero-prev,
.hero-section.style-two .hero-content-slider .slider-btn .hero-next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-section.style-two .hero-content-slider .slider-btn .hero-prev img,
.hero-section.style-two .hero-content-slider .slider-btn .hero-next img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.hero-section.style-two .hero-content-slider .slider-btn .hero-prev.active, .hero-section.style-two .hero-content-slider .slider-btn .hero-prev:hover,
.hero-section.style-two .hero-content-slider .slider-btn .hero-next.active,
.hero-section.style-two .hero-content-slider .slider-btn .hero-next:hover {
  background-color: var(--whiteColor);
}

.hero-section.style-two .hero-content-slider .slider-btn .hero-prev.active img, .hero-section.style-two .hero-content-slider .slider-btn .hero-prev:hover img,
.hero-section.style-two .hero-content-slider .slider-btn .hero-next.active img,
.hero-section.style-two .hero-content-slider .slider-btn .hero-next:hover img {
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}

.hero-section.style-two .hero-slide h1 {
  font-size: 60px;
  line-height: 75px;
  margin-bottom: 30px;
  padding-left: 45px;
  position: relative;
}

.hero-section.style-two .hero-slide h1:before {
  position: absolute;
  top: 14px;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 17px);
  background-color: var(--lemonColor);
}

.hero-section.style-two .hero-slide p {
  color: #E8EBE8;
  margin-bottom: 30px;
}

.hero-section.style-three {
  margin-top: -50px;
  padding: 130px 0 240px;
}

.hero-section.style-three .hero-img-wrap .hero-img-one {
  border-radius: 50% 50% 0 0;
}

.hero-section.style-three .hero-img-wrap .hero-img-two {
  top: 35%;
  left: -5%;
}

.hero-section.style-three .hero-img-wrap .hero-img-shape {
  top: 9%;
  left: 10%;
}

.hero-section.style-three .hero-content h1 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 30px;
  padding-left: 45px;
}

.hero-section.style-three .hero-content h1:before {
  position: absolute;
  top: 14px;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 18px);
  background-color: var(--whiteColor);
}

.hero-section.style-three .hero-content p {
  margin-bottom: 25px;
  color: #445345;
}

.hero-section.style-three .hero-content .hero-btn {
  padding: 17px 35px 17px 20px;
  margin-bottom: 27px;
}

.hero-section.style-three .hero-content .hero-btn .hero-btn-icon {
  width: 47px;
  height: 47px;
  margin-right: 10px;
}

.hero-section.style-three .hero-content .google-ratings {
  color: #445345;
  padding-left: 41px;
  max-width: 80%;
}

.hero-section.style-three .hero-content .google-ratings > img {
  top: 3px;
  left: 0;
  margin-right: 15px;
}

.hero-section.style-three .hero-content .google-ratings ul {
  position: relative;
  top: -2px;
  margin: 0 4px 0 2px;
}

.hero-section.style-three .hero-content .google-ratings ul li {
  margin-right: -1px;
}

.hero-section.style-three .hero-content .google-ratings a {
  text-decoration: underline;
  margin-left: 4px;
  color: #445345;
}

.hero-ratings .google-ratings {
  padding: 36px 30px;
  color: #DDEDDE;
  margin-top: -50px;
  z-index: 2;
  position: relative;
}

.hero-ratings .google-ratings > img {
  margin-right: 9px;
}

.hero-ratings .google-ratings ul {
  position: relative;
  top: -3px;
  margin: 0 3px;
}

.hero-ratings .google-ratings ul li {
  margin-right: -4px;
}

.hero-ratings .google-ratings ul li:last-child {
  margin-right: 0;
}

.hero-ratings .google-ratings a {
  color: var(--lemonColor);
}

.hero-ratings .google-ratings ul {
  margin: 0 5px;
}

.hero-ratings .google-ratings ul li {
  display: inline-block;
}

.hero-slider-one {
  position: relative;
}

.hero-slider-one .slider-btn {
  position: absolute;
  bottom: 150px;
  z-index: 1;
}

.hero-slider-one .slider-btn .hero-prev {
  margin-right: 5px;
}

.hero-slider-one .slider-btn .hero-next {
  margin-left: 5px;
}

.hero-slider-one .slider-btn .hero-prev,
.hero-slider-one .slider-btn .hero-next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-slider-one .slider-btn .hero-prev img,
.hero-slider-one .slider-btn .hero-next img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-filter: brightness(1) invert(0);
          filter: brightness(1) invert(0);
}

.hero-slider-one .slider-btn .hero-prev:hover,
.hero-slider-one .slider-btn .hero-next:hover {
  background-color: var(--secondaryColor);
}

.hero-slider-one .slider-btn .hero-prev:hover img,
.hero-slider-one .slider-btn .hero-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/*---------------------------------
    About Section CSS
----------------------------------*/
.about-wrap .exp-box {
  background-color: #FFC085;
  padding: 25px 30px 31px;
}

.about-wrap .exp-box h6 {
  margin-bottom: 8px;
}

.about-wrap .circle-text-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.about-wrap .circle-text-wrap .circle-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-wrap .circle-text-wrap .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-wrap .circle-text-wrap .circle-text text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.2px;
}

.about-wrap .circle-text-wrap .circle-text svg {
  position: relative;
  width: 440px;
  height: 440px;
}

.about-wrap .about-content .section-title {
  margin-bottom: 25px;
}

.about-wrap .about-content .feature-list {
  margin: 20px 0 30px;
}

.about-wrap.style-one .circle-text-wrap {
  position: absolute;
  top: 51%;
  right: 1%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-wrap.style-one .about-img-wrap .exp-box {
  top: 57%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #FFC085;
}

.about-wrap.style-two .circle-text-wrap {
  position: absolute;
  bottom: 0%;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.about-wrap.style-two .about-img-wrap .about-video-wrap {
  width: 416px;
  height: 540px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.about-wrap.style-two .about-img-wrap .about-video-wrap .about-video {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-wrap.style-two .about-img-wrap .about-video-wrap .about-video::-webkit-media-controls {
  display: none !important;
}

.about-wrap.style-two .about-img-wrap .exp-box {
  top: 30%;
}

.about-wrap.style-three .circle-text-wrap {
  position: absolute;
  bottom: -8%;
  right: 24%;
}

.about-wrap.style-three .circle-text-wrap.style-two {
  top: 51%;
  right: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-wrap.style-three .about-shape {
  top: 40%;
  right: 0%;
  z-index: -1;
}

.about-wrap.style-three .about-shape.style-two {
  top: auto;
  bottom: 0;
  left: 50%;
}

.about-wrap.style-three .about-img-wrap {
  padding-bottom: 27px;
}

.about-wrap.style-three .about-img-wrap .about-video-wrap {
  width: 416px;
  height: 540px;
  position: relative;
  overflow: hidden;
}

.about-wrap.style-three .about-img-wrap .about-video-wrap .about-video {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-wrap.style-three .about-img-wrap .about-video-wrap .about-video::-webkit-media-controls {
  display: none !important;
}

.about-wrap.style-three .about-img-wrap .exp-box {
  bottom: 0;
}

.about-wrap.style-three .about-content .about-subpara p {
  margin: 28px 0 23px;
}

.about-wrap.style-three .about-content .feature-list {
  margin-bottom: 31px;
}

.feature-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 31px;
  font-weight: 600;
}

.feature-list li i {
  position: absolute;
  top: 6px;
  left: 0;
  color: #5C9999;
  line-height: 0.8;
  font-size: 20px;
  font-weight: 300;
}

.feature-list li img {
  position: absolute;
  left: 0;
  top: 4px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/*---------------------------------
    Feature Section CSS
----------------------------------*/
.feature-wrapper {
  margin-top: -140px;
}

.feature-card.style-one {
  -webkit-box-shadow: 0px 4px 44px 0px rgba(84, 98, 85, 0.14);
          box-shadow: 0px 4px 44px 0px rgba(84, 98, 85, 0.14);
}

.feature-card.style-one .feature-img {
  width: calc(50% - 10px);
  margin: 10px 0 10px 10px;
  height: 310px;
}

.feature-card.style-one .feature-info {
  width: 50%;
  padding: 15px 30px 15px 30px;
}

.feature-card.style-two {
  -webkit-box-shadow: 0px 4px 44px 0px rgba(84, 98, 85, 0.1);
          box-shadow: 0px 4px 44px 0px rgba(84, 98, 85, 0.1);
}

.feature-card.style-two .feature-badge {
  width: 50%;
  padding: 44px 30px 55px;
  -webkit-box-shadow: 0px 4px 44px 0px rgba(84, 98, 85, 0.14);
          box-shadow: 0px 4px 44px 0px rgba(84, 98, 85, 0.14);
}

.feature-card.style-two .feature-badge h3 {
  font-size: 28px;
  line-height: 36px;
  margin: 16px 0 16px;
}

.feature-card.style-two .feature-badge span {
  color: #A5B4A6;
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 2.6px;
}

.feature-card.style-two .feature-info {
  width: 50%;
  min-height: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px 30px 15px 30px;
  -webkit-box-shadow: 0px 20px 44px -25px rgba(84, 98, 85, 0.1);
          box-shadow: 0px 20px 44px -25px rgba(84, 98, 85, 0.1);
}

.feature-card.style-one .feature-info span, .feature-card.style-two .feature-info span {
  color: #324333;
  font-style: italic;
}

.feature-card.style-one .feature-info h3, .feature-card.style-two .feature-info h3 {
  margin-bottom: 11px;
}

.feature-card.style-one .feature-info p, .feature-card.style-two .feature-info p {
  margin: 20px 0 18px;
}

/*---------------------------------
    Why Choose Us Section CSS
----------------------------------*/
.wh-card {
  -webkit-box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.06);
}

.wh-card .wh-img {
  width: 240px;
  padding: 15px 0 15px 15px;
}

.wh-card .wh-info {
  width: calc(100% - 240px);
  padding: 15px 25px;
}

.wh-card .wh-info h3 {
  line-height: 34px;
  margin-bottom: 15px;
}

.wh-card .wh-info p {
  margin-bottom: 23px;
}

.wh-slider {
  margin: -25px 0 0;
}

.wh-slider .wh-card {
  margin: 25px 0;
}

.wh-slider .wh-pagination {
  text-align: center;
  margin: 5px 0 0;
}

.wh-slider .wh-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #D9D9D9;
  opacity: 1;
  margin: 0 6px;
}

.wh-slider .wh-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--lemonColor);
  width: 10px;
  height: 10px;
  position: relative;
  top: 2px;
}

/*---------------------------------
     Brand Section CSS
----------------------------------*/
.award-shape {
  top: -60px;
  right: 0;
}

.brand-wrap {
  margin: 0 20px;
  border: 1px solid #E5EEE6;
}

.brand-wrap .brand-logo {
  width: 20%;
  padding: 50px 0;
  border-right: 1px solid #E5EEE6;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.brand-wrap .brand-logo:last-child {
  border-right: none;
}

.brand-wrap .brand-logo img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.brand-wrap .brand-logo:hover {
  background-color: #E5EEE6;
}

.brand-wrap .brand-logo:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/*---------------------------------
     Service Section CSS
----------------------------------*/
.service-wrapper-one .service-card {
  width: calc(30% - 12px);
  margin: 0 24px 30px 0;
}

.service-wrapper-one .section-title {
  width: calc(39% - 12px);
  margin: 0 0 30px;
}

.service-wrapper-two .service-card {
  width: calc(28.7% - 12px);
  margin: 0 24px 30px 0;
}

.service-wrapper-two .service-card:last-child {
  margin-right: 0;
}

.service-wrapper-two .btn {
  width: 138px;
  min-height: 360px;
  margin: 0 24px 30px 0;
}

.service-wrapper-two .btn:before {
  -webkit-transform: skewX(0);
          transform: skewX(0);
}

.service-wrapper-two .btn span {
  display: block;
  width: 200px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.service-wrapper.style-two .btn {
  padding: 68px 20px;
}

.service-card.style-one {
  min-height: 360px;
  padding: 35px 25px 25px;
  background-color: #E4EEE5;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.service-card.style-one:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.service-card.style-one.bg_1 {
  background-color: #E4EEE5;
}

.service-card.style-one.bg_2 {
  background-color: #F2EBEA;
}

.service-card.style-one.bg_3 {
  background-color: #E7F1F1;
}

.service-card.style-one.bg_4 {
  background-color: #EFEAE6;
}

.service-card.style-one.bg_5 {
  background-color: #F8F1F4;
}

.service-card.style-one .service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 95px;
  background-color: var(--whiteColor);
}

.service-card.style-one h3 {
  margin-right: 50px;
  margin-bottom: 12px;
}

.service-card.style-one h3 a {
  color: var(--secondaryColor);
}

.service-card.style-one h3 a:hover {
  color: var(--primaryColor);
}

.service-card.style-two {
  background-color: #F2EBEA;
  min-height: 405px;
  padding: 30px 25px 32px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.service-card.style-two .service-icon {
  padding-bottom: 40px;
  margin-bottom: 155px;
  border-bottom: 1px solid var(--whiteColor);
}

.service-card.style-two h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
}

.service-card.style-two .link img {
  margin-left: 12px;
}

.service-card.style-two:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: var(--lemonColor);
}

.service-card.style-four {
  height: 420px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.service-card.style-four:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(60, 24, 19, 0.7);
}

.service-card.style-four .service-info {
  position: relative;
  z-index: 1;
  padding: 30px 30px 25px;
}

.service-card.style-four .service-info h3 {
  margin-bottom: 23px;
}

.service-card.style-four .service-info h3 a {
  color: var(--whiteColor);
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}

.service-card.style-four .service-info p {
  margin-bottom: 32px;
  color: #D4D4D4;
}

.service-card.style-four .service-info .link {
  color: var(--whiteColor);
}

.service-card.style-four .service-info .link img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-card-slider .slider-btn {
  position: absolute;
  right: 28px;
  bottom: 30px;
  z-index: 1;
}

.service-card-slider .service-prev {
  margin-right: 5px;
}

.service-card-slider .service-next {
  margin-left: 5px;
}

.service-card-slider .service-prev,
.service-card-slider .service-next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.service-card-slider .service-prev img,
.service-card-slider .service-next img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.service-card-slider .service-prev.active, .service-card-slider .service-prev:hover,
.service-card-slider .service-next.active,
.service-card-slider .service-next:hover {
  background-color: var(--secondaryColor);
}

.service-card-slider .service-prev.active img, .service-card-slider .service-prev:hover img,
.service-card-slider .service-next.active img,
.service-card-slider .service-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-wrap .service-bg {
  height: 400px;
}

/*---------------------------------
     Case Card CSS
----------------------------------*/
.case-wrapper .case-tab-content {
  padding: 0 15px;
  margin-bottom: 0 30px;
}

.case-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.case-card:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(246deg, rgba(27, 50, 29, 0.45) 41.22%, rgba(27, 50, 29, 0.81) 92.58%);
  z-index: 0;
}

.case-card .case-info {
  position: absolute;
  bottom: 25px;
  left: 30px;
  width: calc(100% - 60px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.case-card .case-info h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.case-card .case-info h3 a {
  color: var(--whiteColor);
}

.case-card .case-info h3 a:hover {
  color: var(--lemonColor);
}

.case-card .case-info .post-metainfo {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 5px;
}

.case-card .case-info .post-metainfo li {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  padding-right: 25px;
  margin-right: 20px;
  font-size: 15px;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.case-card .case-info .post-metainfo li:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.case-card .case-info .post-metainfo li:last-child {
  margin-right: 0;
}

.case-card .case-info .post-metainfo li:last-child:after {
  display: none;
}

.case-card .case-info .post-metainfo li a {
  color: var(--whiteColor);
}

.case-card .case-info .post-metainfo li a:hover {
  color: var(--lemonColor);
}

.case-card .case-info .post-metainfo li img {
  position: absolute;
  top: 3px;
  left: 0;
  margin-right: 10px;
  max-width: 22px;
}

.case-card .case-info .post-metainfo li img, .case-card .case-info .post-metainfo li a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.case-card:hover .case-info {
  padding-bottom: 25px;
}

.case-slider-one .case-pagination-one,
.case-slider-one .case-pagination-two,
.case-slider-one .case-pagination-three,
.case-slider-two .case-pagination-one,
.case-slider-two .case-pagination-two,
.case-slider-two .case-pagination-three,
.case-slider-three .case-pagination-one,
.case-slider-three .case-pagination-two,
.case-slider-three .case-pagination-three {
  text-align: center;
  margin: 35px 0 0;
}

.case-slider-one .case-pagination-one .swiper-pagination-bullet,
.case-slider-one .case-pagination-two .swiper-pagination-bullet,
.case-slider-one .case-pagination-three .swiper-pagination-bullet,
.case-slider-two .case-pagination-one .swiper-pagination-bullet,
.case-slider-two .case-pagination-two .swiper-pagination-bullet,
.case-slider-two .case-pagination-three .swiper-pagination-bullet,
.case-slider-three .case-pagination-one .swiper-pagination-bullet,
.case-slider-three .case-pagination-two .swiper-pagination-bullet,
.case-slider-three .case-pagination-three .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #D9D9D9;
  opacity: 1;
  margin: 0 6px;
}

.case-slider-one .case-pagination-one .swiper-pagination-bullet.swiper-pagination-bullet-active,
.case-slider-one .case-pagination-two .swiper-pagination-bullet.swiper-pagination-bullet-active,
.case-slider-one .case-pagination-three .swiper-pagination-bullet.swiper-pagination-bullet-active,
.case-slider-two .case-pagination-one .swiper-pagination-bullet.swiper-pagination-bullet-active,
.case-slider-two .case-pagination-two .swiper-pagination-bullet.swiper-pagination-bullet-active,
.case-slider-two .case-pagination-three .swiper-pagination-bullet.swiper-pagination-bullet-active,
.case-slider-three .case-pagination-one .swiper-pagination-bullet.swiper-pagination-bullet-active,
.case-slider-three .case-pagination-two .swiper-pagination-bullet.swiper-pagination-bullet-active,
.case-slider-three .case-pagination-three .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--lemonColor);
  width: 10px;
  height: 10px;
  position: relative;
  top: 2px;
}

/*---------------------------------
     Industry Card CSS
----------------------------------*/
.industry-card {
  display: block;
  border-left: 3px solid var(--Orange, #FA8977);
  background: #F2EBEA;
  padding: 52px 25px 52px 25px;
  margin-bottom: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 24px !important;
  font-family: var(--secondaryFont);
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 30px;
}

.industry-card:hover {
  background-color: var(--lemonColor);
  border-color: var(--secondaryColor);
  color: var(--secondaryColor);
}

/*---------------------------------
     CTA Section CSS
----------------------------------*/
.cta-wrapper {
  background: linear-gradient(122deg, #EBF997 44.9%, #E3F289 80.59%);
}

.cta-wrapper .cta-shape {
  background-color: #EBF997;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  height: 100%;
  width: 600px;
  right: 0;
  z-index: -1;
}

.cta-wrapper .subpara .btn {
  margin-right: 30px;
}

.cta-wrapper .subpara .call-btn .call-icon {
  margin-right: 12px;
  width: 56px;
  height: 56px;
}

.cta-wrapper .subpara .call-btn:hover .call-icon {
  background-color: var(--secondaryColor) !important;
}

.cta-wrapper .subpara .call-btn:hover .call-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/*---------------------------------
     Testimonial CSS
----------------------------------*/
.testimonial-bg {
  height: 600px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.testimonial-wrap .testimonial-shape {
  position: absolute;
  top: 13%;
  right: 7.5%;
  z-index: -1;
}

.testimonial-card.style-one .google-ratings {
  line-height: 1;
}

.testimonial-card.style-one .google-ratings > img {
  margin-right: 10px;
}

.testimonial-card.style-one .google-ratings ul {
  position: relative;
  top: -3px;
  margin-left: 4px;
}

.testimonial-card.style-one p {
  margin: 20px 0 30px;
}

.testimonial-card.style-one .client-info-wrap .client-img {
  width: 46px;
  height: 46px;
  position: relative;
  top: -3px;
}

.testimonial-card.style-one .client-info-wrap .client-info {
  margin-left: 10px;
}

.testimonial-card.style-one .client-info-wrap .client-info span {
  color: #6E776E;
}

.testimonial-card.style-two {
  -webkit-box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.06);
  padding: 30px;
}

.testimonial-card.style-two .google-ratings > img {
  margin-right: 10px;
}

.testimonial-card.style-two .google-ratings ul {
  position: relative;
  top: -3px;
  margin-left: 4px;
}

.testimonial-card.style-two .client-info-wrap .client-img {
  width: 46px;
  height: 46px;
  top: -3px;
}

.testimonial-card.style-two .client-info-wrap .client-info {
  width: calc(100% - 56px);
  margin-left: 10px;
}

.testimonial-card.style-two .client-info-wrap .client-info span {
  outline-offset: #6E776E;
}

.testimonial-shape {
  top: 10px;
  right: 0;
  z-index: -1;
}

.testimonial-slider-one .slider-btn .testimonial-prev,
.testimonial-slider-two .slider-btn .testimonial-prev {
  margin-right: 5px;
}

.testimonial-slider-one .slider-btn .testimonial-next,
.testimonial-slider-two .slider-btn .testimonial-next {
  margin-left: 5px;
}

.testimonial-slider-one .slider-btn .testimonial-prev,
.testimonial-slider-one .slider-btn .testimonial-next,
.testimonial-slider-two .slider-btn .testimonial-prev,
.testimonial-slider-two .slider-btn .testimonial-next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.testimonial-slider-one .slider-btn .testimonial-prev img,
.testimonial-slider-one .slider-btn .testimonial-next img,
.testimonial-slider-two .slider-btn .testimonial-prev img,
.testimonial-slider-two .slider-btn .testimonial-next img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.testimonial-slider-one .slider-btn .testimonial-prev.active, .testimonial-slider-one .slider-btn .testimonial-prev:hover,
.testimonial-slider-one .slider-btn .testimonial-next.active,
.testimonial-slider-one .slider-btn .testimonial-next:hover,
.testimonial-slider-two .slider-btn .testimonial-prev.active,
.testimonial-slider-two .slider-btn .testimonial-prev:hover,
.testimonial-slider-two .slider-btn .testimonial-next.active,
.testimonial-slider-two .slider-btn .testimonial-next:hover {
  background-color: var(--secondaryColor);
}

.testimonial-slider-one .slider-btn .testimonial-prev.active img, .testimonial-slider-one .slider-btn .testimonial-prev:hover img,
.testimonial-slider-one .slider-btn .testimonial-next.active img,
.testimonial-slider-one .slider-btn .testimonial-next:hover img,
.testimonial-slider-two .slider-btn .testimonial-prev.active img,
.testimonial-slider-two .slider-btn .testimonial-prev:hover img,
.testimonial-slider-two .slider-btn .testimonial-next.active img,
.testimonial-slider-two .slider-btn .testimonial-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.testimonial-slider-one .slider-btn {
  margin-top: 42px;
}

.testimonial-slider-two {
  margin: -25px -15px 0;
}

.testimonial-slider-two .testimonial-card.style-two {
  margin: 25px 15px 30px;
}

/*---------------------------------
    Counter Card CSS
----------------------------------*/
.counter-card-wrap .counter-card {
  width: 20%;
}

.counter-card-wrap .counter-card h2 {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 21px;
}

.counter-card-wrap .counter-card p {
  font-size: 13px;
  letter-spacing: 2.6px;
}

/*---------------------------------
    Booking Section CSS
----------------------------------*/
.booking-wrap .booking-bg {
  height: 360px;
}

.booking-wrap.style-one .booking-form {
  margin-top: -62px;
}

.booking-wrap .booking-content .section-title {
  margin-bottom: 27px;
}

.booking-wrap .booking-content h4 {
  margin: 27px 0 0;
}

.booking-wrap .booking-content .feature-list {
  margin: 13px 0 21px;
}

.booking-wrap .booking-content .feature-list li {
  padding-left: 30px;
  margin-bottom: 10px;
}

.booking-wrap .booking-content .feature-list li:last-child {
  margin-bottom: 0;
}

.booking-wrap .booking-form {
  background-color: #F1F6F2;
  padding: 48px 50px 50px;
}

.booking-wrap .booking-form br {
  display: none;
}

.booking-wrap .booking-form h4 {
  margin-bottom: 13px;
}

.booking-wrap .booking-form p {
  margin-bottom: 20px;
}

.booking-wrap .booking-form .form-group input {
  padding: 15px 30px;
}

.booking-wrap .booking-form .form-group select {
  background-image: url(../img/icons/down-arrow.svg);
  background-position: calc(100% - 30px) 50%;
  background-size: 12px;
  padding-left: 30px;
}

.booking-wrap .booking-form #slider-container {
  margin: 20px auto 65px;
}

.booking-wrap .booking-form #slider-container #range-slider {
  width: 100%;
  height: 10px;
  position: relative;
  background-color: #ddd;
  border-radius: 5px;
}

.booking-wrap .booking-form #slider-container #slider-fill {
  height: 100%;
  background-color: var(--secondaryColor);
  border-radius: 50px 0 0 50px;
  position: absolute;
  top: 0;
  left: 0;
}

.booking-wrap .booking-form #slider-container #slider-handle {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0px 4px 15px rgba(27, 50, 29, 0.15);
          box-shadow: 0px 4px 15px rgba(27, 50, 29, 0.15);
  border-radius: 50%;
  cursor: pointer;
}

.booking-wrap .booking-form #slider-container #value-display {
  position: absolute;
  text-align: center;
  margin-top: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.booking-wrap.style-two .booking-content {
  margin-top: 72px;
  padding: 65px 30px 110px 8px;
}

.booking-wrap.style-two .booking-content:before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: calc(100% + 230px);
  height: 100%;
  background-color: #F2EBEA;
  z-index: -1;
}

/*---------------------------------
    Team Section CSS
----------------------------------*/
.team-wrapper {
  margin: 0 -12px;
}

.team-wrapper .team-card {
  width: calc(25% - 24px);
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 30px;
}

.team-card h3 {
  margin: 25px 0 4px;
}

.booking-box {
  background-color: #E7F1F1;
  padding: 20px;
  margin-top: -135px;
}

.booking-box p, .booking-box a {
  width: 50%;
}

.booking-box p {
  color: #3C4B3D;
}

.single-team-img .member-img {
  background-color: #EFEAE6;
}

.single-team-img .member-contact {
  padding: 15.5px  20px;
  margin: 15px 0 0;
}

.single-team-img .member-contact .call-icon {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}

.single-team-img .member-contact p {
  color: #A2C9A5;
}

.member-title {
  padding-bottom: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(27, 50, 29, 0.1);
}

.member-title .social-profile li {
  margin-right: 14px;
}

.member-title .social-profile li:last-child {
  margin-right: 0;
}

.member-title .social-profile li a i {
  font-size: 15px;
  color: var(--secondaryColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.member-title .social-profile li a:hover i {
  color: var(--primaryColor);
}

.member-details .feature-list {
  margin: 20px 0 30px;
  -webkit-columns: 3;
          columns: 3;
}

/*---------------------------------
    Working Process CSS
----------------------------------*/
.working-process-wrap {
  background-color: #E7F1F1;
}

.working-process-wrap .process-content .process-item {
  margin-bottom: 1px;
  z-index: 1;
  position: relative;
}

.working-process-wrap .process-content .process-item:nth-child(1) .process-card, .working-process-wrap .process-content .process-item:nth-child(2) .process-card {
  width: calc(100% - 165px);
}

.working-process-wrap .process-content .process-item:nth-child(1) .process-icon, .working-process-wrap .process-content .process-item:nth-child(2) .process-icon {
  width: 165px;
}

.working-process-wrap .process-content .process-item:nth-child(3) .process-card {
  width: calc(100% - 55px);
}

.working-process-wrap .process-content .process-item:nth-child(4) {
  width: calc(100% + 150px);
}

.working-process-wrap .process-content .process-item:nth-child(4) .process-card {
  width: calc(100% - 230px);
}

.working-process-wrap .process-content .process-item:nth-child(4) .process-icon {
  width: 230px;
}

.working-process-wrap .process-content .process-item .process-card {
  padding: 22px 25px 35px;
}

.working-process-wrap .process-content .process-item .process-card span {
  color: var(--primaryColor);
  font-weight: 1000;
  line-height: 14px;
  letter-spacing: 2.6px;
}

.working-process-wrap .process-content .process-item .process-card h3 {
  margin: 11px 0 15px;
}

.working-process-wrap .process-img .process-bg {
  height: 553px;
}

.review-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  z-index: -1;
  background-color: #E7F1F1;
}

.review-wrapper .google-ratings {
  padding: 36px 10px;
  color: #DDEDDE;
}

.review-wrapper .google-ratings > img {
  position: relative;
  top: -3px;
  margin-right: 7px;
}

.review-wrapper .google-ratings ul {
  margin: 0 4px;
  top: -1px;
}

.review-wrapper .google-ratings a {
  color: #9DE4A1;
  font-family: var(--secondaryFont);
  margin-left: 4px;
}

/*---------------------------------
     Blog CSS
----------------------------------*/
.blog-card .blog-info h3 {
  margin-bottom: 12px;
}

.blog-card .blog-info h3 a {
  color: var(--secondaryColor);
}

.blog-card .blog-info h3 a:hover {
  color: var(--primaryColor);
}

.blog-card .blog-metainfo {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-card .blog-metainfo li {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  margin-right: 10px;
  font-size: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-card .blog-metainfo li:last-child {
  margin-right: 0;
}

.blog-card .blog-metainfo li img {
  position: absolute;
  top: 3.5px;
  left: 0;
}

.blog-card .blog-metainfo li img, .blog-card .blog-metainfo li a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-card.style-one .blog-img {
  margin-bottom: 22px;
}

.blog-card.style-one .blog-img .blog-metainfo {
  background-color: var(--whiteColor);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  right: 0;
  bottom: 10px;
  padding: 11px 15px;
}

.blog-card.style-one .blog-img .blog-metainfo li {
  margin-right: 15px;
}

.blog-card.style-one .blog-img .blog-metainfo li:last-child {
  margin-right: 0;
}

.blog-card.style-one:hover .blog-img .blog-metainfo {
  background-color: var(--secondaryColor);
}

.blog-card.style-one:hover .blog-img .blog-metainfo li {
  color: #C4C8C4;
}

.blog-card.style-one:hover .blog-img .blog-metainfo li img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.blog-card.style-one:hover .blog-img .blog-metainfo li a {
  color: #C4C8C4;
}

.blog-card.style-two .blog-shape {
  right: 38px;
  top: 28px;
}

.blog-card.style-two .blog-info {
  z-index: 1;
  padding: 20px 22px 25px 26px;
  max-width: 427px;
  margin-top: -92px;
  margin-left: auto;
}

.blog-card.style-two .blog-info .blog-metainfo {
  margin-bottom: 5px;
}

.blog-card.style-two:hover .blog-img .blog-metainfo {
  background-color: var(--secondaryColor);
}

.blog-card.style-two:hover .blog-img .blog-metainfo li {
  color: #C4C8C4;
}

.blog-card.style-two:hover .blog-img .blog-metainfo li img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.blog-card.style-two:hover .blog-img .blog-metainfo li a {
  color: #C4C8C4;
}

.blog-wrapper {
  overflow: hidden;
}

.blog-wrapper .slider-btn .blog-prev {
  margin-right: 10px;
}

.blog-wrapper .slider-btn .blog-prev,
.blog-wrapper .slider-btn .blog-next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-wrapper .slider-btn .blog-prev img,
.blog-wrapper .slider-btn .blog-next img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.blog-wrapper .slider-btn .blog-prev:hover,
.blog-wrapper .slider-btn .blog-next:hover {
  background-color: var(--secondaryColor);
}

.blog-wrapper .slider-btn .blog-prev:hover img,
.blog-wrapper .slider-btn .blog-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/*---------------------------------
    Contact Box CSS
----------------------------------*/
.contact-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 52%;
  background-color: #EFEAE6;
  z-index: -1;
}

.contact-wrapper .contact-box:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-wrapper .contact-box h2 {
  margin-bottom: 14px;
}

.contact-wrapper .contact-box p {
  margin-bottom: 25px;
}

.contact-wrapper.style-one .circle-one {
  top: 75px;
  left: -5px;
}

.contact-wrapper.style-one .circle-two {
  bottom: 92px;
  right: 23%;
}

.contact-wrapper.style-one .contact-box:before {
  background: rgba(250, 137, 119, 0.8);
}

.contact-wrapper.style-one .contact-box p {
  color: #4F4240;
}

.contact-wrapper.style-two .contact-box:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 50, 29, 0.76)), color-stop(28.27%, rgba(27, 50, 29, 0.76)), to(rgba(27, 50, 29, 0.76)));
  background: linear-gradient(180deg, rgba(27, 50, 29, 0.76) 0%, rgba(27, 50, 29, 0.76) 28.27%, rgba(27, 50, 29, 0.76) 100%);
}

.contact-wrapper.style-two .contact-box p {
  color: #DBDFDC;
}

/*---------------------------------
     Contact Page CSS
----------------------------------*/
.contact-box-wrap {
  position: relative;
  z-index: 1;
  padding: 50px 20px 80px;
  margin-bottom: 50px;
}

.contact-box-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: calc(100% + 230px);
  height: 100%;
  z-index: -1;
  background-color: #F2EBEA;
}

.contact-box-wrap .section-title:before {
  background-color: var(--primaryColor);
}

.contact-box-wrap .contact-card {
  margin-bottom: 0;
}

.contact-box-wrap .contact-card .contact-icon {
  width: 60px;
  height: 60px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.contact-box-wrap .contact-card .contact-icon img, .contact-box-wrap .contact-card .contact-icon svg {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.contact-box-wrap .contact-card .contact-info {
  width: calc(100% - 72px);
  margin-left: 12px;
}

.contact-box-wrap .contact-card:hover .contact-icon {
  background-color: var(--secondaryColor) !important;
}

.contact-box-wrap .contact-card:hover .contact-icon img, .contact-box-wrap .contact-card:hover .contact-icon svg {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.comp-map {
  width: 100%;
  height: 265px;
}

.comp-map iframe {
  width: 100%;
  height: 100%;
}

.contact_form {
  background-color: #F1F6F2;
  padding: 45px 50px 50px;
  position: relative;
  z-index: 1;
}

.contact_form.style-two {
  background-color: #F2EBEA;
}

.contact_form.style-two .shape-one {
  bottom: 123px;
  left: -10%;
}

.contact_form.style-two .shape-two {
  top: 78px;
  right: -7%;
}

.contact_form .form-group textarea {
  resize: none;
  height: 155px;
}

.contact-widget .form-group input, .contact-widget .form-group select, .contact-widget .form-group textarea {
  padding-left: 30px;
}

.contact-widget .form-group textarea {
  resize: none;
  height: 174px;
}

.contact-widget .form-group select {
  background-image: url(../img/icons/down-arrow.svg);
  background-position: calc(100% - 20px) 50%;
  background-size: 12px;
  padding-left: 30px;
}

/*---------------------------------
     FAQ CSS
----------------------------------*/
.accordion-item {
  border: none;
  margin: 0 0 24px;
  background: transparent;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item .accordion-header {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.accordion-item .accordion-header .accordion-button {
  border-radius: 0;
  margin: 0;
  font-size: 17px;
  font-family: var(--primaryFont);
  font-weight: 600;
  line-height: 26px;
  color: var(--secondaryColor);
  border: none;
  padding: 22px 40px 22px 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: #F2F5F3;
}

.accordion-item .accordion-header .accordion-button:after {
  display: none;
}

.accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) span i {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.accordion-item .accordion-header .accordion-button span {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 18px;
  right: 27px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.accordion-item .accordion-header .accordion-button span i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 19px;
  font-weight: 300;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.accordion-item .accordion-body {
  border-radius: 0;
  padding: 0;
  border: none;
  background-color: #F2F5F3;
}

.accordion-item .accordion-body p {
  margin: 0 30px 0 25px;
  padding: 8px 0 30px;
}

.accordion-collapse {
  border: none;
}

.faq-title {
  border-top: 1px solid rgba(27, 50, 29, 0.1);
  border-bottom: 1px solid rgba(27, 50, 29, 0.1);
  margin: 0 0 30px;
  padding: 14px 0;
}

.error-content {
  text-align: center;
}

.error-content img {
  display: block;
  margin: 0 auto 30px;
}

.error-content p {
  margin: 0 auto 30px;
  max-width: 520px;
}

/*---------------------------------
    Promo Video Section CSS
----------------------------------*/
.promo-video-wrapper {
  padding-bottom: 78px;
  position: relative;
}

.promo-video-wrapper .promo-video-box {
  width: 100%;
  height: 400px;
  margin-left: auto;
  position: relative;
}

.promo-video-wrapper .promo-video-box .promo-video {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.promo-video-wrapper .promo-video-box .promo-video::-webkit-media-controls {
  display: none !important;
}

.promo-video-wrapper .promo-video-box .promo-title {
  position: absolute;
  bottom: -78px;
  left: 40px;
  z-index: 2;
  padding: 36px 40px 37px 34px;
}

.promo-video-wrapper .promo-video-box .promo-title .play-now .play-icon {
  width: 64px;
  height: 64px;
  background-color: var(--lemonColor);
}

.promo-video-wrapper .promo-video-box .promo-title .play-now .play-icon i {
  font-size: 20px;
  line-height: 0.8;
  color: var(--whiteColor);
}

.promo-video-wrapper .promo-video-box .promo-title .play-now .play-icon:hover {
  background-color: var(--primaryColor);
}

.promo-video-wrapper .promo-video-box .section-title:before {
  height: 81px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.promo-video-wrapper .promo-video-box .section-title span {
  color: #D0DCD1;
}

/*---------------------------------
    Working Section CSS
----------------------------------*/
.working-area.style-one .working-shape {
  bottom: 0;
  left: 45%;
}

.working-area.style-one .working-content .section-title {
  margin-bottom: 30px;
}

.working-area.style-one .working-content p {
  margin: 22px 0 30px;
}

.working-area.style-one .working-img-wrap .working-img {
  max-width: 418px;
}

.working-area.style-one .working-img-wrap .working-img-shape {
  top: 45px;
  left: 0;
}

.working-area.style-two .working-shape {
  top: 9%;
  right: 19%;
  z-index: -1;
}

.working-area.style-two .working-bg-one {
  height: 533px;
}

.working-area.style-two .working-bg-two {
  height: 411px;
}

.working-area.style-two .working-content .feature-list {
  margin: 28px 0 35px;
  -webkit-columns: 2;
          columns: 2;
}

.working-area.style-two .working-content .working-content-img {
  top: 10px;
  left: -50px;
}

/*---------------------------------
    Contact CSS
----------------------------------*/
.checkbox {
  display: block;
}

.checkbox.form-check {
  padding-left: 0;
}

.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  color: var(--paraColor);
  padding-left: 29px;
}

.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 4px;
}

.checkbox.style-two i {
  color: #5C9999;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.checkbox.style-two label {
  padding-left: 29px;
  color: #3C4B3D;
}

.checkbox.style-two label:before {
  content: "";
  border: 1.7px solid #5C9999;
  width: 18.5px;
  height: 18.5px;
  border-radius: 50%;
  left: 0;
  top: 6px;
}

.checkbox.style-two label:after {
  position: absolute;
  content: "\eb7b";
  font-family: remixicon !important;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: #5C9999;
  top: 9.5px;
  left: 3.3px;
}

.checkbox input:checked + label:before {
  border-color: var(--secondaryColor);
}

.checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 4px;
  width: 10px;
  height: 10px;
  border: none;
  background: var(--secondaryColor);
}

.checkbox.style-two input:checked + label:before {
  border-color: transparent;
  width: 18.5px;
  height: 18.5px;
  background-color: #5C9999;
}

.checkbox.style-two input:checked + label:after {
  content: "\eb7b";
  top: 9.9px;
  left: 3.3px;
  width: auto;
  height: auto;
  border: none;
  color: var(--whiteColor);
  background-color: transparent;
}

/*---------------------------------
    Sidebar CSS
----------------------------------*/
.sidebar .sidebar-widget {
  background-color: #F1F6F2;
  padding: 25px;
  margin-bottom: 30px;
  position: relative;
}

.sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar .sidebar-widget .sidebar-widget-title {
  margin-bottom: 25px;
}

.sidebar .sidebar-widget.style-one .sidebar-widget-title {
  margin-bottom: 25px;
}

.sidebar .sidebar-widget.style-two .sidebar-widget-title {
  margin-bottom: 55px;
}

.sidebar .sidebar-widget.style-two:after {
  position: absolute;
  top: 94px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(27, 50, 29, 0.1);
}

.sidebar .sidebar-widget.style-three {
  background-color: transparent;
  padding: 0;
}

.sidebar .sidebar-widget.style-three .sidebar-widget-title {
  margin-bottom: 60px;
}

.sidebar .sidebar-widget.style-three:after {
  position: absolute;
  top: 60px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(27, 50, 29, 0.1);
}

.search-form input {
  margin-bottom: 15px;
  padding-left: 60px;
}

.search-form i {
  position: absolute;
  top: 18px;
  left: 25px;
  font-size: 22px;
  line-height: 1;
  color: var(--secondaryColor);
}

.category-list li {
  margin-bottom: 17px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list li a {
  color: var(--secondaryColor);
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.4px;
}

.category-list li a span {
  float: right;
  font-style: italic;
  font-size: 13px;
}

.category-list li a:hover {
  color: var(--primaryColor);
}

.service-list li {
  margin-bottom: 25px;
}

.service-list li:last-child {
  margin-bottom: 0;
}

.service-list li a {
  color: var(--secondaryColor);
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.3px;
  position: relative;
}

.service-list li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--primaryColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}

.service-list li a.active, .service-list li a:hover {
  font-weight: 800;
}

.service-list li a.active:after, .service-list li a:hover:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.project-brief li {
  margin-bottom: 42px;
  color: var(--secondaryColor);
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.3px;
  position: relative;
}

.project-brief li:last-child {
  margin-bottom: 0;
}

.pp-post-wrap .pp-post-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(27, 50, 29, 0.1);
}

.pp-post-wrap .pp-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pp-post-item .post-metainfo {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 5px;
}

.pp-post-item .post-metainfo li {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  margin-right: 20px;
  font-size: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.pp-post-item .post-metainfo li:last-child {
  margin-right: 0;
}

.pp-post-item .post-metainfo li img {
  position: absolute;
  top: 3px;
  left: 0;
}

.pp-post-item .post-metainfo li img, .pp-post-item .post-metainfo li a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.pp-post-item h3 {
  margin-bottom: 12px;
  line-height: 28px;
}

.pp-post-item h3 a {
  color: var(--secondaryColor);
}

.pp-post-item h3 a:hover {
  color: var(--primaryColor);
}

.tag-list {
  margin-top: -15px;
}

.tag-list li {
  display: inline-block;
  margin: 15px 10px 0 0;
}

.tag-list li a {
  font-size: 14px;
  line-height: 14px;
  background-color: var(--whiteColor);
  padding: 6px 16px;
  font-weight: 500;
}

.tag-list li a:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}

/*---------------------------------
    BLog Details CSS
----------------------------------*/
.service-desc p,
.case-desc p,
.terms-wrap p,
.blog-desc p {
  margin-bottom: 15px;
}

.service-desc p strong, .service-desc p b,
.case-desc p strong,
.case-desc p b,
.terms-wrap p strong,
.terms-wrap p b,
.blog-desc p strong,
.blog-desc p b {
  color: var(--secondaryColor);
}

.service-desc p a,
.case-desc p a,
.terms-wrap p a,
.blog-desc p a {
  color: var(--orangeBlackColor);
}

.service-desc p a:hover,
.case-desc p a:hover,
.terms-wrap p a:hover,
.blog-desc p a:hover {
  text-decoration: underline;
  color: var(--primaryColor);
}

.service-desc h1, .service-desc h2, .service-desc h3, .service-desc h4, .service-desc h5, .service-desc h6,
.case-desc h1,
.case-desc h2,
.case-desc h3,
.case-desc h4,
.case-desc h5,
.case-desc h6,
.terms-wrap h1,
.terms-wrap h2,
.terms-wrap h3,
.terms-wrap h4,
.terms-wrap h5,
.terms-wrap h6,
.blog-desc h1,
.blog-desc h2,
.blog-desc h3,
.blog-desc h4,
.blog-desc h5,
.blog-desc h6 {
  margin-bottom: 18px;
}

.service-desc h1,
.case-desc h1,
.terms-wrap h1,
.blog-desc h1 {
  font-size: 40px;
}

.service-desc h2,
.case-desc h2,
.terms-wrap h2,
.blog-desc h2 {
  font-size: 36px;
}

.service-desc h3,
.case-desc h3,
.terms-wrap h3,
.blog-desc h3 {
  font-size: 32px;
}

.service-desc h4,
.case-desc h4,
.terms-wrap h4,
.blog-desc h4 {
  font-size: 28px;
}

.service-desc h5,
.case-desc h5,
.terms-wrap h5,
.blog-desc h5 {
  font-size: 24px;
}

.service-desc h6,
.case-desc h6,
.terms-wrap h6,
.blog-desc h6 {
  font-size: 20px;
}

.service-desc ol,
.case-desc ol,
.terms-wrap ol,
.blog-desc ol {
  margin-top: 20px;
  margin-bottom: 30px;
}

.service-desc ol li,
.case-desc ol li,
.terms-wrap ol li,
.blog-desc ol li {
  margin-bottom: 15px;
  color: var(--paraColor);
  padding-left: 3px;
}

.service-desc .single-para,
.case-desc .single-para,
.terms-wrap .single-para,
.blog-desc .single-para {
  margin-bottom: 35px;
}

.service-desc .single-para:last-child,
.case-desc .single-para:last-child,
.terms-wrap .single-para:last-child,
.blog-desc .single-para:last-child {
  margin-bottom: 0;
}

.service-desc .single-para p:last-child,
.case-desc .single-para p:last-child,
.terms-wrap .single-para p:last-child,
.blog-desc .single-para p:last-child {
  margin-bottom: 0;
}

.service-desc .ordered-list li,
.case-desc .ordered-list li,
.terms-wrap .ordered-list li,
.blog-desc .ordered-list li {
  padding-left: 20px;
  margin-bottom: 28px;
  position: relative;
}

.service-desc .ordered-list li:before,
.case-desc .ordered-list li:before,
.terms-wrap .ordered-list li:before,
.blog-desc .ordered-list li:before {
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--secondaryColor);
}

.service-desc .ordered-list li:last-child,
.case-desc .ordered-list li:last-child,
.terms-wrap .ordered-list li:last-child,
.blog-desc .ordered-list li:last-child {
  margin-bottom: 0;
}

.service-desc .blog-metainfo,
.case-desc .blog-metainfo,
.terms-wrap .blog-metainfo,
.blog-desc .blog-metainfo {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 5px;
  margin-bottom: 15px;
}

.service-desc .blog-metainfo li,
.case-desc .blog-metainfo li,
.terms-wrap .blog-metainfo li,
.blog-desc .blog-metainfo li {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  margin-right: 20px;
  font-size: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.service-desc .blog-metainfo li:last-child,
.case-desc .blog-metainfo li:last-child,
.terms-wrap .blog-metainfo li:last-child,
.blog-desc .blog-metainfo li:last-child {
  margin-right: 0;
}

.service-desc .blog-metainfo li img,
.case-desc .blog-metainfo li img,
.terms-wrap .blog-metainfo li img,
.blog-desc .blog-metainfo li img {
  position: absolute;
  top: 3px;
  left: 0;
}

.service-desc .blog-metainfo li img, .service-desc .blog-metainfo li a,
.case-desc .blog-metainfo li img,
.case-desc .blog-metainfo li a,
.terms-wrap .blog-metainfo li img,
.terms-wrap .blog-metainfo li a,
.blog-desc .blog-metainfo li img,
.blog-desc .blog-metainfo li a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.service-desc .post-title,
.case-desc .post-title,
.terms-wrap .post-title,
.blog-desc .post-title {
  padding-left: 36px;
  position: relative;
  margin-bottom: 30px;
}

.service-desc .post-title:before,
.case-desc .post-title:before,
.terms-wrap .post-title:before,
.blog-desc .post-title:before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 5px);
  background-color: var(--lemonColor);
}

.service-desc .single-img,
.case-desc .single-img,
.terms-wrap .single-img,
.blog-desc .single-img {
  margin-bottom: 35px;
}

.post-metaoption {
  background-color: #F1F6F2;
  padding: 21px 30px;
  margin: 45px 0;
}

.post-share .social-profile li {
  margin-right: 5px;
}

.post-share .social-profile li:last-child {
  margin-right: 0;
}

.post-share .social-profile li a i {
  font-size: 15px;
  font-weight: 300;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.post-share .social-profile li a:hover i {
  color: var(--primaryColor);
}

.post-pagination {
  border-bottom: 1px solid rgba(27, 50, 29, 0.1);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.post-pagination .prev-post > a,
.post-pagination .next-post > a {
  display: block;
  margin-bottom: 23px;
}

.post-pagination .prev-post > a img,
.post-pagination .next-post > a img {
  position: relative;
  top: -2px;
  -webkit-filter: brightness(1) invert(0.6);
          filter: brightness(1) invert(0.6);
}

.post-pagination .prev-post > a:hover,
.post-pagination .next-post > a:hover {
  color: var(--primaryColor);
}

.post-pagination .prev-post > a:hover img,
.post-pagination .next-post > a:hover img {
  -webkit-filter: brightness(1) invert(1);
          filter: brightness(1) invert(1);
}

.post-pagination .prev-post > a img {
  margin-right: 10px;
}

.post-pagination .next-post {
  text-align: right;
}

.post-pagination .next-post > a img {
  margin-left: 10px;
}

.post-pagination .pp-post-item .post-metainfo {
  margin-bottom: 8px;
}

.post-pagination .pp-post-item h3 {
  margin-bottom: 8px;
  line-height: 28px;
}

.post-pagination .pp-post-item h3 a {
  color: var(--secondaryColor);
}

.post-pagination .pp-post-item h3 a:hover {
  color: var(--primaryColor);
}

.comment-item-wrap {
  margin-bottom: 50px;
}

.comment-item-wrap .comment-item {
  margin-bottom: 45px;
}

.comment-item-wrap .comment-item.reply {
  margin-left: 28px;
}

.comment-item-wrap .comment-item:last-child {
  margin-bottom: 0;
}

.comment-item-wrap .comment-item .comment-author {
  width: 56px;
  height: 56px;
}

.comment-item-wrap .comment-item .comment-info {
  margin-left: 20px;
  width: calc(100% - 76px);
}

.comment-item-wrap .comment-item .comment-info h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.comment-item-wrap .comment-item .comment-info h5 span {
  margin-left: 6px;
  font-size: 13px;
  color: var(--paraColor);
  font-family: var(--primaryFont);
}

.comment-item-wrap .comment-item .comment-info p {
  margin: 12px 0 0;
}

.comment-item-wrap .comment-item .comment-info .reply-btn {
  color: var(--secondaryColor);
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  margin: 19px 0 0;
}

.comment-item-wrap .comment-item .comment-info .reply-btn img {
  margin-left: 10px;
}

.comment-item-wrap .comment-item .comment-info .reply-btn:hover {
  color: var(--primaryColor);
}

#cmt-form .form-group input, #cmt-form .form-group textarea {
  border: 1px solid rgba(37, 27, 66, 0.32);
}

#cmt-form .form-group input::-webkit-input-placeholder, #cmt-form .form-group textarea::-webkit-input-placeholder {
  color: #9998A0;
}

#cmt-form .form-group input:-ms-input-placeholder, #cmt-form .form-group textarea:-ms-input-placeholder {
  color: #9998A0;
}

#cmt-form .form-group input::-ms-input-placeholder, #cmt-form .form-group textarea::-ms-input-placeholder {
  color: #9998A0;
}

#cmt-form .form-group input::placeholder, #cmt-form .form-group textarea::placeholder {
  color: #9998A0;
}

.navbar-area .navbar .navbar-brand h2 {
  margin-bottom: 0;
}

.elementor-editor-active [data-cue=bounceInDown], .elementor-editor-active [data-cue=bounceInLeft], .elementor-editor-active [data-cue=bounceInRight], .elementor-editor-active [data-cue=bounceInUp], .elementor-editor-active [data-cue=bounceIn], .elementor-editor-active [data-cue=fadeIn], .elementor-editor-active [data-cue=rotateIn], .elementor-editor-active [data-cue=slideInDown], .elementor-editor-active [data-cue=slideInLeft], .elementor-editor-active [data-cue=slideInRight], .elementor-editor-active [data-cue=slideInUp], .elementor-editor-active [data-cue=zoomIn], .elementor-editor-active [data-cue=zoomOut], .elementor-editor-active [data-cues=bounceInDown] > *, .elementor-editor-active [data-cues=bounceInLeft] > *, .elementor-editor-active [data-cues=bounceInRight] > *, .elementor-editor-active [data-cues=bounceInUp] > *, .elementor-editor-active [data-cues=bounceIn] > *, .elementor-editor-active [data-cues=fadeIn] > *, .elementor-editor-active [data-cues=rotateIn] > *, .elementor-editor-active [data-cues=slideInDown] > *, .elementor-editor-active [data-cues=slideInLeft] > *, .elementor-editor-active [data-cues=slideInRight] > *, .elementor-editor-active [data-cues=slideInUp] > *, .elementor-editor-active [data-cues=zoomIn] > *, .elementor-editor-active [data-cues=zoomOut] > * {
  opacity: 1;
}

.about-content .feature-list li {
  padding-left: 0;
}

.fint-banner-style-two {
  margin-top: -50px;
}

.fint-banner-style-two .br-content {
  padding-top: 150px;
}

.wpcf7-form br {
  display: none;
}

input.gdpr-term {
  display: inline-block;
  width: unset;
  height: unset;
}

.fint-toolkit-activate .blog-card.style-one .blog-img img.trasnition {
  width: 100%;
}

blockquote {
  border-left: 4px solid var(--Orange, #FA8977);
  background: #F2EBEA;
  padding: 30px 40px;
  margin-bottom: 30px;
}

blockquote p {
  font-style: italic;
  line-height: 30px;
  margin-top: 12px;
}

blockquote h6 {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  margin: 0 0 0 auto;
  display: inline-block;
}

blockquote h6:before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  width: 12px;
  height: 1px;
  background-color: var(--secondaryColor);
}

.error404 .navbar-area.style-two:after {
  display: none;
}

.error404 .navbar-area.style-two .navbar {
  border: 1px solid #efefef;
}

.elementor-editor-active .loader-wrapper {
  display: none;
}

/*---------------------------------
    New Demo CSS
----------------------------------*/
.section-title.style-three h2 span {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  letter-spacing: -0.3px;
}

.section-title.style-three h2 span:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFCC66;
  z-index: -1;
}

.section-title.style-four {
  padding-left: 36px;
}

.section-title.style-four:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 3px);
  background-color: var(--lemonColor);
}

/*-------------------------------
    Hero Section CSS
-------------------------------*/
.hero-section.style-four .hero-slider-wrap .hero-slide-item {
  position: relative;
  z-index: 10;
  height: 830px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-section.style-four .hero-slider-wrap .hero-slide-item:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(20, 35, 21, 0.45);
  z-index: 1;
}

.hero-section.style-four .hero-slider-wrap .hero-slide-item .hero-main-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding-top: 100px;
}

.hero-section.style-four .hero-slider-wrap .hero-slide-item .hero-main-content h1 {
  font-size: 64px;
  line-height: 75px;
  margin-bottom: 20px;
}

.hero-section.style-four .hero-slider-wrap .hero-slide-item .hero-main-content p {
  color: #E8EBE8;
}

.hero-section.style-four .hero-thumb-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider {
  height: 100%;
  z-index: 2;
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider .hero-thumb-content {
  height: 100%;
  padding-bottom: 80px;
  padding-left: 50px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  z-index: 1;
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider .hero-thumb-content:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#142315), color-stop(64%, rgba(255, 255, 255, 0.01)));
  background: linear-gradient(0deg, #142315 0%, rgba(255, 255, 255, 0.01) 64%);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider .hero-thumb-content h3 {
  font-size: 21px;
  line-height: 31px;
  margin: 20px 0 -75px;
  color: var(--whiteColor);
  font-family: var(--GtMediumFont);
  font-weight: 400;
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider .hero-thumb-content p {
  color: var(--whiteColor);
  margin: 15px 0 0;
  overflow: hidden;
  opacity: 0;
  bottom: -40px;
  left: 0;
  position: relative;
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider .hero-thumb-content .hero-link {
  margin-top: 15px;
  padding-left: 3px;
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider .hero-thumb-content:hover h3 {
  margin-bottom: 0;
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider .hero-thumb-content:hover p {
  position: relative;
  bottom: auto;
  opacity: 1;
  bottom: 0;
}

.hero-section.style-four .hero-thumb-wrap .hero-thumb-slider .hero-thumb-content:hover:after {
  visibility: visible;
  opacity: 1;
}

.hero-section.style-four .hero-button-prev,
.hero-section.style-four .hero-button-next {
  position: absolute;
  top: 55%;
  width: 50px;
  height: 50px;
  background-color: var(--whiteColor);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}

.hero-section.style-four .hero-button-prev:hover,
.hero-section.style-four .hero-button-next:hover {
  background-color: var(--lemonColor);
}

.hero-section.style-four .hero-button-prev {
  left: 8px;
}

.hero-section.style-four .hero-button-next {
  right: 8px;
}

.hero-section.style-five {
  background-color: #E2F1E3;
}

.hero-section.style-five .hero-shape-one,
.hero-section.style-five .hero-shape-two {
  z-index: -1;
}

.hero-section.style-five .hero-shape-one {
  right: 0px;
}

.hero-section.style-five .hero-content {
  padding: 110px 0 136px;
}

.hero-section.style-five .hero-content .hero-shape-two {
  top: 38%;
  right: 5px;
}

.hero-section.style-five .hero-content h1 {
  padding-left: 41px;
  font-size: 54px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 30px;
  position: relative;
}

.hero-section.style-five .hero-content h1 span {
  display: inline-block;
  position: relative;
  top: -4px;
  border-radius: 50px;
  width: 112px;
  height: 65px;
}

.hero-section.style-five .hero-content h1 span img {
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero-section.style-five .hero-content h1:before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 20px);
  background-color: var(--lemonColor);
}

.hero-section.style-five .hero-content p {
  margin: 20px 0 30px;
  color: #445345;
  font-weight: 500;
}

.hero-section.style-five .hero-content .hero-btn {
  padding: 17px 35px 17px 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-section.style-five .hero-content .hero-btn .hero-btn-icon {
  width: 47px;
  height: 47px;
  margin-right: 10px;
}

.hero-section.style-five .hero-content .hero-btn:hover {
  background-color: var(--lemonColor);
}

.hero-section.style-five .hero-content .hero-btn:hover div span:first-child {
  color: var(--secondaryColor);
}

.hero-section.style-five .hero-img-wrap .hero-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.hero-ratings.style-five .google-ratings {
  background-color: #EBF997;
  color: var(--secondaryColor);
}

.hero-ratings.style-five .google-ratings a {
  color: var(--secondaryColor);
  font-weight: 600;
  text-decoration: underline;
}

/*-------------------------------
    Scrolling Text CSS
-------------------------------*/
.scrolling-text {
  white-space: nowrap;
}

.scrolling-text.style-one {
  background-color: var(--lemonColor);
  padding: 44px 0;
}

.scrolling-text.style-one ul li {
  padding-left: 43px;
  margin-left: 23px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: var(--secondaryColor);
  -webkit-animation: LeftToRight 20s linear infinite alternate;
          animation: LeftToRight 20s linear infinite alternate;
}

.scrolling-text.style-one ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.scrolling-text.style-one ul li:last-child:after {
  display: none;
}

.scrolling-text.style-one ul li:after {
  position: absolute;
  top: 52%;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  font-size: 34px;
  color: var(--secondaryColor);
  background-image: url(../img/stars.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.scrolling-text.style-two ul li {
  padding-left: 100px;
  margin-left: 55px;
  font-size: 64px;
  font-family: var(--titleFont);
  font-weight: 700;
  line-height: 70px;
  color: #CBD0CB;
  -webkit-animation: LeftToRight 20s linear infinite alternate;
          animation: LeftToRight 20s linear infinite alternate;
}

.scrolling-text.style-two ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.scrolling-text.style-two ul li:last-child:after {
  display: none;
}

.scrolling-text.style-two ul li:after {
  position: absolute;
  top: 52%;
  left: 0;
  content: "";
  width: 50px;
  height: 56px;
  font-size: 34px;
  color: var(--secondaryColor);
  background-image: url(../img/stars-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px 56px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@-webkit-keyframes LeftToRight {
  from {
    left: 0;
  }
  to {
    left: -50%;
  }
}

@keyframes LeftToRight {
  from {
    left: 0;
  }
  to {
    left: -50%;
  }
}

/*-------------------------------
    Brand Section CSS
-------------------------------*/
.brand-wrap {
  border: 1px solid #E5EEE6;
}

.brand-wrap.style-two {
  margin: 0;
}

.brand-wrap.style-two .brand-logo {
  width: 100%;
  padding: 74.5px 0;
  border-right: 1px solid #E5EEE6;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.brand-wrap.style-two .brand-logo:last-child {
  border-right: none;
}

.brand-wrap.style-two .brand-logo img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.brand-wrap.style-two .brand-logo:hover {
  background-color: #E5EEE6;
}

.brand-wrap.style-two .brand-logo:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/*-------------------------------
    About Section CSS
-------------------------------*/
.about-wrap.style-four .circle-text-wrap {
  position: absolute;
  top: 44%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-wrap.style-four .about-content .section-title {
  margin-bottom: 28px;
}

.about-wrap.style-four .about-content .subpara {
  padding-left: 0;
}

.about-wrap.style-five .about-img-wrap {
  padding-right: 100px;
}

.about-wrap.style-five .about-img-wrap .exp-box {
  bottom: 20px;
  right: 0px;
  background-color: #FFC085;
}

/*-------------------------------
    Service Section CSS
-------------------------------*/
.service-wrapper-one.style-two .service-card {
  width: calc(30% - 30px);
  margin: 0 0px 30px 0;
}

.service-wrapper-one.style-two .section-title {
  width: calc(41% - 12px);
  margin: 0 0 30px;
}

.service-wrapper-two.style-two .service-card {
  width: calc(28.7% - 12px);
  margin: 0 20px 30px 0;
}

.service-wrapper-two.style-two .service-card:last-child {
  margin-right: 0;
}

.service-wrapper-two.style-two .btn {
  width: 125px;
}

.service-card-box {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.service-card-box .service-img {
  width: 49%;
}

.service-card-box .service-card {
  margin-top: 20px;
  width: calc(51% + 25px);
  margin-left: -25px;
  min-height: 352px;
}

.service-card-box .service-card h3 {
  line-height: 32px;
  margin-bottom: 8px;
}

.service-card-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*-------------------------------
    Why Choose Us Section CSS
-------------------------------*/
.wh-wrap.style-four {
  background-color: #EBF997;
}

.wh-wrap.style-four .wh-shape-one {
  top: 0;
  right: 0;
}

.wh-wrap.style-four .wh-content .wh-counter {
  display: block;
  font-size: 80px;
  font-family: var(--GtBoldFont);
  font-weight: 700;
  line-height: 58px;
}

.wh-wrap.style-four .wh-content h3 {
  margin: 23px 0 14px;
  line-height: 30px;
}

.wh-wrap.style-four .wh-content p {
  margin-bottom: 33px;
}

.wh-wrap.style-four .wh-btn-wrap {
  margin-top: -165px;
  position: relative;
  z-index: 2;
}

.wh-wrap.style-four .wh-btn-wrap .call-btn {
  background-color: var(--whiteColor);
  border-radius: 50px;
  padding: 12px 27px;
  margin-top: 66px;
}

.wh-wrap.style-four .wh-btn-wrap .call-btn .call-icon {
  margin-right: 20px;
  width: 30px;
}

.wh-wrap.style-four .wh-btn-wrap .wh-slider-btn .wh-prev {
  margin-right: 12px;
}

.wh-wrap.style-four .wh-btn-wrap .wh-slider-btn .wh-prev,
.wh-wrap.style-four .wh-btn-wrap .wh-slider-btn .wh-next {
  width: 50px;
  height: 50px;
  background-color: var(--whiteColor);
}

.wh-wrap.style-four .wh-btn-wrap .wh-slider-btn .wh-prev:hover,
.wh-wrap.style-four .wh-btn-wrap .wh-slider-btn .wh-next:hover {
  background-color: var(--lemonColor) !important;
}

.wh-wrap.style-four .wh-card-img img {
  -webkit-filter: drop-shadow(0 4px 44px rgba(35, 53, 37, 0.14));
          filter: drop-shadow(0 4px 44px rgba(35, 53, 37, 0.14));
}

.wh-wrap.style-four .section-title p {
  margin: 21px 0 30px;
}

.wh-wrap.style-five {
  background-color: #E2F1E3;
}

.wh-wrap.style-five .wh-shape {
  top: 70px;
  right: 26%;
  z-index: -1;
}

.wh-card.style-five {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wh-card.style-five .wh-title {
  margin-bottom: 20px;
}

.wh-card.style-five .wh-title .wh-count {
  position: relative;
  z-index: 1;
  font-size: 100px;
  line-height: 80px;
  color: #BACBBB;
  font-family: var(--titleFont);
  font-weight: 800;
  width: 75px;
}

.wh-card.style-five .wh-title .wh-count img {
  position: absolute;
  top: -9px;
  right: -7px;
  z-index: -1;
}

.wh-card.style-five .wh-title h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  width: calc(100% - 75px);
  position: relative;
  top: 5px;
  z-index: 1;
}

/*-------------------------------
    How It Works Section CSS
-------------------------------*/
.hw-card.style-one {
  padding: 8px 25px 39px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hw-card.style-one:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.hw-card.style-one.bg_one {
  background-color: #E4EEE5;
}

.hw-card.style-one.bg_two {
  background-color: #F2EBEA;
}

.hw-card.style-one.bg_three {
  background-color: #E7F1F1;
}

.hw-card.style-one.bg_four {
  background-color: #EFEAE6;
}

.hw-card.style-one.bg_five {
  background-color: #F8F1F4;
}

.hw-card.style-one .hw-counter span {
  margin-bottom: 110px;
  font-size: 80px;
  line-height: 80px;
  font-family: var(--titleFont);
  color: var(--secondaryColor);
  text-align: right;
  display: block;
}

.hw-card.style-one h3 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 16px;
}

.hw-card.style-one h5 {
  position: absolute;
  top: 30px;
  right: 26px;
  padding-left: 30px;
  text-align: right;
  font-size: 52px;
  line-height: 40px;
  letter-spacing: -0.08em;
  font-weight: 800;
  color: rgba(27, 50, 29, 0.05);
}

/*---------------------------------
    Addon Services CSS
----------------------------------*/
.addon-bg {
  background-image: url(../img/about/addon-bg.webp);
  height: 550px;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.addon-tablist {
  border: none;
  margin-bottom: 56px;
}

.addon-tablist .nav-item {
  margin-right: 15px;
}

.addon-tablist .nav-item:last-child {
  margin-right: 0;
}

.addon-tablist .nav-item .nav-link {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  padding: 19.5px 30px;
  border-radius: 0;
  letter-spacing: 0.1em;
  -webkit-box-shadow: 0 4px 24px rgba(190, 201, 191, 0.2);
          box-shadow: 0 4px 24px rgba(190, 201, 191, 0.2);
}

.addon-tablist .nav-item .nav-link.active, .addon-tablist .nav-item .nav-link:hover {
  color: var(--secondaryColor);
  background-color: var(--lemonColor);
}

.addon-tab-content .addon-tab-title {
  margin-bottom: 15px;
}

.addon-tab-content .addon-tab-title h3 {
  margin-left: 30px;
  line-height: 30px;
  top: 2px;
}

.addon-tab-content .addon-tab-title h3 a {
  color: var(--secondaryColor);
}

.addon-tab-content .addon-tab-title h3 a:hover {
  color: var(--primaryColor);
}

.addon-tab-content p {
  margin-bottom: 17px;
}

.addon-tab-bg {
  height: 230px;
}

.addon-tab-bg.bg-one {
  background-image: url(../img/about/addon-bg-1.webp);
}

/*---------------------------------
    Working Section CSS
----------------------------------*/
.working-area.style-two .working-content.style-two .working-content-img {
  top: -10px;
  left: -50px;
}

.working-area.style-two .working-bg-three {
  background-image: url(../img/about/working-img-5.webp);
  height: 533px;
}

.working-area.style-two .working-bg-four {
  background-image: url(../img/about/working-img-6.webp);
  height: 411px;
}

/*-------------------------------
    Pricing Section CSS
-------------------------------*/
.pricing-switch-wrap {
  width: 248px;
  margin-right: 50px;
}

.pricing-switch-wrap .pricing-arrow {
  top: -47px;
  right: -30px;
}

.pricing-switch-wrap .pricing_switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 32px;
}

.pricing-switch-wrap .pricing_switch input {
  display: none;
}

.pricing-switch-wrap .pricing_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lemonColor);
  -webkit-transition: .4s;
  transition: .4s;
}

.pricing-switch-wrap .pricing_slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 5px;
  background-color: #203321;
  -webkit-transition: .4s;
  transition: .4s;
}

.pricing-switch-wrap input:checked + .pricing_slider {
  background-color: var(--lemonColor);
}

.pricing-switch-wrap input:checked + .pricing_slider:before {
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
}

.pricing-switch-wrap .on, .pricing-switch-wrap .off {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: absolute;
  top: 4px;
}

.pricing-switch-wrap .on {
  left: -105px;
}

.pricing-switch-wrap .off {
  right: -87px;
}

.pricing-switch-wrap .pricing_slider.round {
  border-radius: 50px;
}

.pricing-switch-wrap .pricing_slider.round:before {
  border-radius: 50%;
}

.pricing-switch-wrap.style-one .on {
  color: var(--whiteColor);
}

.pricing-switch-wrap.style-one .off {
  color: #d1d1d1;
}

.pricing-switch-wrap.style-one input:checked + .pricing_slider .off {
  color: var(--whiteColor);
}

.pricing-switch-wrap.style-one input:checked + .pricing_slider .on {
  color: #d1d1d1;
}

.pricing-switch-wrap.style-two .on {
  color: var(--secondaryColor);
}

.pricing-switch-wrap.style-two .off {
  color: #546255;
}

.pricing-switch-wrap.style-two input:checked + .pricing_slider .off {
  color: var(--secondaryColor);
}

.pricing-switch-wrap.style-two input:checked + .pricing_slider .on {
  color: #546255;
}

.pricing-wrap.style-one:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 54%;
  background-color: var(--secondaryColor);
  z-index: -1;
}

.pricing-card {
  padding: 62px 30px 50px;
}

.pricing-card h6 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  max-width: 60%;
  margin: 0 auto;
}

.pricing-card .pricing-text {
  color: #546255;
  margin: 18px 0 20px;
  padding: 0 35px;
}

.pricing-card .pricing-promo {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 25px 35px;
}

.pricing-card .pricing-promo p {
  letter-spacing: 0.1em;
}

.pricing-card .pricing-promo p strong {
  font-weight: 7000;
  color: var(--secondaryColor);
}

.pricing-card .pricing-tag {
  font-size: 56px;
  line-height: 45px;
  margin: 18px 0 0;
}

.pricing-card .link {
  display: block;
  margin: 35px 0 10px;
  text-decoration: underline;
}

.pricing-card.style-one {
  background-color: var(--lemonColor);
}

.pricing-card.style-one:hover {
  background-color: var(--primaryColor);
}

.pricing-card.style-two {
  background-color: #DAEBDB;
}

.pricing-card.style-two:hover {
  background-color: var(--primaryColor);
}

.pricing-card.featured {
  background-color: var(--primaryColor);
}

.pricing-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*-------------------------------
    Testimonial Section CSS
-------------------------------*/
.testimonial-wrap.style-four .testimonial-shape {
  top: 8%;
}

.testimonial-slider-three .slider-btn .testimonial-prev {
  margin-right: 5px;
}

.testimonial-slider-three .slider-btn .testimonial-next {
  margin-left: 5px;
}

.testimonial-slider-three .slider-btn .testimonial-prev,
.testimonial-slider-three .slider-btn .testimonial-next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.testimonial-slider-three .slider-btn .testimonial-prev img,
.testimonial-slider-three .slider-btn .testimonial-next img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.testimonial-slider-three .slider-btn .testimonial-prev.active, .testimonial-slider-three .slider-btn .testimonial-prev:hover,
.testimonial-slider-three .slider-btn .testimonial-next.active,
.testimonial-slider-three .slider-btn .testimonial-next:hover {
  background-color: var(--secondaryColor);
}

.testimonial-slider-three .slider-btn .testimonial-prev.active img, .testimonial-slider-three .slider-btn .testimonial-prev:hover img,
.testimonial-slider-three .slider-btn .testimonial-next.active img,
.testimonial-slider-three .slider-btn .testimonial-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.testimonial-slider-three .slider-btn {
  margin-top: 68px;
}

/*-------------------------------
    Blog & Counter Section CSS
-------------------------------*/
.blog-wrapper.style-four .blog-slider-btn .blog-prev,
.blog-wrapper.style-four .blog-slider-btn .blog-next {
  position: absolute;
  top: 34%;
  width: 50px;
  height: 50px;
  background-color: var(--whiteColor);
  border: 1px solid var(--lemonColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
}

.blog-wrapper.style-four .blog-slider-btn .blog-prev:hover,
.blog-wrapper.style-four .blog-slider-btn .blog-next:hover {
  border-color: transparent;
  background-color: var(--lemonColor) !important;
}

.blog-wrapper.style-four .blog-slider-btn .blog-prev {
  left: 5px;
}

.blog-wrapper.style-four .blog-slider-btn .blog-next {
  right: 5px;
}

.counter-wrapper.style-four {
  background-color: #EBF997;
}

.counter-wrapper.style-four .counter-card-wrap .counter-card h2 {
  color: #3C4B3D;
  margin-bottom: 10px;
}

/*---------------------------------
     Brand Section CSS
----------------------------------*/
.brand-wrap.style-four {
  border: none;
  margin: 0;
}

.brand-wrap .brand-logo {
  padding: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-right: none;
}

.brand-wrap .brand-logo:hover {
  background-color: transparent;
}

.brand-wrap .brand-logo:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/*---------------------------------
    Booking Section CSS
----------------------------------*/
.booking-wrap.style-one .booking-bg.bg-two {
  background-image: url(../img/bg-2.webp);
}

.about-content.list-top .feature-list {
  margin-top: 0;
}

.booking-wrap .booking-content .list-spac .feature-list li {
  padding-left: 0;
}

.brand-logo-bor {
  border: 1px solid #E5EEE6;
}

.f-title-font h1, .f-title-font h2, .f-title-font h3 {
  font-family: var(--titleFont);
}

.f-title-font .working-area.style-two .working-content .working-content-img {
  top: -10px;
}

.navbar-area .navbar .navbar-nav > .nav-item.active > .nav-link {
  color: var(--primaryColor);
}

.navbar-area .navbar .navbar-nav > .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}
/*# sourceMappingURL=fint-main.css.map */