@charset "utf-8";

/*
        Resets
*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

em {
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

.clear {
  clear: both;
}

/*
        body Structure
*/

html,
body {
  height: 100%;
}

body {
  background: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #454545;
  overflow-x: hidden !important;
}

/*
        Typography
*/

div,
p,
a,
li,
td {
  -webkit-text-size-adjust: none;
}

html,
html a {
  -webkit-font-smoothing: antialiased !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 15px 0;
  line-height: normal !important;
}

h1 {
  font-size: 54px;
  font-weight: 700;
}

h2 {
  font-family: "Josefin Sans", sans-serif !important;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: #000;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
}

h4 {
  font-size: 22px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 400;
}

h6 {
  font-size: 14px;
  font-weight: 400;
}

p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #000000;
  margin-bottom: 20px;
}

p span,
p strong {
  font-weight: bold;
}

img {
  border: none;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: #000;
}

.fancybox-custom .fancybox-skin {
  box-shadow: 0 0 50px #222;
}
/*  navbarSection*/
.navbarSection {
  width: 100%;
  left: 0;
  right: 0;
  height: auto;
  position: relative;
  z-index: 99999;
}

/*navigationBar*/

.navbar-default .navbar-toggle .icon-bar {
  background-color: #4f1d48;
}

.navigationBar {
  display: block;
  width: auto;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  height: 80px;
  padding: 0;
  background: #ffffff;
  overflow: visible;
}

.containerWrapper {
  display: block;
  position: relative;
  padding: 0 100px;
}

.containerWrapper:after {
  content: "";
  display: block;
  clear: both;
}

/*navigationBarContent*/

.navigationBarContent {
  position: relative;
  height: auto;
}

.navbar {
  min-height: 40px;
  margin-bottom: 0;
}

.navbar-brand {
  display: inline-block;
  margin-top: 5px;
  height: auto;
  padding: 0;
  position: relative;
  top: 0;
  left: 0;
  transition: all 300ms;
}

.navbarbrandfixed {
  visibility: hidden;
  opacity: 0;
}

.navbar-brand img {
  height: 75px;
}

.navbar-nav {
  margin-top: 15px;
}

.navbar-collapse {
  float: right;
  padding-right: 0;
}

.navbar-default {
  background: transparent;
  border: none;
  margin: 0;
}

/*navbar-collapse*/

.navbar-collapse > ul > li {
  margin: 0 1px;
  color: #3d3d3d;
  height: 50px;
  padding: 0;
  position: relative;
  transition: all 300ms;
  transform-style: preserve-3d;
  perspective: 800px;
}

.navbar-collapse > ul > li:last-child {
  border: none;
}

.navbar-collapse > ul > li > a {
  display: block;
  color: inherit !important;
  padding: 15px 15px;
  margin: 0 1px;
  height: 50px;
  line-height: 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 300ms;
  text-decoration: none;
}

/* Top Border */

.navbar-collapse > ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  /* background: #4f1d48; */
  transition: all 300ms;
  visibility: hidden;
  opacity: 0;
}

/* Triangle */

.navbar-collapse > ul > li::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #f16e03;
  transition: all 300ms;
  visibility: hidden;
  opacity: 0;
}

/* Hover */

.navbar-collapse > ul > li:hover:before,
.navbar-collapse > ul > li.active:before {
  visibility: visible;
  opacity: 1;
}

.navbar-collapse > ul > li:hover:after,
.navbar-collapse > ul > li.active::after {
  visibility: visible;
  opacity: 1;
}

.navbar-collapse > ul > li:hover > a {
  background: transparent !important;
  color: #4f1d48 !important;
}

.navbar-collapse > ul > li.active > a {
  background: transparent !important;
  color: #4f1d48 !important;
}

.navbar-collapse.in {
  overflow-y: visible !important;
}

/* =========================
   DROPDOWN MENU
========================= */

.navbar-collapse > ul > li > ul {
  display: block;
  width: 250px;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;

  visibility: hidden;
  opacity: 0;

  transform: translateY(15px);

  z-index: 999999;

  border-radius: 6px;

  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);

  transition: all 300ms ease-in-out;
}

/* Show Dropdown */

.navbar-collapse > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown Items */

.navbar-collapse > ul > li > ul > li {
  display: block;
  border-bottom: solid 1px #eee;
  transition: all 300ms ease-in-out;
  position: relative;
}

.navbar-collapse > ul > li > ul > li:last-child {
  border-bottom: none;
}

/* Dropdown Links */

.navbar-collapse > ul > li > ul > li > a {
  display: block;
  padding: 12px 18px;
  color: #222;
  font-size: 15px;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

/* Dropdown Hover */

.navbar-collapse > ul > li > ul > li:hover {
  background: #f16e03;
}

.navbar-collapse > ul > li > ul > li:hover > a {
  color: #fff;
  padding-left: 25px;
}

/* =========================
   DOUBLE DROPDOWN
========================= */

.navbar-collapse > ul > li > ul > li > ul {
  display: block;
  width: 220px;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;

  visibility: hidden;
  opacity: 0;

  transform: translateX(10px);

  border-radius: 6px;

  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);

  transition: all 300ms;
}

.navbar-collapse > ul > li > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.navbar-collapse > ul > li > ul > li > ul > li {
  display: block;
  border-bottom: solid 1px #eee;
  transition: all 300ms ease-in-out;
  position: relative;
}

.navbar-collapse > ul > li > ul > li > ul > li:last-child {
  border-bottom: none;
}

.navbar-collapse > ul > li > ul > li > ul > li > a {
  display: block;
  padding: 12px 18px;
  color: #222;
  font-size: 15px;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}

.navbar-collapse > ul > li > ul > li > ul > li:hover {
  background: #4f1d48;
}

.navbar-collapse > ul > li > ul > li > ul > li:hover > a {
  color: #fff;
  padding-left: 25px;
}

/*navigationBar fixed*/

.navigationBarFixed {
  position: fixed;
  height: 60px;
  border-bottom: none;
  background: #fff !important;
  z-index: 99999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navigationBarFixed .navbar-brand {
  margin-top: 5px;
}

.navigationBarFixed .navbar-brand img {
  height: 50px;
}

.navigationBarFixed .navbar-collapse > ul > li {
  height: 40px;
  line-height: 40px;
  color: #000;
}

.navigationBarFixed .navbar-collapse > ul > li > a {
  height: 40px;
  line-height: 20px;
  padding: 10px 15px;
}

.navigationBarFixed .navbar-collapse > ul > li > ul > li > a {
  height: auto;
  line-height: normal;
}

.navigationBarFixed:before {
  display: none;
}

.navigationBarFixed .button1 {
  margin-top: 8px !important;
  padding: 10px 15px;
}

.navigationBarFixed .button1 a {
  font-size: 16px;
}

.navbar-collapse .btn-primary {
  margin-top: 15px;
}

.navigationBarFixed .btn-primary {
  margin-top: 8px;
}


@media (max-width: 767px) {

  .navbar-collapse > ul > li > ul {
    display: none;
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
  }

  .navbar-collapse > ul > li.open > ul {
    display: block;
  }

}
/* banner section */


.bannerSection {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
}

.bannerSection .bannerSectionContainer {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* =========================================
   Owl Slider Height
========================================= */

#bannerSlider,
#bannerSlider .owl-wrapper-outer,
#bannerSlider .owl-wrapper-outer .owl-wrapper,
#bannerSlider .owl-wrapper-outer .owl-wrapper .owl-item,
#bannerSlider .owl-wrapper-outer .owl-wrapper .owl-item .item {
  height: 100%;
}

#bannerSlider .owl-wrapper-outer .owl-wrapper .owl-item .item {
  width: 100%;
  overflow: hidden;
}

/* =========================================
   Banner Background Image
========================================= */

.bannerSection .bannerSlideImg {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}

.bannerSection .bannerSlideImg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background: rgba(0, 0, 0, 0.65);
}

/* =========================================
   Caption Block
========================================= */

.bannerSection .bannerSlideBlock {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.bannerSection .bannerSlideCaption {
  width: 100%;
  height: 100%;
}

.bannerSection .bannerSlideCaptionInner {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;
}

/* =========================================
   Text Wrapper
========================================= */

.bannerSlideCaptionTextWrapper {
  max-width: 900px;
  padding: 20px;
}

.bannerSlideCaptionTextWrapper small {
  display: inline-block;

  font-size: 20px;
  font-weight: 500;

  color: #fff;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 15px;

  position: relative;
}

.bannerSlideCaptionTextWrapper small::after {
  content: "";
  width: 80px;
  height: 3px;

  background: #7dbd39;

  display: block;
  margin: 12px auto 0;
}

/* =========================================
   Heading
========================================= */

.bannerSlideCaptionTextWrapper h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 75px;

  color: #fff;

  text-transform: uppercase;

  margin-bottom: 25px;
}

/* =========================================
   Paragraph
========================================= */

.bannerSlideCaptionTextWrapper p {
  font-size: 20px;
  line-height: 34px;

  color: #eaeaea;

  margin-bottom: 35px;

  font-weight: 400;
}

/* =========================================
   Button
========================================= */

.bannerBtn {
  display: inline-block;

  background: linear-gradient(
    180deg,
    rgba(250, 96, 1, 1) 30%,
    rgba(250, 175, 1, 1) 95%
  );

  color: #fff;

  padding: 16px 35px;

  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  transition: 0.4s ease;
}

.bannerBtn:hover {
  background: #fff;
  color: #3f8f2e;
  text-decoration: none;
}

/* =========================================
   Owl Dots
========================================= */

#bannerSlider .owl-controls {
  position: absolute;
  width: auto;
  bottom: 25px;
  right: 0;
  left: 0;
  text-align: center;
  z-index: 2;
}

#bannerSlider .owl-controls .owl-page span {
  width: 14px !important;
  height: 14px !important;
  margin: 0 5px !important;

  background: #fff !important;
  opacity: 1;
}

#bannerSlider .owl-controls .owl-page.active span {
  background: #7dbd39 !important;
}

/* =========================================
   Owl Arrows
========================================= */

.carouselWithArrows.owl-theme .owl-controls .owl-buttons {
  position: absolute;
  top: 50%;
  right: 15px;
  display: none;
  z-index: 2;

  background: linear-gradient(
    180deg,
    rgba(250, 96, 1, 1) 30%,
    rgba(250, 175, 1, 1) 95%
  );

  padding: 6px 10px;

  border-radius: 50px;

  transform: rotate(-90deg);

  height: 65px;
  width: 175px;
}

.carouselWithArrows.owl-theme .owl-controls {
  margin: 0;
}

.carouselWithArrows.owl-theme .owl-controls .owl-buttons div {
  line-height: 45px;
  text-align: center;

  padding: 0;
  margin: 5px;

  border-radius: 0;

  background: transparent !important;

  opacity: 1;

  font-size: 15px;
  font-weight: 600;

  color: #fff;
}

.carouselWithArrows.owl-theme .owl-controls .owl-buttons div:hover {
  color: #dcdcdc;
}

/* =========================================
   Responsive
========================================= */

@media screen and (max-width: 991px) {
  .bannerSlideCaptionTextWrapper h2 {
    font-size: 42px;
    line-height: 55px;
  }

  .bannerSlideCaptionTextWrapper p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .bannerSection {
    height: 700px;
  }

  .bannerSlideCaptionTextWrapper h2 {
    font-size: 30px;
    line-height: 42px;
  }

  .bannerSlideCaptionTextWrapper p {
    font-size: 16px;
    line-height: 28px;
  }

  .bannerSlideCaptionTextWrapper small {
    font-size: 16px;
  }

  .bannerBtn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .carouselWithArrows.owl-theme .owl-controls .owl-buttons {
    display: none;
  }
}


/* =========================================
   About Section
========================================= */

.aboutSection {
  position: relative;
  padding: 100px 0;
  background: #f8faf8;
  overflow: hidden;
}

/* =========================================
   About Content
========================================= */

.aboutContent {
  padding-right: 30px;
}

.aboutTag {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(63, 143, 46, 0.1);
  border-radius: 50px;
  color: #3f8f2e;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.aboutContent h2 {
  font-size: 28px;
  line-height: 56px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: left;
}

.aboutDesc {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-bottom: 30px;
}

/* =========================================
   About Features
========================================= */

.aboutFeatures {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aboutFeatureItem {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.aboutFeatureItem i {
  font-size: 17px;
  color: #3f8f2e;
  margin-right: 12px;
  margin-top: 4px;
  min-width: 18px;
}

.aboutFeatureItem span {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #444;
}

/* =========================================
   Button
========================================= */

.aboutBtn {
  display: inline-block;
  background: #3f8f2e;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.4s ease;
}

.aboutBtn:hover {
  background: #222;
  color: #fff;
  text-decoration: none;
}

/* =========================================
   Images
========================================= */

.aboutImgWrapper {
  position: relative;
  padding-left: 30px;
}

.mainAboutImg img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  display: block;
}

/* =========================================
   Large Screen
========================================= */

@media only screen and (max-width: 1199px) {

  .aboutContent h2 {
    font-size: 36px;
    line-height: 50px;
  }

  .mainAboutImg img {
    height: 540px;
  }

}

/* =========================================
   Tablet View
========================================= */

@media only screen and (max-width: 991px) {

  .aboutSection {
    padding: 80px 0;
  }

  .aboutContent {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .aboutContent h2 {
    font-size: 32px;
    line-height: 46px;
  }

  .aboutDesc {
    font-size: 15px;
    line-height: 28px;
  }

  .aboutImgWrapper {
    padding-left: 0;
  }

  .mainAboutImg img {
    height: 450px;
  }

}

/* =========================================
   Mobile View
========================================= */

@media only screen and (max-width: 767px) {

  .aboutSection {
    padding: 60px 0;
  }

  .aboutContent {
    margin-bottom: 30px;
  }

  .aboutTag {
    font-size: 12px;
    padding: 8px 18px;
    margin-bottom: 15px;
  }

  .aboutContent h2 {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 15px;
  }

  .aboutDesc {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 25px;
  }

  .aboutFeatureItem {
    margin-bottom: 14px;
  }

  .aboutFeatureItem i {
    font-size: 15px;
    margin-right: 10px;
  }

  .aboutFeatureItem span {
    font-size: 14px;
    line-height: 22px;
  }

  .aboutBtn {
    padding: 12px 28px;
    font-size: 14px;
    margin-top: 20px;
  }

  .mainAboutImg img {
    height: 320px;
    border-radius: 20px;
  }

}

/* =========================================
   Small Mobile
========================================= */

@media only screen and (max-width: 480px) {

  .aboutSection {
    padding: 50px 0;
  }

  .aboutContent h2 {
    font-size: 22px;
    line-height: 34px;
  }

  .aboutDesc {
    font-size: 13px;
    line-height: 24px;
  }

  .aboutFeatureItem span {
    font-size: 13px;
    line-height: 21px;
  }

  .mainAboutImg img {
    height: 260px;
    border-radius: 18px;
  }

}


/* =========================================
   Services Section
========================================= */

.servicesSection {
  clear: both;
  position: relative;
  padding: 100px 0;

  background: linear-gradient(
    135deg,
    #f4f9f1 0%,
    #e8f5e1 40%,
    #fdf6ee 100%
  );

  overflow: hidden;
}

/* =========================================
   Section Title
========================================= */

.sectionTitle {
  max-width: 760px;
  margin: 0 auto 60px;
}

.sectionTitle span {
  display: inline-block;

  padding: 10px 22px;

  background: rgba(63, 143, 46, 0.1);

  border-radius: 50px;

  color: #3f8f2e;

  font-size: 14px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 18px;
}

.sectionTitle h2 {
  font-size: 29px;
  line-height: 50px;
  font-weight: 700;

  color: #222;
}

/* =========================================
   Service Card
========================================= */

.serviceCard {
  position: relative;

  background: #fff;

  border-radius: 25px;

  overflow: hidden;

  margin-bottom: 30px;

  transition: 0.4s ease;

  border: 1px solid #eeeeee;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.serviceCard:hover {
  transform: translateY(-10px);
}

/* =========================================
   Image
========================================= */

.serviceImg {
  overflow: hidden;
}

.serviceImg img {
  width: 100%;
  height: 260px;

  object-fit: cover;

  transition: 0.5s ease;
}

.serviceCard:hover .serviceImg img {
  transform: scale(1.08);
}

/* =========================================
   Content
========================================= */

.serviceContent {
  padding: 22px 30px;
}

.serviceContent h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;

  color: #222;

  margin-bottom: 22px;
}

/* =========================================
   List
========================================= */

.serviceContent ul {
  padding: 0;
  margin: 0 0 28px;

  list-style: none;
}

.serviceContent ul li {
  position: relative;

  padding-left: 28px;

  margin-bottom: 14px;

  font-size: 15px;
  line-height: 26px;

  color: #555;
}

.serviceContent ul li::before {
  content: "\f058";

  font-family: FontAwesome;

  position: absolute;

  left: 0;
  top: 0;

  color: #3f8f2e;

  font-size: 16px;
}

/* =========================================
   Button
========================================= */

.serviceBtn {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 50px;
  background: linear-gradient(
    180deg,
    rgba(250, 96, 1, 1) 20%,
    rgba(250, 175, 1, 1) 100%
  );
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.serviceBtn:hover {
  background: #3f8f2e;

  color: #fff;

  text-decoration: none;
}

/* =========================================
   Responsive
========================================= */

@media only screen and (max-width: 991px) {

  .servicesSection {
    padding: 80px 0;
  }

}

@media only screen and (max-width: 767px) {

  .servicesSection {
    padding: 60px 0;
  }

  .sectionTitle {
    margin-bottom: 40px;
  }

  .sectionTitle h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .serviceImg img {
    height: 220px;
  }

  .serviceContent {
    padding: 28px 24px;
  }

  .serviceContent h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .serviceContent ul li {
    font-size: 14px;
    line-height: 24px;
  }

}

/* =========================================
   Key Indicators Section
========================================= */

.keyIndicatorsSection {
  position: relative;
  padding: 100px 0;
  background-color: white;
  overflow: hidden;
}


.indicatorCard {
  position: relative;
 background: linear-gradient(
  135deg,
  #ffffff 0%,
  #f4faef 60%,
  #fff6eb 100%
);
  border-radius: 25px;
  padding: 35px 30px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  transition: 0.4s ease;
  border: 1px solid #ed9f47;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.indicatorCard:hover {
  transform: translateY(-10px);
  border-color: #0e120e;
}



.indicatorIcon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  background: rgba(63, 143, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.indicatorIcon i {
  font-size: 38px;
  color: #3f8f2e;
}

/* =========================================
   Content
========================================= */

.indicatorContent h3 {
  font-size: 46px;
  line-height: 50px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.indicatorContent p {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-bottom: 0;
}

/* =========================================
   Responsive
========================================= */

@media only screen and (max-width: 991px) {

  .keyIndicatorsSection {
    padding: 80px 0;
  }

  .indicatorContent h3 {
    font-size: 38px;
  }

}

@media only screen and (max-width: 767px) {

  .keyIndicatorsSection {
    padding: 60px 0;
  }

  .indicatorCard {
    padding: 25px 20px;
  }

  .indicatorIcon {
    width: 70px;
    height: 70px;

    min-width: 70px;

    margin-right: 18px;
  }

  .indicatorIcon i {
    font-size: 28px;
  }

  .indicatorContent h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .indicatorContent p {
    font-size: 15px;
  }

}

/* =========================================
   Clients Section
========================================= */

.clientsSection {
  clear: x;
  position: relative;
  padding: 100px 0;
 background: linear-gradient(
    135deg,
    #f5faf2 0%,
    #edf8e8 45%,
    #fff4e8 100%
  );

  overflow: hidden;
}


#clientsSlider .item {
  padding: 15px;
}


.clientCard {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eeeeee;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.clientCard:hover {
  transform: translateY(-8px);
  border-color: #3f8f2e;
}

.clientCard img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  transition: 0.4s ease;
}

.clientCard:hover img {
  transform: scale(1.05);
}

/* =========================================
   Owl Navigation
========================================= */

#clientsSlider .owl-buttons {
  position: absolute;
  top: 50%;
  left: -70px;
  right: -70px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

#clientsSlider .owl-buttons div {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    180deg,
    rgba(250, 96, 1, 1) 20%,
    rgba(250, 175, 1, 1) 100%
  ) !important;

  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  color: #fff !important;
  font-size: 22px !important;
  transition: 0.4s ease;
  pointer-events: auto;
}

#clientsSlider .owl-buttons div:hover {
  background: #3f8f2e !important;
}

/* =========================================
   Pagination
========================================= */

#clientsSlider .owl-controls {
  margin-top: 30px;
}

#clientsSlider .owl-page span {
  width: 12px !important;
  height: 12px !important;

  background: #3f8f2e !important;

  opacity: 0.4;
}

#clientsSlider .owl-page.active span {
  opacity: 1;
}

/* =========================================
   Responsive
========================================= */

@media only screen and (max-width: 1199px) {

  #clientsSlider .owl-buttons {
    left: -20px;
    right: -20px;
  }

}

@media only screen and (max-width: 991px) {

  .clientsSection {
    padding: 80px 0;
  }

}

@media only screen and (max-width: 767px) {

  .clientsSection {
    padding: 60px 0;
  }

  .clientCard {
    height: 140px;
    padding: 25px 20px;
  }

  .clientCard img {
    max-height: 70px;
  }

  #clientsSlider .owl-buttons {
    display: none;
  }

}

/*footer*/

.footer {
  display: block;
  clear: both;
  width: 100%;
  height: auto;
  /* min-height: 400px; */
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  /* background: url('../images/slider1.jpg') no-repeat fixed 100% 0; */
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
  background-position: center;
  color: #333;
}

.footer::after {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.footer > .row {
  position: relative;
  z-index: 2;
}

.footer h3 {
  display: block;
  padding-bottom: 5px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

.footerUls {
  display: block;
  margin-left: 20px;
}

.footerUls li {
  list-style-type: disc;
  padding: 0 0 4px 0;
  font-size: 15px;
  color: #fff;
  line-height: 2;
}

.footerUls li a {
  color: inherit;
}

.footerUls li a:hover {
  text-decoration: underline;
  color: #26b1ed;
}

.footerLogo {
  display: inline-block;
  width: 80%;
  margin-top: 10px;
}

.footer .btn-primary {
  color: #fff;
  border: solid 2px #fff;
  border-radius: 40px;
  padding: 10px 20px;
}

.footerlogo {
  padding: 10px;
}

.footerlogo img {
 height: 101px;
    width: 90%;
    margin: 0px -20px;
    text-align: center;
}

/*addressInfo*/

.addressInfo {
  display: block;
  position: relative;
}

.addressInfo h4,
.footer h4 {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.addressInfo p {
  margin-bottom: 5px;
  font-size: 16px;
  color: #fff;
  line-height: 2;
}

.addressInfo i {
  display: inline-block;
  width: 20px;
  color: #fff;
}

/*footerStrip*/

.footerStrip {
  display: block;
  clear: both;
  background: #3a3d3d;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-size: 15px;
}

.footerStrip a {
  color: #eee;
  font-weight: bold;
}

.footerStrip a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-social {
  display: inline-block;
  margin-top: 0px;
  margin-left: 15px;
}

.footer-social a {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  width: 33px;
  height: 33px;
  line-height: 34px;
  margin: 0 5px;
  text-align: center;
  border-radius: 100%;
}

.footer-social a:hover {
  background: #ea7c20;
  border-color: #e80000;
  color: #fff;
}

.footer-social .footerfacebookLink {
  background: #204385;
}

.footer-social .footertwitterLink {
  background: #2aa9e0;
}

.footer-social .footeryoutubeLink {
  background: #eb2429;
}

.footer-social .footerlinkedinLink {
  background: #02669a;
}

.footer-social .footerpinterestLink {
  background: #ca2128;
}

.footer-social .footergoogle-plusLink {
  background: #d3492c;
}

/*End Footer*/

/*misc*/

.heading-center {
  display: block;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 20px;
  letter-spacing: 5px;
  font-weight: 600;
  color: #000000;
}

.heading-center h2 {
  margin-bottom: 0;
}

.heading {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 0px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #f57b02;
  border-bottom: 2px solid white;
}

.heading small {
  font-size: 18px;
  color: #ec3237;
}

.heading small a {
  color: inherit;
}

 .heading:after,
.heading-center:after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #5b2443;
    position: absolute;
    bottom: 0;
} 
.heading-left:after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #ec3237;
    /* position: absolute; */
    left: 0;
    bottom: 0;
} 
.heading-center:after {
  margin: 0 auto;
  left: 0%;
  right: 0%;
}

.heading:after {
  left: 0%;
}

.heading span,
.heading-center span {
  color: #ec3237;
}

.btn-transparent {
  display: inline-block;
  padding: 8px 15px;
  border: solid 2px #ffffff;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  transition: all 300ms ease-in-out;
}

.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active,
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  background: #ffffff !important;
  border-color: black !important;
  color: #ec313a;
}

.btn {
  transition: all 300ms ease-in-out;
  border-radius: 0 !important;
}

.btn-primary {
  border: none;
  background: #5b2443 !important;
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #ea7c20 !important;
  color: #fff;
}

.btn-rounded {
  border-radius: 30px !important;
  color: rgb(0, 0, 0);
  background-color:#ffffff;
}



.space5 {
  display: block;
  clear: both;
  padding: 5px 0;
}

.space10 {
  display: block;
  clear: both;
  padding: 10px 0;
}

.space50 {
  display: block;
  padding: 50px 0;
  clear: both;
}

.space30 {
  display: block;
  padding: 30px 0;
  clear: both;
}

.space15 {
  display: block;
  padding: 15px;
  clear: both;
}

.centertext,
.center {
  text-align: center;
}

.white {
  color: white;
}

.container {
  position: relative;
  z-index: 10;
}

/**********scrollUp**********/

.scrollup {
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  position: fixed;
  bottom: 50px;
  right: 20px;
  color: #fff;
  font-size: 26px;
  display: none;
  background: #fa7201;
  /*background: url(../images/up.png) no-repeat;*/
  z-index: 200;
}

.scrollup:hover {
  background: #418119;
  opacity: 1;
  color: #fff;
}

/*media queries*/
@media (max-width: 767px) {
  .callback-form .form-group {
    margin-bottom: 15px;
  }
}

@media (max-width: 1366px) {
}

@media (max-width: 1280px) {
}

@media (max-width: 1220px) {
  .navbar-collapse > ul > li > a {
    padding: 0 10px;
  }

  .containerWrapper {
    padding: 0 25px;
  }
}


@media (max-width: 1024px) {
  .containerWrapper {
    padding: 0 15px;
  }

  .navbar-collapse > ul > li > a {
    padding: 0 10px;
  }

  .bannerSection
    .bannerSlideBlock
    .bannerSlideCaption
    .bannerSlideCaptionInner
    > h2 {
    font-size: 32px;
  }

  .bannerSection
    .bannerSlideBlock
    .bannerSlideCaption
    .bannerSlideCaptionInner
    > .btn {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 895px) {
  .navbar-collapse > ul > li > a {
    font-size: 16px;
    padding: 0 5px;
  }

  .section2 .sectionLeft {
    width: 75%;
  }

  .mediaGallery .col-sm-3 {
    width: 50%;
    float: left;
  }

  .addressInfo p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .heading-center,
  .heading {
    letter-spacing: 1px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  h2 {
    font-size: 26px;
  }

  .navbar-collapse > ul > li:hover:after,
  .navbar-collapse > ul > li.active::after {
    top: 0;
    visibility: visible;
    opacity: 1;
    display: none;
  }


.navbar-collapse .btn-primary {
    margin-top: 5px;
    margin-bottom: 10px;
}

.corner-decoration-up {
    position: absolute;
    left: 0%;
    top: 0;
    z-index: 99;
    height: 146px;
    width: 131px;
}
.corner-decoration-up-2 {
    position: absolute;
    right: -5%;
    bottom: 0px;
    z-index: 99;
    /* height: 200px; */
    width: 131px;
}

  .aboutblock {
    border: none;
  }

  .aboutusSection:before {
    height: 80px;
    top: -70px;
  }

  .aboutusSection,
  .OverviewSection {
    padding: 30px 0;
    background-position: initial !important;
    background-attachment: initial !important;
  }

  .aboutusSection img {
    margin-top: 0px;
    width: 80%;
  }

  .about-right .col-md-6 {
    margin-top: 0px;
  }

  .mediaImgLink {
    margin-bottom: 20px;
  }

  .clientImg {
    text-align: center;
    border-left: 0px;
    display: block;
  }

  .keyIndicatorsSection .project-fig h3 {
    font-size: 32px;
    margin-bottom: 0;
  }

  .keyIndicatorsSection .project-fig {
    height: 260px;
  }

  .bannerSection {
    height: 280px;
  }

  .bannerSection .bannerSlideBlock {
    top: 10%;
  }

  .bannerSection .bannerSectionContainer {
    top: 0;
  }

  .bannerSection .bannerSlideBlock .bannerSlideCaptionTextWrapper h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 30px !important;
  }

  .bannerSection
    .bannerSlideBlock
    .bannerSlideCaption
    .bannerSlideCaptionInner
    p {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2px;
    letter-spacing: 0px;
  }

  .footerlogo img {
    height: 104px;
    width: 90%;
    margin: 0px 0px;
    text-align: center;
}
}

@media (max-width: 650px) {
  .navbar-toggle {
    margin-right: 0;
    border-color: transparent !important;
  }

  .founders {
    padding: 50px 0px;
    text-align: center;
    background-color: #f2f2f2;
    overflow: hidden;
  }

  .aboutSection {
    position: relative;
    clear: both;
    width: 100%;
    padding: 50px 10px 50px 10px;
    display: block;
    background: #ffffff;
    color: #111010;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .navigationBar {
    position: relative !important;
    height: auto;
    background: #fff;
  }

  .navigationBar:before {
    display: none;
  }

  .navbar-collapse > ul > li {
    margin: 2px 0;
    border-bottom: solid 1px #ddd;
    color: #000;
  }

  .navbar-brand {
    margin: 10px 0;
  }

  .navbar-nav {
    margin: 0;
    /* padding-top: 20px; */
  }

  .navbar-collapse {
    float: none;
    clear: both;
    padding: 0;
  }

  .navbar-toggle {
    margin-top: 30px;
  }

  .navbar-collapse > ul > li {
    height: auto;
  }

  .navbar-collapse > ul > li > ul {
    display: none;
    position: relative;
    width: 100%;
    top: 0;
    transition: none;
    visibility: visible;
    opacity: 1;
    left: 0;
  }

  .addressInfo h4,
  .footer h4 {
    margin-top: 20px;
  }

  .black-div img {
    width: 281px;
    margin-left: 29px;
  }

  .background-shape {
    margin-left: 37px;
    width: 262px;
    height: 230px;
    transform: rotate(22deg);
  }

  .img-02 {
    position: absolute;
    margin-top: 41px;
    width: 65%;
  }

  .col-xs-12 {
    padding: 15px;
  }
}

/* booking */

@media (max-width: 768px) {
  .booking-form {
    padding: 20px;
    margin-top: 50px;
  }
  h2 {
    font-size: 28px;
  }
  .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 24px;
  }
  .form-control {
    height: 40px;
    font-size: 14px;
  }

  #bannerSlider .owl-controls {
    position: absolute;
    width: auto;
    bottom: -3px;
    right: 0;
    left: 0;
    text-align: right;
    z-index: 2;
}


.bannerSection .bannerSlideCaptionInner {

display: block;
}
}

/* planning */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }

  .card img {
    width: 100%;
    border-radius: 0;
  }
}

/* about us */

@media (max-width: 991px) {
  .images-grid {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .big-image {
    height: 200px;
  }

  .small-image {
    height: 100px;
  }

  .corner-decoration {
    position: absolute;
    left: -4%;
    top: 0px;
    z-index: 99;
    height: 200px;
    width: 100px;
}
}

@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }

  .btn-custom {
    width: 100%;
    text-align: center;
  }
}


/* testimonial */
@media(max-width: 480px) {
  .testimonial-card {
    padding: 80px 20px 40px;
  }

  .quote-left,
  .quote-right {
    font-size: 40px;
  }

  .profile-img {
    width: 90px;
    height: 90px;
  }
}