@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&amp;family=Poppins:wght@400;500;600;700;800&amp;display=swap");
/* @import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Merienda:wght@300..900&display=swap');
@import url("animate.css");
@import url("owl.css");
@import url("swiper.min.css");
@import url("jquery.fancybox.min.css");
/* @import url("jquery-ui.css"); */
@import url("linear.css");
/* @import url("select2.min.css"); */
@import url("fontawesome.css");
@import url("flaticon.css");
@import url("tm-utility-classes.css");
:root {
  --theme-color-light: #ffffff;
  --theme-color-dark: #000000;
  --theme-color1: #57b33e;
  --theme-color2: #ff7029;
  --text-color: #54595f;
  --headings-color: #000000;
  --link-color: var(--theme-color-dark);
  --link-hover-color: var(--theme-color-dark);
  --text-font: "Open Sans", sans-serif;
  --title-font: "Poppins", sans-serif;
  --body-font-size: 16px;
  --body-line-height: 30px;
  --body-font-weight: 400;
  --line-height-heading-h1: 1.2em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 40px;
  --h2-font-size: 36px;
  --h3-font-size: 32px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 18px;
  --h1-font-weight: 700;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 700;
  --h5-font-weight: 600;
  --h6-font-weight: 600;
  --sec-title-subtitle-color: #a1a1a1;
  --sec-title-subtitle-font-size: 12px;
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 700;
  --sec-title-subtitle-line-height: 15px;
  --sec-title-color: var(--theme-color-dark);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: 700;
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #000000;
  --container-width: 1360px;
  --small-container-width: 1000px;
  --large-container-width: 1790px;
  --container-pt: 120px;
  --container-pb: 120px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p, .text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  letter-spacing: -0.01em;
}

/* -------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover, p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b, a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol, ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b, strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: var(--container-width);
  }
}
/*=== Default Form ===*/
.form-control, .input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}



/*** 

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.title a {
  color: inherit;
}

.color1 {
  color: var(--theme-color1);
}

.color2 {
  color: var(--theme-color2);
}

.color3 {
  color: var(--theme-color3);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 99;
  background-color: #ffffff;
}

.large-container {
  position: static;
  max-width: var(--large-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.dropdown-toggle::after {
  display: none;
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    font-size: 16px;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background-color: var(--theme-color1);
    z-index: 100;
    display: none;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .scroll-to-top:hover {
    background: var(--theme-color2);
    color: #ffffff;
  }
  
  .link-style-one {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-family: var(--title-font);
    color: var(--theme-color-dark);
  }
  .link-style-one:before {
    position: absolute;
    left: 0;
    right: 18px;
    bottom: 2px;
    height: 1px;
    background-color: var(--theme-color1);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .link-style-one i {
    position: relative;
    top: 1px;
    display: block;
    font-size: 14px;
    margin-left: 5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .link-style-one:hover {
    color: var(--theme-color1);
  }
  .link-style-one:hover:before {
    right: 100%;
  }
  
  /*=== List Style One ===*/
  .list-style-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
  }
  .list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: var(--theme-color-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
  }
  .list-style-one li i {
    margin-right: 10px;
    color: var(--theme-color-dark);
    font-size: 16px;
    line-height: 27px;
  }
  .list-style-one li a {
    display: block;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .list-style-one li a:hover {
    color: var(--theme-color1);
  }
  .list-style-one.light li {
    color: var(--theme-color-light);
  }
  .list-style-one.light li a {
    color: var(--theme-color-light);
  }
  .list-style-one.light i {
    color: var(--theme-color-light);
  }
  
  /*=== List Style Two ===*/
  .list-style-two {
    position: relative;
    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-wrap: wrap;
        flex-wrap: wrap;
  }
  .list-style-two li {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    padding-left: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 15px;
  }
  .list-style-two li i {
    position: absolute;
    left: 0px;
    top: 0px;
    color: var(--theme-color1);
    font-size: 12px;
    line-height: 24px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .list-style-two li a {
    display: inline-block;
    font-weight: inherit;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .list-style-two li a:hover {
    color: var(--theme-color1);
  }
  .list-style-two.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-style-two.two-column li {
    width: 50%;
  }
  @media (max-width: 767.98px) {
    .list-style-two.two-column li {
      width: 100%;
    }
  }
  
  .list-style-three {
    position: relative;
    padding: 0px 0;
  }
  .list-style-three li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--theme-color-dark);
    font-family: var(--title-font);
    font-weight: 600;
    line-height: 24px;
    font-size: 18px;
    letter-spacing: -0.01em;
    padding-left: 78px;
    margin-right: 30px;
    margin-bottom: 40px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .list-style-three li:hover i {
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
  }
  .list-style-three li i {
    position: absolute;
    top: 0;
    left: 0;
    width: 57px;
    height: 57px;
    line-height: 57px;
    display: block;
    color: var(--theme-color1);
    border-radius: 10px;
    font-size: 30px;
    margin-right: 19px;
    background-color: #f8f8f8;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
  }
  .list-style-three li a {
    display: block;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .list-style-three li a:hover {
    color: var(--theme-color1);
  }
  .list-style-three.list-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .list-style-three.list-vertical li {
    margin-bottom: 10px;
  }
  .list-style-three.light li {
    color: var(--theme-color-light);
  }
  .list-style-three.light li a {
    color: inherit;
  }
  .list-style-three.style-two li {
    color: var(--theme-color-light);
    margin-right: 0;
  }
  .list-style-three.style-two li:last-child:after {
    display: none;
  }
  .list-style-three.style-two li:after {
    width: 1px;
    height: 28px;
    margin-left: 20px;
    margin-right: 24px;
    background: #67687A;
    content: "";
  }
  .list-style-three.style-two li a {
    color: var(--theme-color-light);
  }
  .list-style-three.style-two li i {
    color: var(--theme-color-light);
    font-size: 18px;
  }
  
  /*=== List Style Four ===*/
  .list-style-four {
    position: relative;
    margin-bottom: 45px;
  }
  .list-style-four li {
    position: relative;
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0 12px 48px;
    letter-spacing: -0.01em;
    background-color: #e8e8e8;
  }
  .list-style-four li i {
    position: absolute;
    top: 15px;
    left: 28px;
    font-size: 16px;
    border-radius: 50%;
    color: var(--theme-color1);
    text-align: center;
  }
  .list-style-four li a {
    display: inline-block;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .list-style-four li a:hover {
    color: #ffffff;
  }
  .list-style-four.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-style-four.two-column li {
    width: 42%;
    margin-right: 20px;
  }
  @media (max-width: 767.98px) {
    .list-style-four.two-column li {
      width: 100%;
    }
  }
  
  /*Social Icon One*/
  .social-icon-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .social-icon-one li {
    position: relative;
    margin: 0 10px;
  }
  .social-icon-one li:first-child {
    margin-left: 0;
  }
  .social-icon-one li a {
    position: relative;
    display: block;
    line-height: 27px;
    text-align: center;
    font-size: 16px;
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .social-icon-one li a:hover {
    color: var(--theme-color1);
  }
  .social-icon-one.light li a {
    color: var(--theme-color-light);
  }
  .social-icon-one.light li a:hover {
    color: var(--theme-color2);
  }
  
  /*Social Icon Two*/
  .social-icon-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .social-icon-two li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 18px;
  }
  .social-icon-two li:first-child {
    margin-left: 0;
  }
  .social-icon-two li.title {
    font-size: 16px;
    font-weight: 700;
    color: black;
  }
  .social-icon-two li a {
    position: relative;
    display: block;
    height: 42px;
    width: 42px;
    line-height: 42px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background-color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .social-icon-two li a i {
    position: relative;
  }
  .social-icon-two li a::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: var(--theme-color2);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
  }
  .social-icon-two li a:hover {
    color: #fff;
  }
  .social-icon-two li a:hover:before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  
  .bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .bg-pattern-1 {
    background-image: url(../image/img/icons/pattern-1.png);
  }
  
  .bg-pattern-2 {
    background-image: url(../image/img/icons/pattern-2.png);
  }
  
  .bg-pattern-3 {
    background-image: url(../image/img/icons/pattern-3.jpg);
  }
  
  .bg-pattern-4 {
    background-image: url(../image/img/icons/pattern-4.jpg);
  }
  
  .bg-pattern-5 {
    background-image: url(../image/img/resource/banner-fencing.png);
    max-width: 560px;
    max-height: 280px;
    bottom: 60px;
    top: unset;
    opacity: 0.25;
    left: 8%;
  }
  
  .devider {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 80%;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  @media (max-width: 1199.98px) {
    .devider {
      width: 100%;
    }
  }
  
  /***==================================
      Range Slider One
  ==================================***/
  .range-slider-one {
    position: relative;
    margin-bottom: 5px;
  }
  .range-slider-one .range-amount {
    position: absolute !important;
    right: 0;
    top: -35px;
    background: none !important;
    text-align: right;
    border: 0 !important;
    padding: 0 !important;
    max-width: 75px;
    font-size: 18px !important;
    color: #ffffff !important;
    width: auto !important;
    height: auto !important;
  }
  .range-slider-one .ui-widget.ui-widget-content {
    height: 10px;
    border: none;
    border-radius: 10px;
    background: var(--theme-color-dark);
  }
  .range-slider-one .ui-slider .ui-slider-range {
    top: 0px;
    height: 10px;
    background: var(--theme-color-light);
  }
  .range-slider-one .ui-state-default {
    top: -5px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    cursor: pointer;
    border: 3px solid #0b3b5e;
    border-radius: 20px;
  }
  .range-slider-one .ui-widget-content .ui-state-default {
    top: -5px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    cursor: pointer;
    border: 3px solid #0b3b5e;
    border-radius: 20px;
  }
  .range-slider-one .ui-slider-horizontal .ui-slider-handle:nth-child(2) {
    margin-left: 0 !important;
  }
  .range-slider-one .ui-slider-horizontal .ui-slider-handle:nth-child(3) {
    margin-left: -17px !important;
  }
  
  /*======================
      Tabs Box
  ======================*/
  .tabs-box {
    position: relative;
  }
  
  .tabs-box .tab {
    display: none;
  }
  
  .tabs-box .active-tab {
    display: block;
  }
  
  .play-btn {
    position: relative;
  }
  .play-btn:hover .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-dark);
  }
  .play-btn .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--theme-color1);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .play-btn .circle-text img {
    position: relative;
    display: inline-block;
    -webkit-animation: fa-spin 60s infinite linear;
            animation: fa-spin 60s infinite linear;
  }
  
  /*======================
      Media Play Button 
  ======================*/
  .play-now {
    position: relative;
    display: block;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .play-now:hover .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
  }
  .play-now .icon {
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    background-color: #ffffff;
    color: var(--theme-color-dark);
    z-index: 1;
    font-size: 22px;
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
            box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .play-now .ripple,
  .play-now .ripple:before,
  .play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 79px;
    width: 79px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
            animation: ripple 3s infinite;
  }
  .play-now .ripple.light,
  .play-now .ripple:before.light,
  .play-now .ripple:after.light {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
            box-shadow: 0 0 0 0 rgb(255, 255, 255);
  }
  .play-now .ripple.light:before, .play-now .ripple.light:after,
  .play-now .ripple:before.light:before,
  .play-now .ripple:before.light:after,
  .play-now .ripple:after.light:before,
  .play-now .ripple:after.light:after {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
            box-shadow: 0 0 0 0 rgb(255, 255, 255);
  }
  .play-now .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
  }
  .play-now .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
  }
  
  @-webkit-keyframes ripple {
    70% {
      -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
      box-shadow: 0 0 0 50px 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 50px rgba(255, 255, 255, 0);
      box-shadow: 0 0 0 50px 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);
    }
  }
  .play-now-two {
    height: 150px;
    width: 150px;
    background-color: rgba(21, 21, 21, 0.5);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 34px;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-animation: zoom-one 3s infinite linear;
            animation: zoom-one 3s infinite linear;
  }
  .play-now-two:hover {
    color: #ff9205;
    background-color: #ffffff;
  }
  
  .skills {
    position: relative;
    margin-bottom: 8px;
  }
  .skills .skill-item {
    position: relative;
    margin-bottom: 35px;
  }
  .skills .skill-item:last-child {
    margin-bottom: 0px;
  }
  .skills .skill-item .skill-header {
    position: relative;
    margin-bottom: 12px;
  }
  .skills .skill-item .skill-header .skill-title {
    font-size: 14px;
    color: var(--theme-color-light);
    font-weight: 700;
    font-family: var(--title-font);
  }
  .skills .skill-item .skill-bar {
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 6px;
  }
  .skills .skill-item .skill-bar .bar-inner {
    position: relative;
    padding: 3px;
    width: 100%;
    height: 6px;
  }
  .skills .skill-item .skill-bar .bar-inner .bar {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 12px;
    width: 0px;
    border: 1px solid var(--theme-color-light);
    -webkit-transition: all 3000ms ease;
    transition: all 3000ms ease;
  }
  .skills .skill-item .skill-bar .bar-inner .bar::before {
    position: absolute;
    top: 3px;
    right: 5px;
    bottom: 2px;
    left: 4px;
    background-color: var(--theme-color2);
    content: "";
  }
  .skills .skill-item .skill-bar .bar-inner .skill-percentage {
    position: absolute;
    right: 0;
    bottom: 100%;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 16px;
    padding: 5px 7px;
    font-weight: 500;
    color: var(--theme-color-light);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    text-align: center;
  }
  
  /*======================
      Contact Info Button 
  ======================*/
  .info-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    font-weight: 700;
    line-height: 20px;
    font-family: var(--title-font);
  }
  .info-btn small {
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-color-dark);
    text-transform: none;
  }
  .info-btn strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color-dark);
  }
  .info-btn strong:hover {
    color: var(--theme-color1);
  }
  .info-btn .icon {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    font-size: 14px;
    line-height: 34px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--theme-color2);
    background: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
  }
  .info-btn:hover .icon {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  
  .info-btn-two {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 15px;
    padding-left: 97px;
    text-align: left;
    font-weight: 700;
    line-height: 20px;
    font-family: var(--title-font);
  }
  .info-btn-two:hover .icon {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .info-btn-two small {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #726f84;
    font-family: var(--text-font);
    margin-bottom: 8px;
  }
  @media (max-width: 991.98px) {
    .info-btn-two small {
      margin-bottom: 15px;
    }
  }
  .info-btn-two strong {
    font-size: 18px;
    font-family: var(--text-font);
    font-weight: 600;
    color: var(--theme-color-dark);
  }
  .info-btn-two strong:hover {
    color: var(--theme-color1);
  }
  .info-btn-two .icon {
    position: absolute;
    left: 0;
    top: -10px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    border-radius: 50%;
    background-color: var(--theme-color2);
    color: var(--theme-color-light);
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .info-btn-two:hover {
    color: var(--theme-color1);
  }
  .info-btn-two.light small,
  .info-btn-two.light strong {
    color: var(--theme-color-light);
  }
  
  .info-btn-three {
    position: relative;
    display: block;
    padding-left: 60px;
  }
  .info-btn-three:hover .icon {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .info-btn-three .icon {
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 1em;
    font-size: 36px;
    color: var(--theme-color2);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .info-btn-three small {
    position: relative;
    display: block;
    color: var(--theme-color-dark);
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.01em;
  }
  .info-btn-three strong {
    position: relative;
    display: block;
    color: var(--theme-color-dark);
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.01em;
  }
  .info-btn-three.light small,
  .info-btn-three.light strong {
    color: var(--theme-color-light);
  }
  
  /*========================
    Select2 Dropdown Plugin
  ========================*/
  .select2-dropdown {
    border: 1px solid #eee;
  }
  
  .select2-results__option {
    padding: 0 10px;
    color: #7c858c;
    border: 0;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #7c858c;
    padding-left: 0;
  }
  
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--theme-color1);
  }
  
  .select2-container--default .select2-search--dropdown .select2-search__field {
    height: 30px;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    bottom: 1px;
    height: auto;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
    color: #767676;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    position: relative;
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
  }
  
  .select2-container--default .select2-selection--single {
    border-radius: 0;
  }
  
  .default-navs .owl-next,
  .default-navs .owl-prev {
    display: block;
    margin: 0px 5px;
    height: 65px;
    width: 65px;
    color: var(--theme-color1);
    border-radius: 50%;
    -webkit-box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffff;
    font-size: 16px;
    line-height: 63px;
    font-weight: 700;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .default-navs .owl-next span,
  .default-navs .owl-prev span {
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .default-navs .owl-next:hover,
  .default-navs .owl-prev:hover {
    -webkit-box-shadow: 0;
            box-shadow: 0;
    border: 1px solid var(--theme-color2);
  }
  
  .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .owl-dots .owl-dot {
    height: 8px;
    width: 7px;
    border: 1px solid #fff;
    background-color: transparent;
    margin: 0 5px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 50%;
  }
  .owl-dots .owl-dot.active {
    background-color: var(--theme-color1);
    border-radius: 50%;
    border: 1px solid var(--theme-color1);
  }
  
  .custom-navs .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .custom-navs .owl-nav .owl-prev,
  .custom-navs .owl-nav .owl-next {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    width: 87px;
    padding-left: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
  }
  .custom-navs .owl-nav .owl-prev:before,
  .custom-navs .owl-nav .owl-next:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background-color: var(--theme-color1);
    opacity: 0.1;
    content: "";
    border-radius: 50px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
  }
  .custom-navs .owl-nav .owl-prev:hover,
  .custom-navs .owl-nav .owl-next:hover {
    padding: 0 17px;
  }
  .custom-navs .owl-nav .owl-prev:hover:before,
  .custom-navs .owl-nav .owl-next:hover:before {
    width: 100%;
  }
  .custom-navs .owl-nav .owl-next {
    padding-left: 0;
    padding-right: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .custom-navs .owl-nav .owl-next:before {
    left: auto;
    right: 0;
  }
  
  .disable-navs .owl-nav {
    display: none;
  }
  
  .disable-navs .owl-dots {
    display: none;
  }
  
  /*==========================
      Nav Style One
  ===========================*/
  .nav-style-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9;
  }
  .nav-style-one .next,
  .nav-style-one .prev {
    margin-right: 38px;
    padding: 18px 25px;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-style-one .next .icon,
  .nav-style-one .prev .icon {
    position: relative;
    display: inline-block;
  }
  .nav-style-one .next .icon:before,
  .nav-style-one .prev .icon:before {
    position: absolute;
    top: 0;
    margin-top: -20px;
    right: -25px;
    height: 52px;
    width: 52px;
    border: 1px dotted #fff;
    border-radius: 100px;
    content: "";
    z-index: -1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .nav-style-one .next:hover .icon:before,
  .nav-style-one .prev:hover .icon:before {
    background-color: rgba(255, 255, 255, 0.15);
    width: 125px;
  }
  .nav-style-one .prev {
    margin-right: 0;
    padding-left: 25px;
    padding-right: 0;
  }
  .nav-style-one .prev .icon:before {
    left: -25px;
    right: auto;
  }
  .nav-style-one .swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  .nav-style-one.dark .next .icon:before,
  .nav-style-one.dark .prev .icon:before {
    border: 1px solid #797979;
  }
  
  /*==========================
      Default Tabs
  ===========================*/
  .default-tabs {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .default-tabs .tab-buttons {
    position: relative;
    margin-bottom: 30px;
  }
  
  .default-tabs .tab-buttons li {
    position: relative;
    float: left;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 35px;
    color: var(--theme-color1);
    line-height: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    cursor: pointer;
    margin-right: 20px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .default-tabs .tab-buttons li:last-child {
    margin-right: 0;
  }
  
  .default-tabs .tab-buttons li.active-btn {
    background: var(--gradient-1);
    color: #ffffff;
  }
  
  .default-tabs .tabs-content {
    position: relative;
    width: 100%;
  }
  
  .blockquote-style-one {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: var(--theme-color-dark);
    padding: 0 0 0 25px;
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-family: var(--title-font);
    font-weight: 600;
    margin-bottom: 30px;
  }
  .blockquote-style-one:before {
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    z-index: 2;
    background-color: var(--theme-color1);
    content: "";
  }
  
  .before_none:before {
    display: none;
  }
  
  .after_none:after {
    display: none;
  }
  
  .theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: var(--title-font);
  }
  .theme-btn .btn-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  /*Btn Style One*/
  .btn-style-one {
    position: relative;
    font-size: 14px;
    line-height: 27px;
    padding: 17px 41px;
    font-weight: 700;
    overflow: hidden;
    color: var(--theme-color-light);
    background: var(--theme-color1);
    /*text-transform: uppercase;*/
  }
  .btn-style-one i {
    position: relative;
    display: block;
    margin-left: 5px;
  }
  .btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--theme-color-dark);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    pointer-events: none;
    -webkit-transform-origin: top right;
            transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  .btn-style-one .btn-title {
    position: relative;
  }
  .btn-style-one .btn-title:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    background-color: var(--theme-color-light);
  }
  .btn-style-one:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }
  .btn-style-one:hover {
    color: var(--theme-color-light);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .btn-style-one.dark-bg {
    background-color: var(--theme-color-dark);
  }
  .btn-style-one.dark-bg::before {
    background-color: var(--theme-color2);
  }
  .btn-style-one.light-bg {
    background-color: var(--theme-color-light);
    color: var(--theme-color-dark);
  }
  .btn-style-one.light-bg:hover {
    color: var(--theme-color-light);
  }
  .btn-style-one.light-bg::before {
    background-color: var(--theme-color-dark);
  }
  .btn-style-one.bg-orange {
    background-color: var(--theme-color2);
  }
  .btn-style-one.bg-orange:before {
    background-color: var(--theme-color1);
  }
  .btn-style-one.hover-light:hover {
    color: var(--theme-color2);
  }
  .btn-style-one.hover-light:before {
    background-color: var(--theme-color-light);
  }
  .btn-style-one.hover-dark:hover {
    color: var(--theme-color-light);
  }
  .btn-style-one.hover-dark:before {
    background-color: var(--theme-color-dark);
  }
  .btn-style-one.hover-one:hover {
    color: var(--theme-color-light);
  }
  .btn-style-one.hover-one:before {
    background-color: var(--theme-color1);
  }
  
.bounce-y {
    -webkit-animation: bounce-y 10s infinite linear;
            animation: bounce-y 10s infinite linear;
  }
  
  .bounce-x {
    -webkit-animation: bounce-x 10s infinite linear;
            animation: bounce-x 10s infinite linear;
  }
  
  .zoom-one {
    -webkit-animation: zoom-one 10s infinite linear;
            animation: zoom-one 10s infinite linear;
  }
  
  .zoom-two {
    -webkit-animation: zoom-two 5s infinite linear;
            animation: zoom-two 5s infinite linear;
  }
  
  @-webkit-keyframes float {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  
  @keyframes float {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @-webkit-keyframes bounce-y {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-30px);
              transform: translateY(-30px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes bounce-y {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-30px);
              transform: translateY(-30px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @-webkit-keyframes bounce-x {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    50% {
      -webkit-transform: translateX(30px);
              transform: translateX(30px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes bounce-x {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    50% {
      -webkit-transform: translateX(30px);
              transform: translateX(30px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @-webkit-keyframes zoom-one {
    0% {
      -webkit-transform: scale(0.95);
              transform: scale(0.95);
    }
    50% {
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
    }
    100% {
      -webkit-transform: scale(0.95);
              transform: scale(0.95);
    }
  }
  @keyframes zoom-one {
    0% {
      -webkit-transform: scale(0.95);
              transform: scale(0.95);
    }
    50% {
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
    }
    100% {
      -webkit-transform: scale(0.95);
              transform: scale(0.95);
    }
  }
  @-webkit-keyframes zoom-two {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.95);
              transform: scale(0.95);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes zoom-two {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.95);
              transform: scale(0.95);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  .overlay-anim {
    position: relative;
  }
  .overlay-anim:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
  }
  .overlay-anim:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
  }
  
  .overlay-anim-two {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
  }
  .overlay-anim-two:hover:after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
  }
  .overlay-anim-two:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  
  .circle {
    position: fixed;
    width: 10px;
    height: 10px;
    left: -10px;
    top: -10px;
    border-radius: 100%;
    z-index: 1;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  @supports (mix-blend-mode: difference) {
    .circle {
      background-color: white;
      mix-blend-mode: difference;
    }
  }
  @media only screen and (max-width: 1023px) {
    .circle {
      display: none !important;
    }
  }
  
  .circle-follow {
    position: fixed;
    mix-blend-mode: difference;
    width: 30px;
    height: 30px;
    left: -21px;
    top: -21px;
    border-radius: 100%;
    z-index: 1;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  @supports (mix-blend-mode: difference) {
    .circle-follow {
      border: 1px solid #fff;
      mix-blend-mode: difference;
    }
  }
  @media only screen and (max-width: 1023px) {
    .circle-follow {
      display: none !important;
    }
  }
  
  /* Animate 1 */
  .owl-carousel .animate-7,
  .owl-carousel .animate-6,
  .owl-carousel .animate-5,
  .owl-carousel .animate-4,
  .owl-carousel .animate-3,
  .owl-carousel .animate-2,
  .owl-carousel .animate-1 {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .owl-carousel .animate-x {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .owl-carousel .active .animate-7,
  .owl-carousel .active .animate-6,
  .owl-carousel .active .animate-5,
  .owl-carousel .active .animate-4,
  .owl-carousel .active .animate-3,
  .owl-carousel .active .animate-2,
  .owl-carousel .active .animate-1 {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .owl-carousel .active .animate-2 {
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }
  .owl-carousel .active .animate-3 {
    -webkit-transition-delay: 600ms;
            transition-delay: 600ms;
  }
  .owl-carousel .active .animate-4 {
    -webkit-transition-delay: 900ms;
            transition-delay: 900ms;
  }
  .owl-carousel .active .animate-5 {
    -webkit-transition-delay: 1200ms;
            transition-delay: 1200ms;
  }
  .owl-carousel .active .animate-6 {
    -webkit-transition-delay: 1500ms;
            transition-delay: 1500ms;
  }
  .owl-carousel .active .animate-7 {
    -webkit-transition-delay: 1800ms;
            transition-delay: 1800ms;
  }
  
  /*** 
  
  ====================================================================
    Search Popup
  ====================================================================
  
  ***/
  .search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    overflow: hidden;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .search-popup .search-back-drop {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--theme-color-dark);
    opacity: 0.95;
  }
  .search-popup .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 26px;
    color: var(--theme-color-light);
    z-index: 3;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .search-popup .search-inner {
    position: relative;
    display: block;
    top: 40%;
    height: auto;
    z-index: 1;
    width: calc(100% - 60px);
    max-width: 800px;
    margin: auto;
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .search-popup .form-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .search-popup .form-group input[type=search],
  .search-popup .form-group input[type=text] {
    position: relative;
    display: block;
    line-height: 20px;
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: 1px solid #e1e6dc;
    padding: 15px 20px;
    color: #707070;
    background: #ffffff;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .search-popup .form-group input[type=search]:focus,
  .search-popup .form-group input[type=text]:focus {
    border-color: var(--border-theme-color2);
  }
  .search-popup .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    display: block;
    font-size: 18px;
    color: var(--theme-color-dark);
    line-height: 40px;
    border-radius: 5px;
    font-weight: normal;
    background: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .search-popup .form-group button:hover {
    color: var(--theme-color-dark);
  }
  .search-popup textarea::-webkit-input-placeholder, .search-popup input::-webkit-input-placeholder {
    color: inherit;
  }
  .search-popup textarea::-moz-placeholder, .search-popup input::-moz-placeholder {
    color: inherit;
  }
  .search-popup textarea:-ms-input-placeholder, .search-popup input:-ms-input-placeholder {
    color: inherit;
  }
  .search-popup textarea::-ms-input-placeholder, .search-popup input::-ms-input-placeholder {
    color: inherit;
  }
  .search-popup textarea::placeholder,
  .search-popup input::placeholder {
    color: inherit;
  }
  
  .moblie-search-active .search-popup {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
    border-radius: 0%;
  }
  .moblie-search-active .search-popup .search-inner {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }
  

/*** 

====================================================================
Main Header
====================================================================

***/
.header-span {
    position: relative;
    height: 110px;
    display: block;
    width: 100%;
  }
  
  .main-header {
    position: relative;
    width: 100%;
    z-index: 999;
  }
  
  .header-top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-top .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .header-top .top-left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-top .top-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-top .useful-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
  }
  .header-top .useful-links li {
    position: relative;
    margin-right: 30px;
    font-size: 12px;
    font-weight: 500;
    color: #bdbdbd;
    line-height: 20px;
    font-family: var(--title-font);
  }
  .header-top .useful-links li a {
    color: #bdbdbd;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .header-top .useful-links li a:hover {
    color: var(--theme-color1);
  }
  
  .main-header .logo {
    position: relative;
    display: block;
  }
  .main-header .logo img {
    max-width: 100%;
    height: auto;
  }
  .main-header .main-box {
    position: relative;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .main-header .main-box .nav-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  
  .main-menu {
    position: relative;
  }
  @media only screen and (max-width: 1023px) {
    .main-menu {
      display: none;
    }
  }
  
  .main-menu .navbar-header {
    display: none;
  }
  
  .main-menu .navbar-collapse {
    padding: 0px;
  }
  
  .main-menu .navigation {
    position: relative;
    margin: 0px;
  }
  
  .main-menu .navigation > li {
    position: relative;
    float: left;
    padding: 20px 0px;
    margin-right: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .main-menu .navigation > li:last-child {
    margin-right: 0;
  }
  .main-menu .navigation > li:before {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 10px;
    height: 2px;
    width: 0%;
    background-color: var(--theme-color1);
    z-index: 3;
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .main-menu .navigation > li:hover:before, .main-menu .navigation > li.current:before {
    left: 0;
    width: 100%;
  }
  .main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    color: var(--theme-color-dark);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: var(--title-font);
    text-transform: uppercase;
  }
  .main-menu .navigation > li > a .icon {
    position: relative;
    font-size: 20px;
    line-height: 24px;
    margin-left: 10px;
  }
  .main-menu .navigation > li.dropdown > a {
    padding-right: 14px;
    margin-right: -14px;
  }
  .main-menu .navigation > li.dropdown > a:after {
    content: "\f067";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 20px;
    display: block;
    line-height: 24px;
    font-size: 12px;
    z-index: 5;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-top: -2px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .main-menu .navigation > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
    margin-top: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 280px;
    z-index: 100;
    padding: 10px 0 0;
    background-color: #ffffff;
    margin-top: 30px;
    opacity: 0;
    display: none;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  }
  .main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
  }
  .main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ebf1f5;
  }
  .main-menu .navigation > li > ul > li:last-child {
    border-bottom: none;
  }
  .main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 0px;
    line-height: 29px;
    font-weight: 400;
    font-size: 16px;
    color: var(--theme-color-dark);
    text-align: left;
    margin: 0 30px;
    text-transform: capitalize;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
  }
  .main-menu .navigation > li > ul > li:hover > a {
    color: var(--theme-color1);
  }
  .main-menu .navigation > li > ul > li.dropdown > a:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f105";
    position: absolute;
    right: 0;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 11px;
    font-weight: 900;
    z-index: 5;
  }
  .main-menu .navigation > li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0px;
    margin-top: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 220px;
    z-index: 100;
    display: none;
    background-color: var(--theme-color-light);
    opacity: 0;
    padding: 10px 0 0;
    margin-top: 10px;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  }
  .main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    border-bottom: 1px solid #ebf1f5;
    width: 100%;
  }
  .main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
  }
  .main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 0;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    color: var(--theme-color-dark);
    text-align: left;
    margin: 0 30px;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--theme-color1);
  }
  
  .main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid var(--theme-color-light);
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-color-light);
    cursor: pointer;
    z-index: 5;
    display: none;
  }
  
  .main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 0;
  }
  
  .main-header .ui-btn-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .main-header .ui-btn {
    position: relative;
    display: block;
    line-height: 30px;
    text-align: center;
    background: none;
    font-size: 22px;
    color: var(--theme-color-dark);
    margin-left: 15px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .main-header .ui-btn:hover {
    color: var(--theme-color1);
  }
  
  .main-header .cart-btn {
    position: relative;
    margin: 0;
    color: var(--theme-color-dark);
    margin-right: 30px;
    text-align: center;
  }
  .main-header .cart-btn:hover {
    color: var(--theme-color1);
  }
  .main-header .cart-btn .count {
    position: absolute;
    top: -11px;
    right: -11px;
    height: 21px;
    width: 21px;
    line-height: 21px;
    font-size: 12px;
    border-radius: 50%;
    color: #ffffff;
    background-color: var(--theme-color2);
    text-align: center;
  }
  
  .contact-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-list li {
    position: relative;
    padding-left: 65px;
    margin-left: 35px;
  }
  .contact-list li .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
    color: var(--theme-color1);
  }
  .contact-list li .title {
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--text-font);
    margin-bottom: 2px;
  }
  .contact-list li .text {
    font-size: 16px;
    line-height: 24px;
    color: #cecece;
  }
  .contact-list li .text a {
    color: inherit;
  }
  
  

  /*** 
  
  ====================================================================
      Header Style Two
  ====================================================================
  
  ***/
  .header-style-two {
    position: relative;
    background-color: var(--theme-color-light);
  }
  .header-style-two .header-top {
    position: relative;
    border-bottom: 1px solid #ebebeb;
  }
  @media (max-width: 991.98px) {
    .header-style-two .header-top {
      display: none;
    }
  }
  .header-style-two .header-top .inner-container {
    margin-left: 405px;
    padding-left: 60px;
    padding-right: 38px;
    background: #f7f7f7;
  }
  @media only screen and (max-width: 1699px) {
    .header-style-two .header-top .inner-container {
      margin-left: 360px;
    }
  }
  @media (max-width: 1199.98px) {
    .header-style-two .header-top .inner-container {
      margin-left: 150px;
      padding-right: 20px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  .header-style-two .header-top .inner-container .list-style-one {
    padding: 12px 0;
  }
  .header-style-two .header-top .inner-container .list-style-one li {
    font-size: 12px;
    font-weight: 400;
    margin-right: 40px;
  }
  .header-style-two .header-top .inner-container .list-style-one li i {
    font-size: 16px;
    color: var(--theme-color1);
  }
  .header-style-two .header-top .inner-container .list-style-one li,
  .header-style-two .header-top .inner-container .list-style-one li a {
    font-size: 15px;
    font-weight: 400;
  }
  .header-style-two .header-top .inner-container .top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-style-two .header-top .inner-container .top-right .info-btn {
    margin-right: 40px;
  }
  @media only screen and (max-width: 1299px) {
    .header-style-two .header-top .inner-container .top-right .info-btn {
      display: none;
    }
  }
  .header-style-two .header-top .inner-container .top-right .info-btn .icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
  }
  .header-style-two .header-top .inner-container .top-right .info-btn small,
  .header-style-two .header-top .inner-container .top-right .info-btn strong {
    margin-left: 5px;
  }
  @media (max-width: 1399.98px) {
    .header-style-two .header-top .inner-container .top-right .social-icon-one {
      display: none;
    }
  }
  .header-style-two .header-top .inner-container .top-right .social-icon-one a {
    color: #54595f;
  }
  .header-style-two .header-top .inner-container .top-right .social-icon-one a:hover {
    color: var(--theme-color1);
  }
  .header-style-two .header-lower .logo-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -51px;
    height: 134px;
    min-width: 366px;
    margin-right: 100px;
  }
  @media only screen and (max-width: 1699px) {
    .header-style-two .header-lower .logo-box {
      margin-right: 55px;
    }
  }
  @media (max-width: 1199.98px) {
    .header-style-two .header-lower .logo-box {
      min-width: 250px;
    }
  }
  @media (max-width: 991.98px) {
    .header-style-two .header-lower .logo-box {
      margin-top: 0;
      height: 80px;
      padding: 0 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      min-width: auto;
    }
  }
  .header-style-two .header-lower .logo-box:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #f7f7f7;
    content: "";
  }
  @media (max-width: 991.98px) {
    .header-style-two .header-lower .logo-box:before {
      display: none;
    }
  }
  .header-style-two .header-lower .main-box .nav-outer {
    display: block;
  }
  @media (max-width: 991.98px) {
    .header-style-two .header-lower .main-box .nav-outer {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
    }
  }
  .header-style-two .header-lower .main-box .nav-outer .navigation > li {
    padding: 29px 0px;
  }
  .header-style-two .header-lower .main-box .outer-box {
    margin-right: 25px;
  }
  @media (max-width: 1199.98px) {
    .header-style-two .header-lower .main-box .outer-box .cart-btn {
      display: none;
    }
  }
  @media (max-width: 575.98px) {
    .header-style-two .header-lower .main-box .outer-box .search-btn {
      display: none;
    }
  }
  .header-style-two .header-lower .main-box .outer-box .divider {
    height: 45px;
    width: 1px;
    background-color: #e3dbd8;
    margin: 0 21px;
  }
  @media (max-width: 1199.98px) {
    .header-style-two .header-lower .main-box .outer-box .divider {
      display: none;
    }
  }
  .header-style-two .header-lower .main-box .theme-btn {
    line-height: 32px;
    padding: 25px 20px;
    min-width: 250px;
    height: 100%;
  }
  @media (max-width: 1399.98px) {
    .header-style-two .header-lower .main-box .theme-btn {
      display: none;
    }
  }
  
  /*** 
  
  ====================================================================
      Header Style three
  ====================================================================
  
  ***/
  .header-style-three {
    position: relative;
  }
  .header-style-three .header-top {
    position: relative;
    background-color: var(--theme-color1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  @media (max-width: 991.98px) {
    .header-style-three .header-top {
      display: none;
    }
  }
  .header-style-three .header-top .inner-container {
    margin-left: 405px;
    padding-left: 60px;
    padding-right: 36px;
  }
  @media (max-width: 1399.98px) {
    .header-style-three .header-top .inner-container {
      margin-left: 360px;
    }
  }
  @media (max-width: 1199.98px) {
    .header-style-three .header-top .inner-container {
      margin-left: 160px;
      padding-right: 20px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  .header-style-three .header-top .inner-container .list-style-one {
    padding: 12px 0;
  }
  .header-style-three .header-top .inner-container .list-style-one li {
    font-size: 12px;
    font-weight: 400;
    margin-right: 45px;
    color: var(--theme-color-light);
  }
  .header-style-three .header-top .inner-container .list-style-one li i {
    color: var(--theme-color-light);
    font-size: 12px;
  }
  .header-style-three .header-top .inner-container .list-style-one li a {
    font-weight: 400;
    color: var(--theme-color-light);
  }
  @media (max-width: 1399.98px) {
    .header-style-three .header-top .inner-container .social-icon-one {
      display: none;
    }
  }
  .header-style-three .header-lower .logo-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -51px;
    height: 134px;
    min-width: 366px;
    margin-right: 100px;
  }
  @media (max-width: 1399.98px) {
    .header-style-three .header-lower .logo-box {
      margin-right: 55px;
    }
  }
  @media (max-width: 1199.98px) {
    .header-style-three .header-lower .logo-box {
      min-width: 250px;
    }
  }
  @media (max-width: 991.98px) {
    .header-style-three .header-lower .logo-box {
      margin-top: 0;
      height: 80px;
      padding: 0 20px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      min-width: auto;
    }
  }
  .header-style-three .header-lower .logo-box:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #f7f7f7;
    content: "";
  }
  @media (max-width: 991.98px) {
    .header-style-three .header-lower .logo-box:before {
      display: none;
    }
  }
  .header-style-three .main-box .nav-outer {
    display: block;
  }
  .header-style-three .main-box .nav-outer .navigation > li {
    padding: 29px 0px;
  }
  .header-style-three .main-box .outer-box {
    margin-right: 25px;
  }
  .header-style-three .main-box .outer-box .info-btn-three {
    padding-left: 45px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 25px;
  }
  @media only screen and (max-width: 1699px) {
    .header-style-three .main-box .outer-box .info-btn-three {
      display: none;
    }
  }
  .header-style-three .main-box .outer-box .info-btn-three .icon {
    top: 0;
    color: var(--theme-color1);
  }
  .header-style-three .main-box .outer-box .info-btn-three small {
    font-family: var(--text-font);
    color: #4c4d56;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: none;
  }
  .header-style-three .main-box .outer-box .info-btn-three strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0c0f15;
  }
  .header-style-three .main-box .outer-box .divider {
    height: 45px;
    width: 1px;
    background-color: #e3dbd8;
    margin: 0 21px;
  }
  @media (max-width: 1199.98px) {
    .header-style-three .main-box .outer-box .divider {
      display: none;
    }
  }
  .header-style-three .main-box .outer-box .cart-btn {
    margin-right: 40px;
  }
  @media (max-width: 1199.98px) {
    .header-style-three .main-box .outer-box .cart-btn {
      display: none;
    }
  }
  @media (max-width: 575.98px) {
    .header-style-three .main-box .outer-box .search-btn {
      display: none;
    }
  }
  .header-style-three .main-box .outer-box .theme-btn {
    line-height: 31px;
    padding: 16px 32px;
  }
  @media (max-width: 1399.98px) {
    .header-style-three .main-box .outer-box .theme-btn {
      display: none;
    }
  }
  
  /*** 
  
  ====================================================================
      Sticky Header
  ====================================================================
  
  ***/
  .sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: 99999;
    background: #ffffff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .sticky-header.fixed-header {
    opacity: 1;
    z-index: 9999;
    visibility: visible;
  }
  
  .sticky-header .logo {
    padding: 10px 0;
  }
  .sticky-header .logo img {
    max-height: 40px;
  }
  .sticky-header .nav-outer {
    position: relative;
    background: none;
  }
  .sticky-header .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .sticky-header .main-menu .navigation > li {
    margin: 0;
    margin-left: 60px;
    padding: 20px 0;
  }
  
  .sticky-header .main-menu .navigation > li.current > a,
  .sticky-header .main-menu .navigation > li:hover > a {
    color: var(--theme-color1);
  }
  
  .sticky-header .outer-box,
  .sticky-header .navbar-header {
    display: none;
  }
  
  .sticky-header .mobile-nav-toggler {
    color: var(--theme-color-dark);
  }
  .main-menu .navigation > li > ul{
    max-height: 68vh;
    overflow-y: auto;
  }
  @media only screen and (min-width: 768px) {
    .main-menu .navigation > li > ul,
    .main-menu .navigation > li > ul > li > ul {
      display: block !important;
      visibility: hidden;
      opacity: 0;
    }
  }
  /*** 
  
  ====================================================================
        Mobile Menu
  ====================================================================
  
  ***/
  .mobile-nav-toggler {
    position: relative;
    font-size: 28px;
    line-height: 20px;
    cursor: pointer;
    color: var(--theme-color1);
    display: none;
    top: -3px;
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
    margin-left: 15px;
  }
  @media (max-width: 991.98px) {
    .mobile-nav-toggler {
      display: block;
    }
  }
  
  .mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
  }
  .mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
  }
  .mobile-menu .upper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
  }
  .mobile-menu .close-btn {
    position: relative;
    top: 0px;
    right: -5px;
    text-align: center;
    font-size: 18px;
    color: var(--theme-color1);
    height: 30px;
    width: 30px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .mobile-menu .close-btn:hover {
    opacity: 0.5;
  }
  .mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    width: 100%;
  }
  .mobile-menu .nav-logo img {
    max-height: 50px;
  }
  .mobile-menu .menu-box {
    position: relative;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--theme-color-light);
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  
  .mobile-menu-visible {
    overflow: hidden;
  }
  .mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease 200ms;
    transition: all 0.4s ease 200ms;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .mobile-menu-visible .scroll-to-top {
    opacity: 0;
    visibility: hidden;
  }
  
  .mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .mobile-menu .navigation li > ul > li:last-child {
    border-bottom: none;
  }
  .mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--theme-color-dark);
    font-weight: 400;
    text-transform: capitalize;
  }
  .mobile-menu .navigation li:hover > a, .mobile-menu .navigation li.current > a {
    color: var(--theme-color1);
  }
  .mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: var(--theme-color-dark);
    cursor: pointer;
    z-index: 5;
  }
  .mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
    content: "\f106";
  }
  .mobile-menu .navigation li.logo, .mobile-menu .navigation li.logo-box {
    display: none;
  }
  
  .mobile-menu .navigation li > ul,
  .mobile-menu .navigation li > ul > li > ul {
    display: none;
  }
  
  .mobile-menu .navigation li > ul > li {
    padding-left: 20px;
  }
  
  .contact-list-one {
    position: relative;
    padding: 30px 20px 20px;
  }
  .contact-list-one li {
    position: relative;
    padding-left: 50px;
    min-height: 50px;
    margin-bottom: 20px;
  }
  .contact-list-one li .icon {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 32px;
    line-height: 50px;
    color: var(--theme-color1);
  }
  .contact-list-one li .title {
    display: block;
    font-size: 14px;
    color: var(--theme-color-dark);
    font-weight: 700;
    text-transform: uppercase;
  }
  .contact-list-one li .text {
    font-size: 14px;
    line-height: 24px;
    color: var(--theme-color-dark);
  }
  .contact-list-one li .text a {
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .mobile-menu .social-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: var(--theme-color-light);
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
  }
  .mobile-menu .social-links li {
    position: relative;
    text-align: center;
    width: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .mobile-menu .social-links li a {
    position: relative;
    display: block;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    text-align: center;
    color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .mobile-menu .social-links li a:hover {
    color: var(--theme-color1);
  }
  
  /*** 
  
  ====================================================================
  Section Title
  ====================================================================
  
  ***/
  .sec-title {
    position: relative;
    margin-bottom: 50px;
  }
  @media (max-width: 991.98px) {
    .sec-title br {
      display: none;
    }
  }
  .sec-title .sub-title-outer {
    position: relative;
    margin-bottom: 5px;
    display: inline-block;
  }
  .sec-title .sub-title {
    position: relative;
    display: block;
    font-size: var(--sec-title-subtitle-font-size);
    line-height: var(--sec-title-subtitle-line-height);
    font-weight: var(--sec-title-subtitle-font-weight);
    font-family: var(--sec-title-subtitle-font-family);
    color: var(--sec-title-subtitle-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: -3px;
  }
  .sec-title .divider {
    position: relative;
    display: inline-block;
    width: 100%;
    background-image: url(../image/img/icons/icon-power.png);
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    height: 15px;
  }
  .sec-title .divider:before, .sec-title .divider:after {
    position: absolute;
    left: 50%;
    top: 50%;
    border-bottom: 1px solid var(--theme-color1);
    content: "";
    width: 50%;
    margin-left: 11px;
  }
  .sec-title .divider:after {
    right: 50%;
    left: auto;
    margin-right: 11px;
    margin-left: 0;
  }
  .sec-title .h1,
  .sec-title h1 {
    position: relative;
    font-size: var(--h1-font-size);
    font-weight: 900;
    line-height: 1em;
    margin-bottom: 0;
  }
  @media (max-width: 1199.98px) {
    .sec-title .h1,
    .sec-title h1 {
      font-size: 38px;
    }
  }
  @media (max-width: 991.98px) {
    .sec-title .h1,
    .sec-title h1 {
      font-size: 32px;
    }
  }
  @media (max-width: 767.98px) {
    .sec-title .h1,
    .sec-title h1 {
      font-size: 28px;
    }
  }
  @media (max-width: 575.98px) {
    .sec-title .h1,
    .sec-title h1 {
      font-size: 28px;
    }
  }
  .sec-title .h2,
  .sec-title h2 {
    position: relative;
    font-size: var(--sec-title-font-size);
    color: var(--sec-title-color);
    font-family: var(--sec-title-font-family);
    font-weight: var(--sec-title-font-weight);
    line-height: 1.3em;
    margin-bottom: 0;
  }
  @media (max-width: 575.98px) {
    .sec-title .h2,
    .sec-title h2 {
      font-size: 36px;
    }
  }
  .sec-title .text {
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
  }
  .sec-title.light .sub-title,
  .sec-title.light .text,
  .sec-title.light .h2,
  .sec-title.light h2,
  .sec-title.light .h1,
  .sec-title.light h1 {
    color: #fff;
  }

  /*** 

====================================================================
    Banner Section Two
====================================================================

***/
.banner-section-two {
    position: relative;
  }
  @media (max-width: 991.98px) {
    .banner-section-two .content-column {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
    }
  }
  .banner-section-two .content-column .inner-column {
    position: relative;
    padding: 115px 0 280px;
    z-index: 3;
  }
  @media (max-width: 991.98px) {
    .banner-section-two .content-column .inner-column {
      padding: 0 0 200px;
      text-align: center;
    }
  }
  .banner-section-two .content-column .inner-column .sub-title {
    position: relative;
    display: block;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--theme-color-light);
    font-size: 14px;
    line-height: 36px;
    margin-bottom: 35px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  @media (max-width: 991.98px) {
    .banner-section-two .content-column .inner-column .sub-title {
      margin-bottom: 10px;
    }
  }
  .banner-section-two .content-column .inner-column .title {
    position: relative;
    color: var(--theme-color-light);
    padding-left: 34px;
    margin-bottom: 40px;
    /* font-family: "Courgette", cursive; */
    font-family: "Merienda", cursive;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.28;
    transition: all 400ms ease;
    opacity: 0.21;
  }
   .banner-section-two .content-column .inner-column .title {
    opacity: 1;
   }
  @media (max-width: 1199.98px) {
    .banner-section-two .content-column .inner-column .title {
      font-size: 70px;
    }
  }
  @media (max-width: 991.98px) {
    .banner-section-two .content-column .inner-column .title {
      font-size: 60px;
      padding-left: 0;
    }
  }
  @media (max-width: 575.98px) {
    .banner-section-two .content-column .inner-column .title {
      padding-left: 0;
      font-size: 45px;
    }
  }
  .banner-section-two .content-column .inner-column .title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    border-left: 5px solid var(--theme-color-light);
  }
  @media (max-width: 991.98px) {
    .banner-section-two .content-column .inner-column .title:before {
      display: none;
    }
  }
  .banner-section-two .image-column .inner-column {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 100%;
    padding-bottom: 165px;
  }
  @media (max-width: 1399.98px) {
    .banner-section-two .image-column .inner-column {
      padding-bottom: 200px;
    }
  }
  @media (max-width: 991.98px) {
    .banner-section-two .image-column .inner-column {
      display: block;
      padding: 120px 0 30px;
    }
  }
  .banner-section-two .image-column .inner-column .image {
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 0;
  }
  @media only screen and (max-width: 1699px) {
    .banner-section-two .image-column .inner-column .image {
      max-width: 50%;
    }
  }

  .banner-section-two .image-column .inner-column .image-2 {
    position: relative;
    margin-bottom: 0;
    border-radius: 50%;
  }
  @media (max-width: 991.98px) {
    .banner-section-two .image-column .inner-column .image-2 {
      text-align: center;
      margin: 0 auto;
    }
  }
  .banner-section-two .image-column .inner-column .image-2 img {
    border-radius: 50%;
    border: 5px solid var(--theme-color-light);
    max-width: 400px;
  }
  @media (max-width: 575.98px) {
    .banner-section-two .image-column .inner-column .image {
      max-width: 75%;
    }
    .banner-section-two .image-column .inner-column .image-2 img {
        max-width: 100%;
      }
  }

  /*** 

====================================================================
    Features Section Three
====================================================================

***/
.features-section-three {
    position: relative;
    padding: 120px 0 90px;
    z-index: 3;
  }
  .features-section-three.pull-up {
    margin-top: -70px;
  }
  
  .feature-block-three {
    margin-bottom: 30px;
  }
  .feature-block-three .inner-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 24px 30px;
    -webkit-box-shadow: 0 0 87px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 87px rgba(0, 0, 0, 0.08);
    background-color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  @media (max-width: 1199.98px) {
    .feature-block-three .inner-box {
      padding: 24px 20px;
    }
  }
  @media (max-width: 991.98px) {
    .feature-block-three .inner-box {
      -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;
    }
  }
  .feature-block-three .inner-box:hover {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  .feature-block-three .inner-box:hover .icon {
    background-color: var(--theme-color2);
  }
  .feature-block-three .inner-box .icon {
    position: relative;
    display: block;
    width: 73px;
    height: 84px;
    line-height: 84px;
    font-size: 40px;
    margin-right: 18px;
    color: var(--theme-color-light);
    background-color: var(--theme-color1);
    -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
            clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  @media (max-width: 991.98px) {
    .feature-block-three .inner-box .icon {
      margin-bottom: 20px;
      margin-right: 0;
    }
  }
  .feature-block-three .inner-box .content .title {
    margin-bottom: 0;
    font-size: var(--h6-font-size);
    font-weight: var(--h6-font-weight);
    line-height: var(--line-height-heading-small);
    color: black;
  }
  .feature-block-three .inner-box .content .title a:hover {
    color: var(--theme-color2);
  }

  .feature-block-two {
    margin-bottom: 30px;
  }
  .feature-block-two .inner-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 38px;
    margin-right: 5px;
    padding: 12px 0;
    -webkit-box-shadow: 0 0 76px rgba(0, 0, 0, 0.28);
            box-shadow: 0 0 76px rgba(0, 0, 0, 0.28);
    background-color: var(--theme-color-light);
    z-index: 3;
  }
  .feature-block-two .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    width: 0;
    background-color: var(--theme-color1);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .feature-block-two .inner-box:hover::before {
    width: 100%;
  }
  .feature-block-two .inner-box:hover .icon {
    background-color: #191e28;
  }
  .feature-block-two .inner-box:hover .icon:after {
    border-left-color: #191e28;
  }
  .feature-block-two .inner-box:hover .title {
    color: var(--theme-color-light);
  }
  .feature-block-two .inner-box:hover .icon-border-3 {
    -webkit-filter: brightness(1000);
            filter: brightness(1000);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .feature-block-two .inner-box .icon-border-3 {
    position: absolute;
    top: 0;
    right: 24px;
  }
  .feature-block-two .inner-box .content {
    padding: 12px 12px;
    padding-left: 25px;
  }
  .feature-block-two .inner-box .title {
    position: relative;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    z-index: 3;
    font-size: var(--h6-font-size);
    font-weight: var(--h6-font-weight);
    line-height: var(--line-height-heading-small);
  }
  @media (max-width: 1199.98px) {
    .feature-block-two .inner-box .title br {
      display: none;
    }
  }
  .feature-block-two .inner-box .image {
    position: absolute;
    right: 23px;
    top: 0;
  }
  .feature-block-two .inner-box .icon {
    position: relative;
    margin-left: -38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 82px;
    height: 72px;
    font-size: 40px;
    background-color: var(--theme-color1);
    color: var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 3;
  }
  .feature-block-two .inner-box .icon:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-left: 10px solid var(--theme-color1);
    border-bottom: 16px solid transparent;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  /***

==================================================================
    Features Section Four
==================================================================

***/
.features-section-four {
    position: relative;
    overflow: hidden;
    padding: 120px 0 70px;
  }
  .features-section-four .icon-solar-2 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .features-section-four .outer-box {
    position: relative;
  }
  .features-section-four .content-column {
    position: relative;
    margin-bottom: 50px;
  }
  .features-section-four .content-column .inner-column {
    position: relative;
    padding-top: 35px;
  }
  .features-section-four .content-column .info-box {
    position: relative;
    padding-left: 100px;
    min-height: 50px;
    margin-bottom: 25px;
  }
  @media (max-width: 991.98px) {
    .features-section-four .content-column .info-box {
      text-align: center;
      padding: 0 20px;
      margin-bottom: 50px;
    }
  }
  .features-section-four .content-column .info-box::before {
    content: "";
    position: absolute;
    top: 65px;
    left: 38px;
    width: 1px;
    bottom: -40px;
    background-color: var(--theme-color1);
  }
  @media (max-width: 991.98px) {
    .features-section-four .content-column .info-box::before {
      display: none;
    }
  }
  .features-section-four .content-column .info-box:last-child {
    margin-bottom: 0;
  }
  .features-section-four .content-column .info-box:last-child:before {
    display: none;
  }
  .features-section-four .content-column .info-box .icon {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 76px;
    width: 76px;
    font-size: 28px;
    border-radius: 50%;
    border: 2px dashed var(--theme-color1);
    color: var(--theme-color-dark);
    font-family: var(--title-font);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  @media (max-width: 991.98px) {
    .features-section-four .content-column .info-box .icon {
      position: relative;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      margin-bottom: 10px;
    }
  }
  .features-section-four .content-column .info-box .icon:before {
    position: relative;
    z-index: 2;
  }
  .features-section-four .content-column .info-box .icon:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    pointer-events: none;
    line-height: 76px;
    background-color: #f8f8f8;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .features-section-four .content-column .info-box .title {
    font-size: var(--h6-font-size);
    font-weight: var(--h6-font-weight);
    line-height: var(--line-height-heading-small);
    margin-bottom: 7px;
  }
  .features-section-four .content-column .info-box .text {
    font-size: 16px;
    margin-bottom: 0;
  }
  .features-section-four .content-column .info-box:hover .icon {
    -webkit-transform: rotate(180deg) scale(-1);
            transform: rotate(180deg) scale(-1);
    color: var(--theme-color-light);
  }
  .features-section-four .content-column .info-box:hover .icon:after {
    background-color: var(--theme-color1);
  }
  .features-section-four .feature-column {
    position: relative;
  }
  .features-section-four .feature-column .inner-column {
    position: relative;
    padding-top: 15px;
  }
  .features-section-four .image-column {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
  }
  .features-section-four .image-column .inner-column {
    position: relative;
  }
  .features-section-four .image-column .image-box {
    position: relative;
  }
  .features-section-four .image-column .image-box .image {
    position: relative;
    margin-left: -70px;
    margin-bottom: 0;
  }
  @media (max-width: 991.98px) {
    .features-section-four .image-column .image-box .image {
      text-align: center;
      margin: 0;
    }
  }
  .features-section-four .image-column .image-box .icon-arrow {
    position: absolute;
    top: 100px;
    right: 30px;
  }
  @media (max-width: 991.98px) {
    .features-section-four .image-column .image-box .icon-arrow {
      display: none;
    }
  }
  
  .feature-block-four {
    margin-bottom: 27px;
  }
  .feature-block-four .inner-box {
    background-color: var(--theme-color-light);
    -webkit-box-shadow: 0 13px 57px rgba(0, 0, 0, 0.08);
            box-shadow: 0 13px 57px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 35px 25px 12px;
    text-align: center;
  }
  .feature-block-four .inner-box:before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--theme-color1);
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .feature-block-four .inner-box:hover:before {
    right: 0;
    top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    border-radius: 0%;
  }
  .feature-block-four .inner-box:hover .icon:before {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    color: var(--theme-color-light);
  }
  .feature-block-four .inner-box:hover .icon:after {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .feature-block-four .inner-box:hover .title {
    color: var(--theme-color-light);
  }
  .feature-block-four .inner-box .icon {
    position: relative;
    display: inline-block;
    font-size: 45px;
    margin-bottom: 25px;
    color: var(--theme-color1);
  }
  .feature-block-four .inner-box .icon:before {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .feature-block-four .inner-box .icon:after {
    content: "";
    position: absolute;
    top: -5px;
    right: -20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--theme-color1);
    opacity: 0.1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .feature-block-four .inner-box .title {
    position: relative;
    color: var(--theme-color-dark);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  /*** 

====================================================================
    About Section Three
====================================================================

***/
.about-section-three {
    position: relative;
    padding: 120px 0 70px;
  }
  .about-section-three .icon-turbines {
    position: absolute;
    bottom: 15px;
    left: 10px;
  }
  .about-section-three .icon-solar {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .about-section-three .content-column {
    margin-bottom: 50px;
  }
  .about-section-three .content-column .inner-column {
    position: relative;
  }
  .about-section-three .content-column .inner-column .sec-title {
    margin-bottom: 40px;
  }
  .about-section-three .content-column .inner-column .bottom-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media (max-width: 991.98px) {
    .about-section-three .content-column .inner-column .bottom-box {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
    }
  }
  @media (max-width: 575.98px) {
    .about-section-three .content-column .inner-column .bottom-box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  .about-section-three .content-column .inner-column .bottom-box .theme-btn {
    margin-top: 20px;
  }
  .about-section-three .content-column .inner-column .bottom-box .icon-box {
    position: relative;
  }
  @media (max-width: 991.98px) {
    .about-section-three .content-column .inner-column .bottom-box .icon-box {
      margin-left: 30px;
    }
  }
  @media (max-width: 575.98px) {
    .about-section-three .content-column .inner-column .bottom-box .icon-box {
      width: 100%;
      margin-left: 0;
      margin-bottom: 30px;
    }
  }
  .about-section-three .content-column .inner-column .bottom-box .icon-box .inner {
    position: relative;
    width: 169px;
    margin-right: 8px;
    padding: 35px 10px 15px;
    background-color: #f8f8f8;
    text-align: center;
  }
  @media (max-width: 575.98px) {
    .about-section-three .content-column .inner-column .bottom-box .icon-box .inner {
      width: 100%;
    }
  }
  .about-section-three .content-column .inner-column .bottom-box .icon-box .inner .icon {
    display: block;
    color: var(--theme-color1);
    font-size: 45px;
    margin-bottom: 15px;
  }
  .about-section-three .content-column .inner-column .bottom-box .icon-box .inner .title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: var(--theme-color-dark);
  }
  .about-section-three .content-column .inner-column .theme-btn {
    margin-top: -60px;
  }
  @media (max-width: 575.98px) {
    .about-section-three .content-column .inner-column .theme-btn {
      margin-top: 0;
      width: 100%;
    }
  }
  .about-section-three .image-column {
    margin-bottom: 50px;
  }
  .about-section-three .image-column .inner-column {
    position: relative;
    display: inline-block;
    padding-left: 100px;
  }
  @media (max-width: 1199.98px) {
    .about-section-three .image-column .inner-column {
      padding-left: 0;
    }
  }
  @media (max-width: 991.98px) {
    .about-section-three .image-column .inner-column {
      display: block;
    }
  }
  .about-section-three .image-column .inner-column:before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 52px;
    width: 18px;
    height: 273px;
    background-color: var(--theme-color2);
  }
  @media (max-width: 1199.98px) {
    .about-section-three .image-column .inner-column:before {
      display: none;
    }
  }
  .about-section-three .image-column .inner-column .image {
    margin-bottom: 0;
  }
  @media (max-width: 991.98px) {
    .about-section-three .image-column .inner-column .image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
  .about-section-three .image-column .inner-column .image-2 {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
  }
  @media (max-width: 1199.98px) {
    .about-section-three .image-column .inner-column .image-2 {
      display: none;
    }
  }
  .about-section-three .image-column .inner-column .image-2 img {
    border: 10px solid var(--theme-color-light);
  }
  .about-section-three .image-column .inner-column .exp-box {
    position: absolute;
    right: -30px;
    bottom: 12px;
  }
  @media (max-width: 1199.98px) {
    .about-section-three .image-column .inner-column .exp-box {
      right: 15px;
      bottom: 20px;
      -webkit-animation: none;
              animation: none;
    }
  }
  .about-section-three .image-column .inner-column .exp-box .inner {
    position: relative;
    width: 290px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 25px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 0px 5px rgba(68, 67, 67, 0.629);
            box-shadow: 0px 0px 5px rgba(68, 67, 67, 0.551);
    background: var(--theme-color-light);
  }
  .about-section-three .image-column .inner-column .exp-box .inner:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 5px;
    background-color: var(--theme-color1);
  }
  .about-section-three .image-column .inner-column .exp-box .inner .icon {
    position: relative;
    display: block;
    width: 70px;
    height: 72px;
    line-height: 72px;
    font-size: 40px;
    border-radius: 5px;
    color: var(--theme-color1);
    background-color: var(--theme-color-light);
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .about-section-three .image-column .inner-column .exp-box .inner .count {
    position: relative;
    font-weight: 600;
    font-size: 40px;
    line-height: 54px;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
    color: var(--theme-color-light);
    margin-bottom: 0;
  }
  .about-section-three .image-column .inner-column .exp-box .inner .title {
    color: var(--theme-color-light);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0;
  }

  
/*** 

====================================================================
    Services Section Two
====================================================================

***/
.services-section-two {
    position: relative;
    padding: 120px 0 90px;
    z-index: 3;
  }
  .services-section-two .bg {
    height: auto;
    bottom: 280px;
    /* -webkit-filter: grayscale(1);
            filter: grayscale(1); */
  }
  .services-section-two .bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(248, 248, 248)), color-stop(50%, rgb(248, 248, 248)), to(rgba(125, 185, 232, 0)));
    background: linear-gradient(to right, rgb(112, 113, 112) 0%, rgb(248, 248, 248) 50%, rgba(125, 185, 232, 0) 100%);
  }
  .services-section-two .bottom-text .text {
    color: var(--theme-color-light);
    font-family: var(--title-font);
    font-size: 16px;
  }
  .services-section-two .bottom-text .text a {
    margin-left: 5px;
    font-weight: 600;
    color: var(--theme-color2);
    text-decoration: underline;
  }
  
  .service-block-two {
    margin-bottom: 30px;
  }
  .service-block-two .inner-box {
    position: relative;
    height: 100%;
    background-color: var(--theme-color-light);
  }
  .service-block-two .inner-box:hover .image-box .image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .service-block-two .inner-box:hover .content-box:before {
    height: 100%;
  }
  .service-block-two .inner-box:hover .content-box .icon {
    background-color: var(--theme-color-light);
    color: var(--theme-color2);
  }
  .service-block-two .inner-box:hover .content-box .title,
  .service-block-two .inner-box:hover .content-box .text {
    color: var(--theme-color-light);
  }
  .service-block-two .inner-box:hover .content-box .count {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
  }
  .service-block-two .inner-box:hover .content-box .icon-border {
    display: none;
  }
  .service-block-two .inner-box:hover .content-box .icon-border-2 {
    display: block;
  }
  .service-block-two .inner-box .image-box {
    position: relative;
    padding: 20px 20px;
    z-index: 3;
  }
  .service-block-two .inner-box .image-box .image {
    overflow: hidden;
    margin-bottom: 0;
  }
  .service-block-two .inner-box .image-box .image img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .service-block-two .inner-box .content-box {
    position: relative;
    background-color: var(--theme-color-light);
    padding: 140px 20px 20px 20px;
    margin-top: -140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  @media (max-width: 1199.98px) {
    .service-block-two .inner-box .content-box {
      padding-right: 20px;
    }
  }
  @media (max-width: 575.98px) {
    .service-block-two .inner-box .content-box {
      padding-bottom: 30px;
    }
  }
  .service-block-two .inner-box .content-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    height: 0;
    background-color: var(--theme-color1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .service-block-two .inner-box .content-box .icon-border-3 {
    position: absolute;
    left: 47px;
    bottom: 37px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .service-block-two .inner-box .content-box .icon-border-2 {
    position: absolute;
    left: 47px;
    bottom: 37px;
    display: none;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .service-block-two .inner-box .content-box .icon {
    position: relative;
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 66px;
    height: 66px;
    line-height: 66px;
    font-size: 35px;
    color: var(--theme-color-light);
    background-color: var(--theme-color1);
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .service-block-two .inner-box .content-box .content {
    margin-left: 19px;
    display: flex;
    align-items: center;
  }
  .service-block-two .inner-box .content-box .title {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.26;
    font-weight: 700;
    color: var(--headings-color);
    font-family: var(--title-font);
    letter-spacing: -0.01em;
    margin-bottom: 0;
    position: relative;
  }
  .service-block-two .inner-box .content-box .text {
    position: relative;
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: -0.01em;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .service-block-two .inner-box .content-box .count {
    position: absolute;
    bottom: 40px;
    right: 35px;
    line-height: 0.8em;
    font-size: 100px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  
/*** 

====================================================================
    Why Choose us
====================================================================

***/
.why-choose-us {
    position: relative;
    padding: 120px 0 55px;
  }
  .why-choose-us .bg {
    top: -280px;
    bottom: 0;
    height: auto;
  }
  .why-choose-us .bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #13131c;
    opacity: 0.7;
  }
  .why-choose-us .content-column {
    margin-bottom: 50px;
  }
  .why-choose-us .content-column .inner-column {
    position: relative;
    padding-top: 25px;
    padding-right: 95px;
  }
  @media (max-width: 1399.98px) {
    .why-choose-us .content-column .inner-column {
      padding-right: 0;
    }
  }
  .why-choose-us .content-column .inner-column .sec-title {
    margin-bottom: 30px;
  }
  .why-choose-us .content-column .inner-column .sec-title .text {
    font-size: 16px;
  }
  .why-choose-us .content-column .inner-column .skills .skill-title {
    font-weight: 400;
  }
  .why-choose-us .content-column .inner-column .info-btn-three {
    margin-top: 40px;
    padding-left: 70px;
  }
  .why-choose-us .content-column .inner-column .info-btn-three .icon {
    color: var(--theme-color1);
    font-size: 55px;
  }
  .why-choose-us .image-column {
    margin-bottom: 50px;
  }
  .why-choose-us .image-column .inner-column {
    position: relative;
    padding-left: 65px;
  }
  @media (max-width: 991.98px) {
    .why-choose-us .image-column .inner-column {
      padding-left: 0;
    }
  }
  .why-choose-us .image-column .inner-column .image {
    position: relative;
    margin-bottom: 0;
  }
  @media (max-width: 991.98px) {
    .why-choose-us .image-column .inner-column .image {
      margin-right: 0;
    }
  }
  .why-choose-us .image-column .inner-column .image:before {
    content: "";
    position: absolute;
    top: 22px;
    left: -18px;
    width: 18px;
    height: 543px;
    background-color: var(--theme-color2);
  }
  @media (max-width: 1199.98px) {
    .why-choose-us .image-column .inner-column .image:before {
      top: 0;
    }
  }
  @media (max-width: 991.98px) {
    .why-choose-us .image-column .inner-column .image:before {
      display: none;
    }
  }
  .why-choose-us .image-column .inner-column .image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .why-choose-us .image-column .inner-column .video-box {
    position: absolute;
    top: 0;
    left: 1px;
  }
  @media (max-width: 991.98px) {
    .why-choose-us .image-column .inner-column .video-box {
      left: 0;
    }
  }
  .why-choose-us .image-column .inner-column .video-box .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 124px;
    height: 152px;
    margin-left: -60px;
    background-color: red;
  }
  @media (max-width: 575.98px) {
    .why-choose-us .image-column .inner-column .video-box .btn-box {
      width: 100px;
      height: 100px;
    }
  }
  .why-choose-us .image-column .inner-column .video-box .btn-box .icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--theme-color-light);
    width: 79px;
    height: 79px;
    line-height: 79px;
    font-size: 35px;
    border-radius: 50%;
    margin: 0 auto;
    background-color: transparent;
    border: 2px solid var(--theme-color-light);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  @media (max-width: 575.98px) {
    .why-choose-us .image-column .inner-column .video-box .btn-box .icon {
      width: 65px;
      height: 65px;
      line-height: 65px;
    }
    .why-choose-us .image-column .inner-column .video-box .btn-box{
      margin-left: 0;
      margin-top: 230px;
    }
  }
  .why-choose-us .image-column .inner-column .video-box .btn-box .icon:hover {
    background-color: var(--theme-color-light);
    color: var(--theme-color1);
  }

  /*** 

====================================================================
    Prcess Section 
====================================================================

***/
.process-section {
  position: relative;
  padding: 120px 0;
}
.process-section .icon-solar-3 {
  position: absolute;
  bottom: 0;
  left: -230px;
}
@media (max-width: 1199.98px) {
  .process-section .icon-solar-3 {
    display: none;
  }
}
.process-section .icon-bulb-7 {
  position: absolute;
  right: -115px;
  bottom: 155px;
}
@media (max-width: 1199.98px) {
  .process-section .icon-bulb-7 {
    display: none;
  }
}
.process-section .outer-box {
  position: relative;
  padding: 60px 0 10px;
  background-color: var(--theme-color1);
}

.process-block {
  margin-bottom: 50px;
}
.process-block:last-child .inner-box:before {
  display: none;
}
.process-block:nth-child(2) .inner-box::before {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.process-block .inner-box {
  position: relative;
  padding: 0 58px;
  display: block;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .process-block .inner-box {
    padding: 0 20px;
  }
}
@media (max-width: 991.98px) {
  .process-block .inner-box {
    padding: 0;
  }
}
.process-block .inner-box:before {
  content: "";
  position: absolute;
  top: 50px;
  right: -120px;
  width: 218px;
  height: 34px;
  background-image: url(../image/img/icons/icon-border.png);
}
@media (max-width: 991.98px) {
  .process-block .inner-box:before {
    display: none;
  }
}
.process-block .inner-box:hover .icon-box .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  color: var(--theme-color-light);
  background-color: var(--theme-color-dark);
}
.process-block .inner-box:hover .icon-box .count {
  background-color: var(--theme-color-light);
  color: var(--theme-color2);
}
.process-block .inner-box .icon-box {
  position: relative;
  display: inline-block;
}
.process-block .inner-box .icon-box .icon {
  position: relative;
  display: block;
  width: 118px;
  height: 118px;
  line-height: 118px;
  font-size: 45px;
  border-radius: 50%;
  color: var(--theme-color1);
  background: var(--theme-color-light);
  margin: 0 auto 45px;
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .process-block .inner-box .icon-box .icon {
    margin-bottom: 20px;
  }
}
.process-block .inner-box .icon-box .icon:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 1px dashed var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.process-block .inner-box .icon-box .count {
  position: absolute;
  top: 0;
  right: -15px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 18px;
  font-family: var(--title-font);
  font-weight: 700;
  border-radius: 50%;
  color: var(--theme-color-light);
  background-color: var(--theme-color-dark);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
}
.process-block .inner-box .title {
  position: relative;
  color: var(--theme-color-light);
  margin-bottom: 12px;
}
.process-block .inner-box .text {
  position: relative;
  color: var(--theme-color-light);
  font-size: 14px;
}

/*** 

====================================================================
    About Section Four
====================================================================

***/
.about-section-four {
  position: relative;
  padding: 120px 0 30px;
  z-index: 1;
}
.about-section-four .icon-dots {
  position: absolute;
  top: -120px;
  left: 0;
  z-index: 3;
  pointer-events: none;
}
.about-section-four .icon-bulb-3 {
  position: absolute;
  right: 60px;
  top: -145px;
  z-index: 3;
}
@media only screen and (max-width: 1699px) {
  .about-section-four .icon-bulb-3 {
    display: none;
  }
}
.about-section-four .outer-box {
  position: relative;
  z-index: 2;
}
.about-section-four .outer-box .bg {
  left: 200px;
  right: 0;
  top: 30px;
  width: auto;
}
.about-section-four ol,
.about-section-four ul{
    list-style: unset;
    padding-left: 24px;
}
.about-section-four ol li,
.about-section-four ul li{
    list-style: unset;
}
@media (max-width: 991.98px) {
  .about-section-four .outer-box .bg {
    left: 0;
    top: -20px;
  }
}
.about-section-four .content-column {
  margin-bottom: 50px;
}
.about-section-four .content-column .inner-column {
  position: relative;
  padding-right: 26px;
  padding-top: 43px;
}
@media (max-width: 1199.98px) {
  .about-section-four .content-column .inner-column {
    padding-right: 0;
    padding-top: 40px;
  }
}
@media (max-width: 991.98px) {
  .about-section-four .content-column .inner-column {
    padding-top: 0;
  }
}
.about-section-four .content-column .inner-column .sec-title {
  margin-bottom: 30px;
}
.about-section-four .content-column .inner-column .icon-box {
  position: relative;
  background: var(--theme-color-light);
  margin-right: 30px;
  border-left: 3px solid var(--theme-color1);
  padding: 17px 0px 13px;
  max-width: 466px;
  margin-bottom: 53px;
}
.about-section-four .content-column .inner-column .icon-box .content-box {
  position: relative;
  padding-left: 100px;
}
@media (max-width: 575.98px) {
  .about-section-four .content-column .inner-column .icon-box .content-box {
    padding-left: 20px;
  }
}
.about-section-four .content-column .inner-column .icon-box .content-box .icon {
  position: absolute;
  top: 20px;
  left: 27px;
  font-size: 45px;
  line-height: 1em;
  color: var(--theme-color1);
}
@media (max-width: 575.98px) {
  .about-section-four .content-column .inner-column .icon-box .content-box .icon {
    position: relative;
    top: 0;
    left: 0;
  }
}
@media (max-width: 575.98px) {
  .about-section-four .content-column .inner-column .icon-box .content-box .text br {
    display: none;
  }
}
.about-section-four .content-column .inner-column .list-style-two li {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--title-font);
  letter-spacing: -0.01em;
}
.about-section-four .content-column .inner-column .author-box .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 25px;
  margin-left: -5px;
}
.about-section-four .content-column .inner-column .author-box .inner .thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0;
}
.about-section-four .content-column .inner-column .author-box .inner .thumb img {
  border-radius: 50%;
}
.about-section-four .content-column .inner-column .author-box .inner .info {
  padding-left: 10px;
  padding-top: 10px;
}
.about-section-four .content-column .inner-column .author-box .inner .name {
  margin-bottom: 0px;
  line-height: 7px;
  font-size: 14px;
  font-weight: 700;
}
.about-section-four .content-column .inner-column .author-box .inner .designation {
  font-size: 12px;
}
.about-section-four .content-column .inner-column .author-box .sign {
  position: relative;
  padding-left: 68px;
}
.about-section-four .content-column .inner-column .author-box .sign::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 65px;
  left: 38px;
  top: -12px;
  background-color: #e1e1e1;
}
.about-section-four .image-column {
  position: relative;
  margin-bottom: 50px;
}
.about-section-four .image-column .inner-column {
  position: relative;
  margin-bottom: 39px;
}
.about-section-four .image-column .inner-column .image-box {
  position: relative;
}
.about-section-four .image-column .inner-column .image-box::before {
  content: "";
  position: absolute;
  right: 79px;
  bottom: -39px;
  width: 397px;
  height: 533px;
  background-color: var(--theme-color2);
}
.floated-abt{
  max-width: 550px;
  float: left;
  margin-right: 40px;
}
@media (max-width: 991.98px) {
  .about-section-four .image-column .inner-column .image-box::before {
    display: none;
  }
  .floated-abt{
    max-width: 100%;
    float: none;
    margin-right: 00px;
    /* margin-: 40px; */
  }
}
.about-section-four .image-column .inner-column .image-box .image {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .about-section-four .image-column .inner-column .image-box .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about-section-four .image-column .inner-column .image-box .exp-box {
  position: absolute;
  left: 98px;
  bottom: -39px;
  width: 269px;
  height: 198px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--theme-color2);
  text-align: center;
}
@media (max-width: 991.98px) {
  .about-section-four .image-column .inner-column .image-box .exp-box {
    left: 20px;
    bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .about-section-four .image-column .inner-column .image-box .exp-box {
    width: 200px;
    height: 160px;
    display: none;
  }
}
.about-section-four .image-column .inner-column .image-box .exp-box .title {
  position: relative;
  margin-bottom: 0px;
  line-height: 66px;
  font-size: 84px;
  font-weight: 700;
  z-index: 9;
  background-image: url(../image/img/resource/about-3-text.jpg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-filter: drop-shadow(3px 3px 0px #fff);
          filter: drop-shadow(3px 3px 0px #fff);
}
@media (max-width: 575.98px) {
  .about-section-four .image-column .inner-column .image-box .exp-box .title {
    font-size: 70px;
  }
}
.about-section-four .image-column .inner-column .image-box .exp-box .text {
  color: var(--theme-color-light);
  font-size: 18px;
}
@media (max-width: 575.98px) {
  .about-section-four .image-column .inner-column .image-box .exp-box .text {
    font-size: 16px;
  }
}


/*** 

====================================================================
    Fun Fact Section Two
====================================================================

***/
.fun-fact-section-two {
  position: relative;
  padding: 80px 0 90px;
}

.counter-block-four {
  position: relative;
  margin-bottom: 30px;
}
.counter-block-four .inner-box {
  position: relative;
  margin-top: 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .counter-block-four .inner-box {
    text-align: center;
  }
}
.counter-block-four .inner-box::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
}
.counter-block-four .inner-box:hover .icon {
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
}
.counter-block-four .inner-box .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 37px;
  border-radius: 3px;
  display: inline-block;
  margin: 0 auto;
  color: var(--theme-color1);
  -webkit-box-shadow: 0 13px 57px rgba(0, 0, 0, 0.08);
          box-shadow: 0 13px 57px rgba(0, 0, 0, 0.08);
  background-color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-align: center;
}
@media (max-width: 575.98px) {
  .counter-block-four .inner-box .icon {
    position: relative;
    margin: 0 auto 20px;
  }
}
.counter-block-four .inner-box .content-box {
  position: relative;
  padding-left: 88px;
}
@media (max-width: 575.98px) {
  .counter-block-four .inner-box .content-box {
    padding-left: 0;
  }
}
.counter-block-four .inner-box .content-box .count-box {
  position: relative;
  font-size: 48px;
  line-height: 1em;
  font-weight: 700;
  color: var(--theme-color-dark);
  font-family: var(--title-font);
}
@media (max-width: 1199.98px) {
  .counter-block-four .inner-box .content-box .count-box {
    font-size: 44px;
  }
}
.counter-block-four .inner-box .content-box .count-box .count-text {
  font-weight: 700;
  line-height: 1em;
  font-size: 48px;
  color: var(--theme-color-dark);
}
@media (max-width: 1199.98px) {
  .counter-block-four .inner-box .content-box .count-box .count-text {
    font-size: 44px;
  }
}
.counter-block-four .inner-box .content-box .counter-title {
  font-size: 14px;
}


/***

====================================================================
    Contact Section
====================================================================

***/
.contact-section {
  position: relative;
  padding: 50px 0 120px;
}
.contact-section .icon-bulb-3 {
  position: absolute;
  top: 300px;
  right: 100px;
  z-index: 3;
}
.contact-section .outer-box {
  position: relative;
  background-color: var(--theme-color-light);
  -webkit-box-shadow: 0 3px 46px rgba(212, 212, 212, 0.35);
          box-shadow: 0 3px 46px rgba(212, 212, 212, 0.35);
  padding: 20px;
  z-index: 3;
}
@media (max-width: 575.98px) {
  .contact-section .outer-box {
    padding: 10px;
  }
}
.contact-section .content-column .inner-column {
  position: relative;
  padding-left: 55px;
  padding-right: 30px;
  padding-top: 15px;
}
@media (max-width: 1199.98px) {
  .contact-section .content-column .inner-column {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .contact-section .content-column .inner-column {
    margin-bottom: 50px;
  }
}
.contact-section .content-column .inner-column .icon-dots {
  position: absolute;
  top: 25px;
  left: 0;
}
.contact-section .content-column .inner-column .sec-title .text {
  margin-top: 30px;
}
@media (max-width: 1199.98px) {
  .contact-section .content-column .inner-column .sec-title .text br {
    display: none;
  }
}
.contact-section .form-column .inner-column {
  padding-left: 20px;
}
@media (max-width: 1199.98px) {
  .contact-section .form-column .inner-column {
    padding-left: 0;
  }
}
.contact-section .form-column .inner-column .contact-form {
  border: none;
  margin-top: 0;
  padding-bottom: 45px;
}
@media (max-width: 575.98px) {
  .contact-section .form-column .inner-column .contact-form {
    padding: 30px 20px;
  }
}
.contact-section .form-column .inner-column .contact-form textarea {
  height: 140px;
}
.contact-section .form-column .inner-column .contact-form .title {
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .contact-section .form-column .inner-column .contact-form .title {
    font-size: 26px;
  }
}
.icon-dots {
  width: 503px;
  height: 552px;
  background-image: url(../image/img/icons/icon-dots.png);
}
.contact-section .content-column .inner-column .icon-dots {
  position: absolute;
  top: 25px;
  left: 0;
  z-index: -1;
}
.contact-block {
  margin-bottom: 30px;
}
.contact-block .inner-box {
  position: relative;
  text-align: center;
}
.contact-block .inner-box:hover .icon {
  color: var(--theme-color2);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.contact-block .inner-box .icon {
  position: relative;
  display: block;
  color: var(--theme-color1);
  font-size: 40px;
  line-height: 1em;
  margin-bottom: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .contact-block .inner-box .icon {
    margin-bottom: 10px;
  }
}
.contact-block .inner-box .title {
  position: relative;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.contact-info-block-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  width: 100%;
  margin-top: 30px;
  background-color: var(--theme-color1);
}
@media (max-width: 991.98px) {
  .contact-info-block-two {
    background-color: transparent;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 575.98px) {
  .contact-info-block-two {
    display: block;
    margin-top: 40px;
  }
}
.contact-info-block-two:hover .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  background-color: var(--theme-color2);
  color: var(--theme-color-light);
}
.contact-info-block-two .image {
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .contact-info-block-two .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 575.98px) {
  .contact-info-block-two .image {
    display: none;
  }
}
.contact-info-block-two .contact {
  position: relative;
  background-color: var(--theme-color1);
  padding: 33px 20px 0px 60px;
}
@media (max-width: 575.98px) {
  .contact-info-block-two .contact {
    padding: 42px 20px 20px;
    width: 100%;
    text-align: center;
  }
}
.contact-info-block-two .text {
  color: var(--theme-color-light);
  margin-bottom: 0px;
  font-size: 14px;
}
.contact-info-block-two .number {
  color: var(--theme-color-light);
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .contact-info-block-two .number {
    font-size: 18px;
    display: block;
  }
}
.contact-info-block-two .icon {
  position: absolute;
  top: 27%;
  left: -31px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  font-size: 27px;
  border-radius: 50%;
  color: var(--theme-color2);
  background-color: var(--theme-color-light);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .contact-info-block-two .icon {
    left: 0;
    right: 0;
    top: -32px;
    margin: 0 auto;
  }
}

.contact-form {
  position: relative;
  padding: 40px 35px 35px;
  background-color: var(--theme-color1);
}
.contact-form .title {
  font-size: 36px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 22px;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.contact-form .form-group:last-child {
  margin-bottom: 0;
}
.contact-form .form-group .range-title {
  position: relative;
  color: var(--theme-color-light);
  margin-bottom: 10px;
}
.contact-form .form-group .select2-container--default .select2-selection--single,
.contact-form .form-group input:not([type=submit]),
.contact-form .form-group textarea,
.contact-form .form-group select {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  font-size: 16px;
  color: var(--theme-color-dark);
  line-height: 30px;
  font-weight: 400;
  padding: 14px 20px;
  border-radius: 0px !important;
  margin-bottom: 0;
  border: 1px solid #dfe8ee;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-form .form-group ::-webkit-input-placeholder {
  color: #393939;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--border-theme-color1);
}
.contact-form .form-group textarea {
  height: 90px;
  resize: none;
}
.contact-form .form-group input[type=submit],
.contact-form .form-group button {
  margin-top: 5px;
  text-transform: uppercase;
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
  width: 100%;
  padding: 19px 0px;
  font-weight: 700;
}

.map {
  height: 500px;
}


/*** 

====================================================================
	Testimonial Section Three
====================================================================

***/
.testimonial-section-three {
  position: relative;
  padding: 120px 0;
}
.testimonial-section-three .bg {
  top: -325px;
  bottom: 0;
  height: auto;
}
.testimonial-section-three .bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #191e28;
  opacity: 0.9;
}
.testimonial-section-three carousel-outer {
  position: relative;
}

.testimonial-block-three {
  position: relative;
  margin-bottom: 50px;
}
.testimonial-block-three .inner-box {
  min-height: 470px;
  position: relative;
  margin-top: 15px;
  padding: 0 45px 45px;
  -webkit-box-shadow: 0 0 59px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 59px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-top: 3px solid var(--theme-color1);
  background-color: white;
  text-align: center;
}
@media (max-width: 991.98px) {
  .testimonial-block-three .inner-box {
    padding: 0 20px 30px;
  }
}
.testimonial-block-three .inner-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  height: 0;
  pointer-events: none;
  background-color: rgb(200, 203, 203);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-three .inner-box:hover {
  border-color: var(--theme-color1);
}
.testimonial-block-three .inner-box:hover:before {
  height: 100%;
}
.testimonial-block-three .inner-box:hover .thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.testimonial-block-three .inner-box:hover .icon-box:before, .testimonial-block-three .inner-box:hover .icon-box:after {
  background-color: var(--theme-color1);
}
.testimonial-block-three .inner-box:hover .text,
.testimonial-block-three .inner-box:hover .name {
  color: black;
  position: relative;
}
.testimonial-block-three .icon-bulb-6 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  z-index: 3;
}
.testimonial-block-three .icon-box {
  position: relative;
  bottom: 15px;
  width: 121px;
  height: 83px;
  margin: 0 auto;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-three .icon-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-clip-path: polygon(0 0%, 100% 0, 90% 100%, 10% 100%);
          clip-path: polygon(0 0%, 100% 0, 90% 100%, 10% 100%);
}
.testimonial-block-three .icon-box:before {
  position: absolute;
  left: -7px;
  right: -7px;
  top: 0;
  height: 14px;
  content: "";
  -webkit-clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
          clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  background-color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-three .icon-box .icon {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.testimonial-block-three .thumb {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 0px;
  text-align: center;
}
.testimonial-block-three .thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-three .text {
  position: relative;
  font-size: 18px;
  margin-bottom: 20px;
  color: gray;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-three .name {
  color: rgb(79, 75, 75);
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-three .designation {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 0;
  color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-three .icon-box .icon {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.icon-quote {
  width: 82px;
  height: 82px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../image/img/icons/icon-quote.webp);
}


/*** 

====================================================================
    Clients Section
====================================================================

***/
.clients-section {
  position: relative;
}

.client-block {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-right: -1px;
  border: 1px solid #ebebeb;
}
.client-block .image {
  position: relative;
  padding: 20px 30px;
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
  min-height: 290px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.client-block .image:hover img:first-child {
  -webkit-transform: translateY(0) scaleY(1);
          transform: translateY(0) scaleY(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.client-block .image:hover img:nth-child(2) {
  -webkit-transform: translateY(-50%) scaleY(2);
          transform: translateY(-50%) scaleY(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.client-block img {
  position: relative;
  width: auto !important;
  display: inline-block !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.client-block img:first-child {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 1;
  margin: auto;
  -webkit-transform: translateY(50%) scaleY(2);
          transform: translateY(50%) scaleY(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}


/***

==================================================================
	Main Footer
==================================================================

***/
.main-footer {
  position: relative;
  background-color: #020e16;
}
.main-footer .widgets-section {
  position: relative;
  padding: 70px 0 25px;
}
.main-footer .footer-column {
  position: relative;
  margin-bottom: 40px;
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1.2em;
  color: var(--theme-color-light);
  font-weight: 700;
  margin-bottom: 25px;
}
.main-footer .about-widget .logo {
  margin-bottom: 40px;
}
.main-footer .about-widget .text {
  font-size: 16px;
  line-height: 30px;
  color: #e0e0e0;
  margin-bottom: 40px;
}

/*=== User LInks ===*/
.footer-gallery,
.user-links {
  position: relative;
  max-height: 238px;
  padding-right: 16px;
  overflow-y: auto;
  overflow-x: visible;
  scrollbar-width: thin;
}
.user-links li {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 14px;
}
.user-links li a {
  position: relative;
  display: inline-block;
  color: inherit;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.user-links li a:hover {
  color: var(--theme-color-light);
}
.user-links li a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-color1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.user-links li a:hover:before {
  width: 100%;
}
.user-links li i {
  font-weight: 300;
  margin-right: 2px;
  font-size: 10px;
}
.user-links.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.user-links.two-column li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding-right: 15px;
}

.contact-list-two {
  position: relative;
  padding: 0;
}
.contact-list-two li {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.contact-list-two li i {
  position: absolute;
  top: 0px;
  left: 0;
  color: var(--theme-color1);
  font-size: 24px;
  line-height: 24px;
}
.contact-list-two li:last-child {
  margin-bottom: 0;
}
.contact-list-two li a {
  position: relative;
  display: inline-block;
  color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-list-two li a:hover {
  color: var(--theme-color1);
}
.contact-list-two.light li,
.contact-list-two.light a {
  color: var(--theme-color-light);
}

/* Newsletter Form */
.newsletter-form {
  position: relative;
}
.newsletter-form .form-group {
  position: relative;
  margin-bottom: 0;
}
.newsletter-form .form-group input[type=text],
.newsletter-form .form-group input[type=email] {
  position: relative;
  display: block;
  height: 38px;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 36px;
  color: #000000;
  padding: 15px 40px;
  background-color: #FFFFFF;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.newsletter-form .form-group input[type=text]::-webkit-input-placeholder, .newsletter-form .form-group input[type=email]::-webkit-input-placeholder {
  color: #707070;
}
.newsletter-form .form-group input[type=text]::-moz-placeholder, .newsletter-form .form-group input[type=email]::-moz-placeholder {
  color: #707070;
}
.newsletter-form .form-group input[type=text]:-ms-input-placeholder, .newsletter-form .form-group input[type=email]:-ms-input-placeholder {
  color: #707070;
}
.newsletter-form .form-group input[type=text]::-ms-input-placeholder, .newsletter-form .form-group input[type=email]::-ms-input-placeholder {
  color: #707070;
}
.newsletter-form .form-group input[type=text]::placeholder,
.newsletter-form .form-group input[type=email]::placeholder {
  color: #707070;
}
.newsletter-form .form-group .theme-btn {
  margin-top: 10px;
  padding: 6px 20px;
  line-height: 26px;
  width: 100%;
}
.newsletter-form .form-group .theme-btn .btn-title:before {
  display: none;
}
.newsletter-form .form-group .icon {
  position: absolute;
  left: 13px;
  top: 12px;
  font-size: var(--body-font-size);
  line-height: 1em;
  color: var(--theme-color-dark);
  z-index: 3;
}

/*=== Footer Bottom ===*/
.footer-bottom {
  position: relative;
  width: 100%;
}
.footer-bottom .inner-container {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.695);
  padding: 30px 0;
}
.footer-bottom .copyright-text {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  color: #c4c5c7;
  font-weight: 400;
  margin-bottom: 0px;
  letter-spacing: -0.025em;
  text-align: center;
}
.footer-bottom .copyright-text a {
  color: inherit;
}
.footer-bottom .copyright-text a:hover {
  color: var(--theme-color-light);
}

/***

==================================================================
	Main Footer
==================================================================

***/
.main-footer .bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0c0f15;
  opacity: 0.97;
}
.main-footer .icon-turbines-7 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.main-footer .footer-top {
  position: relative;
  padding-top: 88px;
}
.main-footer .footer-top .outer-box {
  position: relative;
  background-color: rgba(255, 255, 255, 0.853);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 80px 30px 64px;
}
@media (max-width: 991.98px) {
  .main-footer .footer-top .outer-box {
    padding: 60px 50px;
  }
}
@media (max-width: 767.98px) {
  .main-footer .footer-top .outer-box {
    -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;
  }
}
@media (max-width: 767.98px) {
  .main-footer .footer-top .outer-box .logo {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .main-footer .footer-top .outer-box .social-icon-two li:nth-child(2) {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .main-footer .footer-top .outer-box .social-icon-two li.title {
    display: none;
  }
}
.main-footer .widgets-section .newsletter-widget {
  padding-left: 28px;
  padding-right: 45px;
}
@media (max-width: 1199.98px) {
  .main-footer .widgets-section .newsletter-widget {
    padding: 0;
  }
}
.main-footer .widgets-section .newsletter-widget .text {
  color: var(--theme-color-light);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 25px;
}

.page-title {
  background-color: var(--theme-color2);
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 140px 0 110px;
  min-height: 250px;
}
@media only screen and (max-width: 768px) {
  .page-title {
    padding: 140px 0 110px;
  }
}
.page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #1313139f;
  opacity: 0.8;
  content: "";
}
.page-title .title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 17px;
}
.page-title .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
  max-width: 520px;
}

.page-breadcrumb {
  position: relative;
  margin-top: 5px;
}
.page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  position: absolute;
  content: "\f105";
  right: -6px;
  top: 1px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  color: #ffffff;
}
.page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color: var(--theme-color3);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: #ffffff;
}

.main-img-box {
  position: relative;
}
.main-img-box .playvideo {
    margin-left: auto;
    background: red;
    color: #fff;
    text-align: center;
    border-radius: 60px;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .45);
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 4;
    animation: shakex2 1.8s ease-in-out infinite;
}
@keyframes shakex2 {
  0% {
    transform: translateX(-3px);
  }
  10% {
    transform: translateX(3px);
  }
  20% {
    transform: translateX(-3px);
  }
  25% {
    transform: translateX(3px);
  }
  30% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0); /* Rest for the remaining 80% (~2s of stillness) */
  }
}

.main-img-box .playvideo::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  border-radius: 50px;
  background-color: transparent;
  -webkit-animation: cdpulse 2s infinite;
  -moz-animation: cdpulse 2s infinite;
  animation: cdpulse 2s infinite;
}
@keyframes cdpulse {
  0% {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, .8);
}
50% {
  box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, .8);
}
100% {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0);
}
}

.warranty {
    position: fixed;
    left: 0px;
    bottom: 150px;
    z-index: 500;
    /*height: 100%;*/
    /*width: 100%;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
}
.warranty .wrnt-close{
    float: right;
    color: white;
    background: #00000091;
    cursor: pointer;
    padding: 3px 6px;
    line-height: 1;
    position: absolute;
    right: 0;
}
.warranty img{
    max-width: 80px;
}
/* share */
.share-btn-box{
  position: relative;
  z-index: 4;
}
.share-btn {
  font-size: 26px;
  font-weight: 600;
  color: black;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-share {
  width: fit-content;
  height: fit-content;
}

.social-share ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.social-share ul li button,
.social-share ul li a {
  color: #fff;
  font-size: 19px;
  line-height: 24px;
  height: 24px;
  width: 34px;
  text-align: center;
  padding: 4px 8px !important;
  border-radius: 3px;
  text-transform: capitalize;
  display: block;
  height: fit-content;
  box-shadow: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.social-share ul li button:hover,
.social-share ul li a:hover {
  opacity: 0.8;
}

.social-share ul li button.facebook,
.social-share ul li a.facebook {
  background: #3B5999;
}

.social-share ul li button.twitter,
.social-share ul li a.twitter {
  background: #1DA1F2;
}

.social-share ul li button.whatsapp,
.social-share ul li a.whatsapp {
  background: #20cb45;
}

.social-share ul li a.google-plus {
  background: #fe6d4c;
}

.social-share ul li button.linkedin,
.social-share ul li a.linkedin {
  background: #0a66c2;
}

.social-share ul li button.telegram {
  background: #0a9ac2;
}

.social-share ul li button.email {
  background: #c2410a;
}




.what-app {
  position: fixed;
  z-index: 99;
}

.btn-whatsapp-pulse-border {
  bottom: 30px;
  left: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 34px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.what-app i {
  font-size: 44px;
  color: #fff;
}

@keyframes pulse-border {
  0% {
      padding: 25px;
      opacity: 0.75;
  }

  75% {
      padding: 50px;
      opacity: 0;
  }

  100% {
      opacity: 0;
  }
}

@media (max-width: 768px){
    .what-app i {
      font-size: 34px;
      color: #fff;
    }
    .btn-whatsapp-pulse{
        bottom: 56px;
        padding: 25px;
    }
}

/* festival */
        .hide-festival{
          transform: scale(0);
        }
        .festival{
          max-width: 100%;
          width: 100%;
          height: 100%;
          align-items: center;
          justify-content: center;
          position: fixed;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 9999;
          display: flex;
          margin: 0 auto;
          background: #0000008a;
          transition: all 400ms ease-in;
        }
        .festival-box{
         max-width: 90%;
         width: 750px;
         margin: auto;
         position: relative;
         z-index: 4;
        }
        .festival-box img{
          width: 100%;
        }
        .close-fest{
          position: absolute;
          right: 0px;
          top: 0px;
          z-index: 26;
          height: 25px;
          width: 25px;
          /* border-radius: 50%; */
          background: black;
          font-size: 14px;
          font-weight: bold;
          color: white;
          text-align: center;
          line-height: 25px;
          cursor: pointer;
        }
        .ovrly-close-fest{
          width: 100%;
          height: 100%;
          position: absolute;
          left: 0;
          top: 0;
          z-index: 2;
          cursor: zoom-out;
        }

#searchResults a{
    color:#fff;
}
#searchResults {
    max-height: 300px;
    overflow: hidden;
}
