/***************************** Start Animations *****************************/
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
            transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scale3d(1, 1, 1);
            transform: rotate(360deg) scale3d(1, 1, 1);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
            transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scale3d(1, 1, 1);
            transform: rotate(360deg) scale3d(1, 1, 1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
    opacity: .5;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
    opacity: .5;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

/*dropdown animation*/
@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  50% {
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  50% {
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

/*rotation animation*/
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

/*spinner loading page*/
@-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);
  }
}

/*start the wave animation*/
@-webkit-keyframes wave {
  0%,
  100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes wave {
  0%,
  100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}

@-webkit-keyframes niceAnimate {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes niceAnimate {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@-webkit-keyframes translation {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes translation {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}

@keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}

@-webkit-keyframes vibrate {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes vibrate {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

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

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

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

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

/*flipping*/
@-webkit-keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg) translate(-50%, -50%);
            transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0) translate(-50%, -50%);
            transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg) translate(-50%, -50%);
            transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0) translate(-50%, -50%);
            transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}

/*shadow animation*/
@-webkit-keyframes shadow {
  0% {
    -webkit-box-shadow: 0px 0px 35px -4px #00a4e6;
            box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    -webkit-box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
            box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes shadow {
  0% {
    -webkit-box-shadow: 0px 0px 35px -4px #00a4e6;
            box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    -webkit-box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
            box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}

/*start rotate*/
@-webkit-keyframes rotate {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
  25% {
    border-top-left-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 70%;
  }
  50% {
    border-top-left-radius: 20%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 30%;
  }
  75% {
    border-top-left-radius: 70%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 50%;
  }
  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
}
@keyframes rotate {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
  25% {
    border-top-left-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 70%;
  }
  50% {
    border-top-left-radius: 20%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 30%;
  }
  75% {
    border-top-left-radius: 70%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 50%;
  }
  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@-webkit-keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}

@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}

@-webkit-keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}

@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}

@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}

@font-face {
  font-family: "semiBold";
  src: url(../fonts/tajawal/Tajawal-Medium.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../fonts/tajawal/Tajawal-Regular.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../fonts/tajawal/Tajawal-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3, .nav-list .active {
  font-family: "bold";
}

h4,
h5,
h6, .nav-item {
  font-family: "semiBold";
}

p,
span {
  font-family: 'regular';
}

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

.general-section {
  width: 100%;
  padding: 50px 0px;
  position: relative;
}

.custom-margin {
  margin: 20px 0px;
}

.navbar-fixed-top.scrolled {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px #2c724f;
          box-shadow: 0px 0px 10px #2c724f;
}

.animate {
  -webkit-animation: sideClip 1.5s linear 1;
          animation: sideClip 1.5s linear 1;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot span:hover {
  background-color: #2c724f !important;
  position: relative;
  width: 9px;
  height: 9px;
}

.owl-theme .owl-dots .owl-dot.active span::after,
.owl-theme .owl-dots .owl-dot span:hover::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 1px solid #2c724f;
}

.heading h3 {
  color: #4F5C60;
}

.heading p {
  color: #555;
}

.custom-btn {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid #2c724f;
  color: #2c724f;
  font-weight: 700;
  margin: 0px auto;
}

.custom-btn span {
  position: relative;
  z-index: 3;
}

.custom-btn::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 12px);
  background-color: #fff;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.custom-btn::after {
  content: '';
  position: absolute;
  left: 6px;
  top: -2px;
  height: calc(100% + 4px);
  width: calc(100% - 12px);
  background-color: #fff;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.custom-btn:hover {
  color: #2c724f;
}

.custom-btn:hover::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.custom-btn:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

/*end general properties for website*/
/*satrt navbar*/
nav {
  width: 100%;
  padding: 20px 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

nav .nav-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .nav-content .image-content {
  width: 150px;
  height: 60px;
  overflow: hidden;
}

nav .nav-content .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

nav .nav-content .navbar-nav {
  width: 70%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .nav-content .navbar-nav .nav-list .nav-item {
  color: #000;
  margin: .5rem;
  padding-bottom: 15px;
  position: relative;
}

nav .nav-content .navbar-nav .nav-list .nav-item::after {
  content: '.';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2em;
  line-height: 1em;
  text-shadow: 8px 0 #2c724f, -8px 0 #2c724f;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

nav .nav-content .navbar-nav .nav-list .nav-item:hover {
  color: #2c724f;
}

nav .nav-content .navbar-nav .nav-list .nav-item:hover::after {
  color: #000000;
  opacity: 1;
  -webkit-animation: fadeInLeft .4s linear 1;
          animation: fadeInLeft .4s linear 1;
}

nav .nav-content .navbar-nav .nav-list .nav-item.active {
  color: #2c724f;
}

nav .nav-content .navbar-nav .nav-list .nav-item.active::after {
  color: #000000;
  opacity: 1;
}

.mobile-only {
  display: none;
}

.mobile-button {
  width: 50px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.mobile-button span {
  width: 100%;
  display: block;
  height: 4px;
  background-color: #2c724f;
  position: absolute;
  left: 0;
}

.mobile-button span:nth-child(1) {
  top: 0;
}

.mobile-button span:nth-child(2) {
  top: 50%;
  width: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mobile-button span:nth-child(3) {
  bottom: 0;
  width: 40%;
}

.mobile-nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9999;
  right: -100%;
  background-color: #fff;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.mobile-nav .image-content {
  width: 150px;
  height: 60px;
  padding: 10px 0px;
  overflow: hidden;
}

.mobile-nav .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-nav .navbar-nav {
  width: 100%;
  height: 80%;
  padding-top: 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-nav .navbar-nav .nav-list .nav-item {
  color: #000;
  margin: .5rem;
  padding-bottom: 15px;
  position: relative;
}

.mobile-nav .navbar-nav .nav-list .nav-item::after {
  content: '.';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2em;
  line-height: 1em;
  text-shadow: 8px 0 #2c724f, -8px 0 #2c724f;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.mobile-nav .navbar-nav .nav-list .nav-item:hover {
  color: #2c724f;
}

.mobile-nav .navbar-nav .nav-list .nav-item:hover::after {
  color: #000000;
  opacity: 1;
  -webkit-animation: fadeInLeft .4s linear 1;
          animation: fadeInLeft .4s linear 1;
}

.mobile-nav .navbar-nav .nav-list .nav-item.active {
  color: #2c724f;
}

.mobile-nav .navbar-nav .nav-list .nav-item.active::after {
  color: #000000;
  opacity: 1;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 30px;
  color: #2c724f;
}

.active-nav {
  -webkit-animation: sideClip_2 .5s linear forwards;
          animation: sideClip_2 .5s linear forwards;
  right: 0% !important;
}

/*start header*/
header {
  background: url(../images/header.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

header::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-color: rgba(241, 241, 241, 0.5);
}

header .content {
  position: relative;
  z-index: 99;
  padding: 100px 0px;
}

header .content h4, header .content p {
  color: #fff;
  margin: 10px 0px;
  line-height: 1.8rem;
}

header .content h2 {
  color: #2c724f;
}

/*start about us*/
.about-us::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  right: -200px;
  bottom: 0%;
  background: url(../images/helm.svg);
  -webkit-filter: invert(93%) sepia(1%) saturate(0%) hue-rotate(43deg) brightness(90%) contrast(89%);
          filter: invert(93%) sepia(1%) saturate(0%) hue-rotate(43deg) brightness(90%) contrast(89%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  -webkit-clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
          clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
  opacity: 0;
  -webkit-transition: all 1.2s ease-in-out;
  transition: all 1.2s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.about-us.animated::after {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  opacity: .3 !important;
}

.about-us .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}

.about-us .content .about-heading {
  width: 100%;
  height: 100%;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about-us .content .image-content {
  width: 100%;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  opacity: 0;
  -webkit-transition: all 1.2s ease-in-out;
  transition: all 1.2s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  border-radius: 20px;
}

.about-us .content .image-content.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
}

.about-us .content .image-content img {
  margin: auto;
  width: 90%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 4px #222222;
          box-shadow: 0px 0px 4px #222222;
  position: relative;
  z-index: 99;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.about-us .content .image-content::after {
  content: '';
  position: absolute;
  width: 86%;
  height: 300px;
  background-color: #f5f5f5;
  top: 15%;
  left: 10%;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  border-radius: 20px;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.about-us .content .image-content:hover::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 95%;
  height: 95%;
}

.about-us .content .image-content:hover img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 90%;
  height: 90%;
}

/*start services*/
.services .image-content {
  width: 100%;
  height: 450px;
  -webkit-clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
          clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
  opacity: 0;
  -webkit-transition: all 1.2s ease-in-out;
  transition: all 1.2s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  position: relative;
}

.services .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services .image-content h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: .8s linear;
  transition: .8s linear;
  z-index: 999;
  color: #fff;
}

.services .image-content .custom-btn {
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
  border-color: #fff;
  -webkit-transition: .8s linear;
  transition: .8s linear;
  color: #fff;
  opacity: 0;
}

.services .image-content .custom-btn::before {
  display: none;
}

.services .image-content .custom-btn::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2c724f;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.services .image-content .custom-btn:hover {
  color: #fff;
}

.services .image-content .custom-btn:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.services .image-content.animated {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  opacity: 1;
}

.services .image-content::after {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background-color: rgba(44, 114, 79, 0.7);
  border: 2px solid #f5f5f5;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.services .image-content:hover h2, .services .image-content:hover .custom-btn {
  opacity: 1;
}

.services .image-content:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.services .custom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.services .custom-box .box {
  width: 100%;
  height: 200px;
  -webkit-box-shadow: 0px 0px 4px #222222;
          box-shadow: 0px 0px 4px #222222;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  overflow: hidden;
}

.services .custom-box .box h6 {
  color: #2c724f;
  font-size: 20px;
  z-index: 99;
  -webkit-transition: 1s linear;
  transition: 1s linear;
}

.services .custom-box .box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: #2c724f;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.services .custom-box .box:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: rotate .5s linear 1;
          animation: rotate .5s linear 1;
}

.services .custom-box .box:hover h6 {
  color: #fff;
  -webkit-animation: fadeInRight 1s linear;
          animation: fadeInRight 1s linear;
}

/*start why-us*/
.why-us {
  padding-bottom: 70px;
}

.why-us .box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f5f5f5;
  padding: 20px 10px;
  border-radius: 5px;
  position: relative;
}

.why-us .box .icons-box {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #2c724f;
  border: 2px solid #2c724f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.why-us .box .icons-box i {
  font-size: 40px;
  color: #fff;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.why-us .box .box-content {
  padding: 20px 0px;
  text-align: center;
}

.why-us .box .box-content h6 {
  color: #2c724f;
}

.why-us .box .box-content p {
  margin: 10px 0px;
  line-height: 1.8rem;
  font-size: 15px;
  color: #808080;
}

.why-us .box::After {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #2c724f;
  bottom: 0px;
  left: 0px;
  -webkit-transform: scaleX(0.2);
          transform: scaleX(0.2);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.why-us .box:hover .icons-box {
  background-color: #fff;
}

.why-us .box:hover .icons-box i {
  color: #2c724f;
  -webkit-animation: toRightFromLeft 0.5s forwards;
          animation: toRightFromLeft 0.5s forwards;
}

.why-us .box:hover::After {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*start projects*/
.projects {
  background-color: #ddd;
}

.projects .project-heading h3 {
  color: #2c724f;
  position: relative;
  padding: 10px 0px;
}

.projects .project-heading h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #2c724f;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  -webkit-animation: niceAnimate 3s linear infinite;
          animation: niceAnimate 3s linear infinite;
}

.projects .project-heading p {
  color: #808080;
  line-height: 1.8rem;
  margin: 15px 0px;
}

.projects .project-heading .custom-btn::after, .projects .project-heading .custom-btn::before {
  background-color: #ddd;
}

.projects .porjects-content {
  margin-top: -100px;
}

.projects .porjects-content .box {
  width: 100%;
  background-color: rgba(249, 249, 249, 0.4);
  border-radius: 20px;
  overflow: hidden;
}

.projects .porjects-content .box .image-content {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.projects .porjects-content .box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects .porjects-content .box .image-content::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .4s linear;
  transition: .4s linear;
}

.projects .porjects-content .box .image-content .custom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 20px 1px;
  color: #000;
  opacity: 0;
  -webkit-transition: 1.5s linear;
  transition: 1.5s linear;
  z-index: 99;
  font-size: 14px;
}

.projects .porjects-content .box .image-content .custom-btn::before {
  display: none;
}

.projects .porjects-content .box .image-content .custom-btn::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2c724f;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.projects .porjects-content .box .image-content .custom-btn:hover {
  color: #fff;
}

.projects .porjects-content .box .image-content .custom-btn:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.projects .porjects-content .box .box-content {
  padding: 10px 0px;
  text-align: center;
}

.projects .porjects-content .box .box-content h5 {
  color: #2c724f;
}

.projects .porjects-content .box .box-content p {
  font-size: 14px;
  line-height: 1.8rem;
  color: #808080;
}

.projects .porjects-content .box:hover .image-content .custom-btn {
  -webkit-animation: flip-in-hor-bottom 1s linear;
          animation: flip-in-hor-bottom 1s linear;
  opacity: 1;
}

.projects .porjects-content .box:hover .image-content::after {
  -webkit-animation: clip .8s linear;
          animation: clip .8s linear;
  opacity: 1;
}

/*start data*/
.data {
  background: url(../images/shape.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.data .data-heading h3 {
  color: #f9f9f9;
  position: relative;
  padding: 10px 0px;
}

.data .data-heading h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #f9f9f9;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  -webkit-animation: niceAnimate 3s linear infinite;
          animation: niceAnimate 3s linear infinite;
}

.data .data-heading p {
  color: #ccc;
  line-height: 1.8rem;
  margin: 15px 0px;
}

.data .form-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.data .form-content form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.data .form-content form .form-group {
  width: 100%;
  margin: 0px;
}

.data .form-content form .form-group input {
  border-left: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: #ccc;
  color: #2c724f;
}

.data .form-content form .form-group input::-webkit-input-placeholder {
  color: #2c724f;
}

.data .form-content form .form-group input:-ms-input-placeholder {
  color: #2c724f;
}

.data .form-content form .form-group input::-ms-input-placeholder {
  color: #2c724f;
}

.data .form-content form .form-group input::placeholder {
  color: #2c724f;
}

.data .form-content form .btn {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #2c724f;
  color: #ccc;
  padding: .4rem .75rem;
}

/*start testimonials*/
.testimonial .testimonial-heading {
  text-align: center;
  width: 100%;
}

.testimonial .testimonial-heading h3 {
  color: #2c724f;
  position: relative;
  padding: 10px 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.testimonial .testimonial-heading h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #2c724f;
  bottom: 0;
  right: calc(50% - 15px);
  border-radius: 10px;
  -webkit-animation: niceAnimate 3s linear infinite;
          animation: niceAnimate 3s linear infinite;
}

.testimonial .testimonial-heading p {
  color: #808080;
  line-height: 1.8rem;
  margin: 10px 0px 5px 0px;
  font-size: 15px;
}

.testimonial .testimonial-slider {
  padding: 20px 0px;
}

.testimonial .testimonial-slider .owl-stage-outer,
.testimonial .testimonial-slider .owl-testimonial {
  padding: 20px 10px;
}

.testimonial .testimonial-slider .center .box {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
}

.testimonial .testimonial-slider .center .box::after {
  left: 0;
}

.testimonial .testimonial-slider .center .box p {
  color: #f9f9f9;
}

.testimonial .testimonial-slider .center .box h6 {
  color: #fff;
}

.testimonial .testimonial-slider .center .box h6::after {
  color: #000;
  text-shadow: 8px 0 #ddd , -8px 0 #ddd;
}

.testimonial .testimonial-slider .box {
  width: 100%;
  padding: 20px;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial .testimonial-slider .box .box-content {
  position: relative;
  z-index: 99;
}

.testimonial .testimonial-slider .box p {
  color: #808080;
  line-height: 1.8rem;
  margin: 10px 0px;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.testimonial .testimonial-slider .box .details {
  float: left;
}

.testimonial .testimonial-slider .box .details h6 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px;
  padding: 20px 0px;
  position: relative;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.testimonial .testimonial-slider .box .details h6::after {
  content: '.';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 3em;
  line-height: 1em;
  text-shadow: 8px 0 #2c724f, -8px 0 #2c724f;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.testimonial .testimonial-slider .box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 99.5%;
  top: 0;
  background: -webkit-gradient(linear, left top, right bottom, from(#2c724f), to(#59ed75));
  background: linear-gradient(to bottom right, #2c724f, #59ed75);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.testimonial .testimonial-slider .box:hover {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
}

.testimonial .testimonial-slider .box:hover::after {
  left: 0;
}

.testimonial .testimonial-slider .box:hover p {
  color: #f9f9f9;
}

.testimonial .testimonial-slider .box:hover h6 {
  color: #fff;
}

.testimonial .testimonial-slider .box:hover h6::after {
  color: #000;
  text-shadow: 8px 0 #ddd , -8px 0 #ddd;
}

/*start questions*/
.questions {
  background-color: #f8f8f8;
}

.questions .questions-heading {
  text-align: center;
  width: 100%;
}

.questions .questions-heading h3 {
  color: #2c724f;
  position: relative;
  padding: 10px 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.questions .questions-heading h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #2c724f;
  bottom: 0;
  right: calc(50% - 15px);
  border-radius: 10px;
  -webkit-animation: niceAnimate 3s linear infinite;
          animation: niceAnimate 3s linear infinite;
}

.questions .questions-heading p {
  color: #808080;
  line-height: 1.8rem;
  margin: 10px 0px 5px 0px;
  font-size: 15px;
}

.questions .image-content {
  width: 100%;
}

.questions .image-content svg {
  width: 100%;
  height: 100%;
}

.questions .image-content svg #woman, .questions .image-content svg #message, .questions .image-content svg #circle_3, .questions .image-content svg #circle_1, .questions .image-content svg #circle_2, .questions .image-content svg #man, .questions .image-content svg #flower, .questions .image-content svg #flower_2 {
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

.questions .image-content svg #woman, .questions .image-content svg #message, .questions .image-content svg #circle_3, .questions .image-content svg #circle_1, .questions .image-content svg #circle_2, .questions .image-content svg #man {
  -webkit-animation: translateY 1.5s linear infinite;
          animation: translateY 1.5s linear infinite;
}

.questions .image-content svg #flower, .questions .image-content svg #flower_2 {
  -webkit-animation: rotation 1.4s linear infinite;
          animation: rotation 1.4s linear infinite;
}

.questions .question-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.questions .question-content .accordion {
  width: 100%;
}

.questions .card, .questions .card-header {
  background-color: transparent !important;
  border: none;
  padding: 0px;
  margin: 0px 0px 20px 0px;
}

.questions .card {
  -webkit-box-shadow: 0px 2px 10px rgba(44, 114, 79, 0.1);
          box-shadow: 0px 2px 10px rgba(44, 114, 79, 0.1);
}

.questions .card .btn-link {
  width: 100%;
  height: 60px !important;
  color: #2c724f !important;
  font-weight: bold !important;
  text-align: right !important;
  text-decoration: none !important;
  position: relative;
  background-color: #fff;
}

.questions .card .btn-link::after {
  content: '\2212';
  width: 35px;
  position: absolute;
  font-size: 25px;
  border-radius: 5px;
  left: 15px;
  top: 11px;
}

.questions .card .btn-link::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 30px;
  top: 46px;
}

.questions .card .btn-link.collapsed::after {
  content: '\002B';
}

.questions .card .card-body {
  background-color: #e8eeff;
}

/*start footer*/
footer {
  background: #333;
}

footer .content h4 {
  color: #fff;
  position: relative;
  padding: 10px 0px;
  margin: 10px 0px;
}

footer .content h4::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #fff;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  -webkit-animation: niceAnimate 3s linear infinite;
          animation: niceAnimate 3s linear infinite;
}

footer .content .image-content {
  width: 150px;
  height: 60px;
  overflow: hidden;
  margin: 10px 0px;
}

footer .content .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .content p, footer .content a {
  color: #f9f9f9;
  line-height: 1.8rem;
  margin: 10px 0px;
}

footer .content ul {
  margin: 20px 0px 0px 0px;
}

footer .content ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

footer .content ul.social {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer .content ul.social li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 40px;
  height: 40px;
  background-color: #f9f9f9;
  border-radius: 50%;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  overflow: hidden;
}

footer .content ul.social li a {
  color: #2c724f;
}

footer .content ul.social li a i {
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

footer .content ul.social li:hover {
  background-color: transparent;
  border: 2px solid #2c724f;
}

footer .content ul.social li:hover i {
  -webkit-animation: toRightFromLeft .5s linear forwards;
          animation: toRightFromLeft .5s linear forwards;
  color: #f9f9f9;
}

/*start copyright*/
.copyright {
  width: 100%;
  padding: 10px 0px;
  background: #222;
}

.copyright p {
  margin: 0px;
  color: #fff;
}

/*start loading page*/
.loader {
  /*start the loading page*/
}

.loader #loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.loader #loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #222222;
  z-index: 1000;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

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

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

.loader #loader {
  display: block;
  position: absolute;
  left: calc(50% - 75px);
  top: calc(50% - 75px);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #2c724f;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader #loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #59ed75;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader #loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #000000;
  color: #fff;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background: #2c724f;
  border-radius: 50%;
  color: #fff;
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  position: relative;
  bottom: 4px;
}
/*# sourceMappingURL=style.css.map */