﻿@charset "UTF-8";
/*=========================
    01. Start Default css 
==========================*/

html {
  font-size: 100%;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sp{
  padding: 70px 0px 0px 0px;
}

.sp2{
  padding: 70px 0px 70px 0px;
}
:root {
	--font-default: 'Outfit', sans-serif;
	--font-secondary: 'Shadows Into Light Two', cursive;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #1f4e3d;
	--dark-secondary: #1F1E17;
	--color-secondary: #49a760;
	--color-primary: #f9b30b;
	--color-heading: #04000b;
	--color-paragraph: #666666;
  --elixir-parrot: #98C339;
    --elixir-green: #0a6933;
    --elixir-orange: #5e2813;	
    --elixir-black: #2B2A29;
    --elixir-white: #ffffff;
    --elixir-offwhite: #ddd;
    --elixir-gray: #999;
	--box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
	--box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #e9f1ee;
	--bg-gradient: linear-gradient(97deg, #49a760 50%, rgba(252,197,27,1) 100%);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}
i,
span,
a {
  display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-paragraph);
  margin: 0px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}
h1 {
  font-size: 60px;
  line-height: 1em;
}
h2 {
  font-size: 45px;
  line-height: 55px;
}
h3 {
  font-size: 35px;
  line-height: 45px;
}
h4 {
  font-size: 24px;
  line-height: 35px;
}
h5 {
  font-size: 20px;
  line-height: 28px;
}
h6 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}
ul, ol {
  margin: 0px;
  padding: 0px;
  /* list-style-type: none; */
  list-style-type: circle;
}
p {
  color: var(--color-paragraph);
  margin: 0px;
}
input, textarea {
  display: inherit;
}
img {
  max-width: 100%;
}
body {
  font-weight: normal;
  font-style: normal;
  color: var(--color-paragraph);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 30px;
  overflow-x: hidden;
}
a {
	outline: none;
	text-decoration: none;
}
.bg-dark {
	background-color: var(--dark) !important;
}
.text-light a {
	color: var(--white);
}	

/*=========================
    02. Start Header css 
==========================*/
/* Header Top Bar CSS */
.header-top-bar {
  color: rgba(254, 254, 255, 0.7);
  padding: 4px 0;
}
@media (max-width: 767px) {
  .header-top-bar span.text {
    display: none;
  }
}
@media (max-width: 1199px) {
  .top-bar-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .top-bar-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.top-bar-left .lang-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-bar-left .nice-select {
  background-color: transparent;
  border-radius: 0;
  color: var(--elixir-white);
  padding-right: 15px;
}
.top-bar-left .nice-select:after {
  color: var(--elixir-orange);
}
.top-bar-left .nice-select .option {
  color: var(--elixir-black);
}
.top-bar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1199px) {
  .top-bar-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .top-bar-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-center;
  }
}
.top-bar-right span i {
  color: var(--elixir-orange);
  margin-right: 10px;
}
@media (max-width: 767px) {
  .top-bar-right ul.social-link:before {
    display: none;
  }
}
.top-bar-right ul.social-link li a:not(first-child) {
  margin-left: 20px;
}
@media (max-width: 450px) {
  .top-bar-right ul.social-link li a:not(first-child) {
    margin-left: 10px;
  }
}
.top-bar-right ul.social-link li a:hover {
  color: var(--elixir-orange);
}
.top-bar-one .top-bar-left .lang-dropdown:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "|";
  margin-left: 35px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .top-bar-one .top-bar-left .lang-dropdown:before {
    display: none;
  }
}
.top-bar-two {
  background-color: var(--elixir-black);
}
.top-bar-two .top-bar-left {
  padding-left: 215px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .top-bar-two .top-bar-left {
    padding-left: 185px;
  }
}
@media (max-width: 1199px) {
  .top-bar-two .top-bar-left {
    padding-left: 0;
  }
}
/* Header Middle CSS */
.header-middle {
  padding: 30px 0;
}
@media (max-width: 991px) {
  .header-middle {
    display: none;
  }
}
.header-middle .contact-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 991px) {
  .header-middle .contact-information {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header-middle .contact-information .information-item_one {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
}
@media (max-width: 767px) {
  .header-middle .contact-information .information-item_one {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 451px) and (max-width: 767px) {
  .header-middle .contact-information .information-item_one {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
.header-middle .contact-information .button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .header-middle .contact-information .button {
    display: none;
  }
}
.header-middle .contact-information .button .main-btn {
  padding: 15px 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .header-middle .contact-information .button .main-btn {
    padding: 15px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-middle .contact-information .button .main-btn {
    padding: 15px 14px;
  }
}

/* Header Navigation CSS */
.primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-navigation .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.header-navigation .nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.header-navigation .main-menu ul > li {
  display: inline-block;
  position: relative;
  margin: 0 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .header-navigation .main-menu ul > li {
    margin: 0 15px;
  }
}
.header-navigation .main-menu ul > li.has-children > a:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  display: inline-block;
  font-size: 14px;
  margin-left: 5px;
  margin-top: 2px;
  float: right;
}
@media (max-width: 1199px) {
  .header-navigation .main-menu ul > li.has-children > a:after {
    display: none;
  }
}
.header-navigation .main-menu ul > li.has-children .sub-menu li.has-children:hover > a:after {
  color: var(--elixir-white);
}
.header-navigation .main-menu ul > li.has-children .sub-menu li.has-children > a:after {
  margin-left: 0px;
  margin-right: 5px;
  color: var(--elixir-black);
}
.header-navigation .main-menu ul > li > a {
  display: block;
  font-size: 15px;
  color: var(--elixir-black);
  font-weight: 600;
  text-transform: capitalize;
  padding: 20px 0;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .header-navigation .main-menu ul > li > a {
    font-size: 16px;
  }
}
.header-navigation .main-menu ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  min-width: 250px;
  background-color: var(--elixir-white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  height: auto;
  text-align: left;
}
.header-navigation .main-menu ul > li .sub-menu li {
  display: block;
  margin: 0;
}
.header-navigation .main-menu ul > li .sub-menu li:last-child > a {
  border-bottom: none;
}
.header-navigation .main-menu ul > li .sub-menu li a {
  display: block;
  padding: 7px 7px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  line-height: 2;
  margin: 0;
  border-bottom: 1px solid var(--elixir-offwhite);
}
.header-navigation .main-menu ul > li .sub-menu li .submenu-link{
  padding: 6px 6px;
  line-height: 1.5;

}
.header-navigation .main-menu ul > li .sub-menu li a:hover {
  background-color: var(--color-primary);;
  color: var(--elixir-white);;
  border-color: transparent;
}
.header-navigation .main-menu ul > li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover .sub-menu {
  top: 0%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover > a {
  background-color: var(--color-primary);;
  color: var(--elixir-white);;
}

.header-navigation .main-menu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-navigation .main-menu ul > li .dd-trigger {
  display: none;
}
.header-navigation.breakpoint-on .sidebar-logo {
  display: block;
}
.header-navigation.breakpoint-on .nav-menu {
  text-align: left;
  background-color: var(--elixir-white);;
  position: fixed;
  top: 0;
  left: -270px;
  z-index: 9999;
  width: 270px;
  height: 100%;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  padding: 0;
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 40px;
}
.header-navigation.breakpoint-on .nav-menu.menu-on {
  left: 0;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li {
  display: block;
  margin: 0;
  border-bottom: 1px solid var(--elixir-offwhite);;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li:last-child {
  border-bottom: 0;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li.active .sub-menu {
  border-top: 1px solid var(--elixir-offwhite);;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li a {
  display: block;
  border-bottom: 1px solid var(--elixir-gray);;
  color: var(--black);;
  padding: 13px 20px;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  visibility: visible;
  opacity: 1;
  display: none;
  -webkit-transition: none;
  transition: none;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a {
  color: var(--black);;
  padding: 0px 20px 0 40px;
  line-height: 45px !important;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a:hover {
  border-color: var(--elixir-gray);;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .dd-trigger {
  display: block;
  position: absolute;
  right: 0;
  height: 42px;
  width: 45px;
  top: 0;
  border-left: 1px solid var(--black);;
  z-index: 2;
  background: transparent;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  color: var(--black);;
  font-size: 20px;
}
.header-navigation.breakpoint-on .nav-menu .main-menu.menu-on {
  left: 0;
}
.header-navigation.breakpoint-on .navbar-toggler, .header-navigation.breakpoint-on .navbar-close {
  display: block;
  margin-right: 2rem
}
@media(max-width: 430px) {
  .header-navigation.breakpoint-on .navbar-toggler {
      margin-right: 0px !important;
  }
}



.header-navigation .navbar-toggler {
  padding: 9px 6px;
  border: 1px solid var(--black);;
  background-color: transparent;
  cursor: pointer;
  display: none;
  margin-left: 49px;
}
.header-navigation .navbar-toggler span {
  position: relative;
  background-color: var(--black);;
  border-radius: 3px;
  display: block;
  height: 1.5px;
  padding: 0;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}
.header-navigation .navbar-toggler span:not(:first-child) {
  margin-top: 5px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}

.header-navigation .nav-menu .call-button, .header-navigation .nav-menu .menu-button {
  display: none;
}
.header-navigation.breakpoint-on .nav-menu .call-button, .header-navigation.breakpoint-on .nav-menu .menu-button {
  padding: 30px 20px;
}
@media (max-width: 767px) {
  .header-navigation.breakpoint-on .nav-menu .call-button, .header-navigation.breakpoint-on .nav-menu .menu-button {
    display: block;
  }
}
.header-navigation.breakpoint-on .nav-menu .call-button {
  padding-top: 0;
}

.call-button span {
  color: var(--black);;
  font-weight: 600;
}
.call-button span i {
  margin-right: 10px;
}
.call-button span a {
  text-decoration: underline;
  font-weight: 600;
}
.call-button span a:hover {
  color: var(--color-primary);;
}

/* Header Sticky */
.header-navigation.sticky {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--elixir-white);;
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(110, 104, 162, 0.1);
          box-shadow: 0px 10px 30px 0px rgba(110, 104, 162, 0.1);
}
.navigation-one.sticky {
  padding: 15px 0;
}
@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
/* Navigation Style */
.navigation-one.breakpoint-on {
  padding: 15px 0;
}
.navigation-one .primary-menu {
  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;
}
.navigation-one .nav-right-item, .navigation-one .site-branding {
  display: none;
}
@media (max-width: 1199px) {
  .navigation-one .nav-right-item, .navigation-one .site-branding {
    display: block;
  }
}
.navigation-one .main-menu {
  position: relative;
  z-index: 2;
  margin-bottom: -32.5px;
}
.navigation-one .main-menu > ul {
  font-size: 0;
}
.navigation-one .main-menu > ul > li {
  margin: 0;
}
.navigation-one .main-menu > ul > li:last-child > a:before {
  display: none;
}
.navigation-one .main-menu > ul > li > a {
  position: relative;
  padding: 28.5px 61.9px;
  background-color: #f8f6ef;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-one .main-menu > ul > li > a {
    padding: 28.5px 57.9px;
  }
}
.navigation-one .main-menu > ul > li > a:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(31, 37, 49, 0.12);
  z-index: -1;
}
.navigation-one .main-menu > ul > li > a.active {
  background-color: var(--color-primary);;
  color: var(--black);;
}
.navigation-one .main-menu > ul > li > a.active:before {
  width: 100%;
  background-color: transparent;
  background: url(../images/shape/menu-pattern.png) no-repeat center;
  background-size: cover;
}
.navigation-one .main-menu > ul > li:hover > a {
  background-color: var(--color-primary);;
  color: var(--black);;
}
.navigation-one .main-menu > ul > li:hover > a:before {
  width: 100%;
  background-color: transparent;
  background: url(../images/shape/menu-pattern.png) no-repeat center;
  background-size: cover;
}

.navigation-two .site-branding {
  max-width: 240px;
  padding: 8px 0px 8px 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;
}

.navigation-two .side-site {
  max-width: 174px;
  padding: 8px 0px 8px 0;
  border-right: 1px solid var(--elixir-white);;
  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;
}
@media only screen and (min-width: 1651px) and (max-width: 1750px) {
  .navigation-two .site-branding {
    padding: 16px 50px 16px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-two .site-branding {
    padding: 16px 40px 16px 0;
  }
}
@media (max-width: 430px) {
  .navigation-two .site-branding {
      padding: 5px 10px 5px 0 !important;
  }
}

.navigation-two .primary-menu {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navigation-two .primary-menu .nav-inner-menu {
  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%;
  margin-left: 45px;
}
@media only screen and (min-width: 1651px) and (max-width: 1750px) {
  .navigation-two .primary-menu .nav-inner-menu {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-two .primary-menu .nav-inner-menu {
    margin-left: 20px;
  }
}
@media (max-width: 1199px) {
  .navigation-two .primary-menu .nav-inner-menu {
    margin-left: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.navigation-two .main-menu ul > li > a {
  padding: 33px 0;
}
.navigation-two .nav-right-item .call-button {
  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;
  padding: 27px 70px;
  border-right: 1px solid #e8e8e7;
  border-left: 1px solid #e8e8e7;
}
@media only screen and (min-width: 1651px) and (max-width: 1750px) {
  .navigation-two .nav-right-item .call-button {
    padding: 27px 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-two .nav-right-item .call-button {
    padding: 27px 30px;
  }
}
@media (max-width: 1199px) {
  .navigation-two .nav-right-item .call-button {
    padding: 27px 20px;
  }
}
@media (max-width: 767px) {
  .navigation-two .nav-right-item .call-button {
    display: none;
  }
}
.navigation-two .nav-right-item .menu-button {
  margin-left: 70px;
}
@media only screen and (min-width: 1651px) and (max-width: 1750px) {
  .navigation-two .nav-right-item .menu-button {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-two .nav-right-item .menu-button {
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  .navigation-two .nav-right-item .menu-button {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .navigation-two .nav-right-item .menu-button {
    display: none;
  }
}

.navigation-three.breakpoint-on {
  padding: 10px 0;
}
.navigation-three .site-branding {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  margin-bottom: -120px;
}
@media (max-width: 1199px) {
  .navigation-three .site-branding {
    margin-bottom: -90px;
  }
}
.navigation-three .site-branding .brand-logo {
  padding: 35px;
  max-width: 190px;
  background-color: var(--color-primary);;
  border-radius: 7px;
}
@media (max-width: 1199px) {
  .navigation-three .site-branding .brand-logo {
    padding: 15px 25px;
  }
}
.navigation-three .site-branding .sticky-logo {
  display: none;
}
.navigation-three .primary-menu {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navigation-three .primary-menu .nav-inner-menu {
  width: 100%;
  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-left: 45px;
}
@media (max-width: 1199px) {
  .navigation-three .primary-menu .nav-inner-menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.navigation-three .nav-right-item .call-button {
  margin-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-three .nav-right-item .call-button {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .navigation-three .nav-right-item .call-button {
    display: none;
  }
}
.navigation-three .nav-right-item .menu-button {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .navigation-three .nav-right-item .menu-button {
    display: none;
  }
}
.navigation-three.sticky {
  padding: 15px 0;
}
.navigation-three.sticky .site-branding {
  margin-top: 0;
  margin-bottom: 0;
}
.navigation-three.sticky .site-branding .brand-logo {
  display: none;
  background-color: transparent;
  padding: 0;
}
.navigation-three.sticky .site-branding .sticky-logo {
  display: block;
}

.navigation-four {
  background-color: var(--black);;
}
.navigation-four .primary-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navigation-four .site-branding {
  margin-top: -50px;
}
.navigation-four .site-branding .brand-logo {
  background-color: var(--color-primary);;
  padding: 25px 35px;
  max-width: 190px;
}
@media (max-width: 1199px) {
  .navigation-four .site-branding .brand-logo {
    padding: 10px 15px;
  }
}
.navigation-four .site-branding .sticky-logo {
  display: none;
}
@media (max-width: 1199px) {
  .navigation-four .site-branding {
    margin-top: 0;
  }
}
.navigation-four .nav-inner-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 50px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.navigation-four .nav-inner-menu .bar-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-four .nav-inner-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-four .main-menu ul > li {
    margin: 0 10px;
  }
}
.navigation-four .main-menu ul > li > a {
  color: var(--elixir-white);;
}
.navigation-four .nav-right-item:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "|";
  margin-left: 25px;
  margin-right: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .navigation-four .nav-right-item:before {
    margin-left: 15px;
    margin-right: 25px;
  }
}
@media (max-width: 767px) {
  .navigation-four .nav-right-item:before {
    display: none;
  }
}
.navigation-four .nav-right-item .call-button {
  margin-right: 45px;
}
.navigation-four .nav-right-item .call-button span {
  color: var(--elixir-white);;
}
@media (max-width: 767px) {
  .navigation-four .nav-right-item .call-button {
    display: none;
  }
}
@media (max-width: 767px) {
  .navigation-four .nav-right-item .menu-button {
    display: none;
  }
}
.navigation-four .nav-right-item .menu-button .main-btn.bordered-btn.bordered-yellow {
  color: var(--elixir-white);;
}
.navigation-four .nav-right-item .menu-button .main-btn.bordered-btn.bordered-yellow:hover {
  color: var(--black);;
}
.navigation-four .nav-right-item .navbar-toggler {
  border-color: var(--elixir-white);;
}
.navigation-four .nav-right-item .navbar-toggler span {
  background-color: var(--elixir-white);;
}
.navigation-four.sticky {
  padding: 15px 0;
  background-color: var(--black);;
}
.navigation-four.sticky .site-branding {
  margin-top: 0;
}
.navigation-four.sticky .site-branding .brand-logo {
  padding: 0;
  background-color: transparent;
  display: none;
}
.navigation-four.sticky .site-branding .sticky-logo {
  display: block;
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */

/*====== Extra CSS ======*/
.container-fluid {
  padding-left: 70px;
  padding-right: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .container-fluid {
    padding-left: 50px;
    padding-right: 0px;
  }
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 0px;
  }
}
@media (min-width: 430px) {
  .responsivenave {
    padding-left: 15px !important;
    padding-right: 0px !important;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .ml-lg-70 {
    margin-left: 70px;
  }

  .pl-lg-30 {
    padding-left: 30px;
  }

  .pl-lg-60 {
    padding-left: 60px;
  }

  .pr-lg-70 {
    padding-right: 70px;
  }

  .pl-lg-70 {
    padding-left: 70px;
  }

  .pt-lg-130 {
    padding-top: 130px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-lg-130 {
    padding-top: 130px;
  }
}
.container-1350 {
  max-width: 1380px;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .container-1350 {
    max-width: 1280px;
  }
}
@media (max-width: 1199px) {
  .container-1350 {
    max-width: 100%;
  }
}
ul.social-link li {
  display: inline-block;
}
.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.slick-slide {
  outline: 0;
}
.form_group {
  position: relative;
}
.form_control {
  width: 100%;
  padding: 0 30px;
  height: 60px;
  border: none;
}
textarea.form_control {
  padding-top: 15px;
  display: inherit;
  height: 145px;
}
.section-title .sub-title {
  font-size: 20px;
  font-weight: 800;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--elixir-orange);;
          text-decoration-color: var(--elixir-orange);;
  color: var(--elixir-orange);;
  margin-bottom: 9px;
  padding-bottom: 5px;
  vertical-align: middle;
}
.section-title .sub-title:before {
  display: inline-block;
  content: "";
  font-family: "flaticon";
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
  vertical-align: inherit;
  color: var(--elixir-orange);;
}
.section-title .sub-title:before {
  margin-right: 20px;
}
.section-title .sub-title:after {
  margin-left: 20px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.section-title h2 {
  font-weight: 600;
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
    line-height: 35px;
  }
}
.section-title.section-title-white .sub-title {
  color: var(--elixir-orange);;
}
.section-title.section-title-white h2 {
  color: var(--elixir-white);;
}
.section-title.section-title-left .sub-title:after {
  display: none;
}
.information-item-two .icon, .information-item_one .icon, .sidebar-widget-area .widget.download-widget a i, .sidebar-widget-area .widget.contact-info-widget .contact-info-box .icon, .testimonial-item-four .testimonial-content .author-title-qoute .quote, .testimonial-item-three .testimonial-content .author-title-qoute .quote, .testimonial-item-two .testimonial-content .author-title-quote .quote, .testimonial-slider-three .slick-arrow,
.testimonial-slider-one .slick-arrow, .product-gallery-area .product-thumb-slider .product-img, .product-gallery-area .product-big-slider .product-img, .product-details-wrapper .product-info .product-cart ul li .wishlist-btn, .single-product-item .product-img, .product-search-filter .product-search .search-btn, .pagination ul li a, .play-one_content-box, .video-popup, .project-item-four .img-holder .icon-btn a, .project-item-three .img-holder .icon-btn a, .project-item-two .img-holder .icon-btn a, .project-arrows .slick-arrow, .counter-item-two .icon, .single-category-box .icon, .single-service-item .icon, .service-slider-one .slick-arrow, .hero-area-four .hero-arrows .slick-arrow, .hero-area-two .single-slider .hero-content-inner, .hero-slider-one .slick-arrow, .navigation-three .site-branding {
  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;
}
.p-r {
  position: relative;
}
.z-1 {
  z-index: 1;
}
.z--1 {
  z-index: -1;
}
.z-2 {
  z-index: 2;
}
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
  color: var(--elixir-white);;
}
.text-white P {
  color: var(--elixir-white);;
}
.border-top-1 {
  border-top: 1px solid var(--black);;
}
.border-bottom-1 {
  border-bottom: 1px solid var(--black);;
}
.border-top-white-1 {
  border-top: 1px solid rgba(255, 255, 255, 0.102);
}

/*===== All Color =====*/
.yellow {
  color: var(--elixir-orange);;
}

/*===== All Bg =====*/
.bg-white {
  background-color: var(--elixir-white);;
}

.dark-black-bg {
  background-color: var(--black);;
}
.yellow-bg {
  background-color: var(--elixir-orange);;
}

.light-gray-bg {
  background-color: #f8f6ef !important;
  padding: 40px !important;
}

.white-bg {
  background-color: var(--elixir-white);;
}

/*===== All Button Style =====*/
button {
  border: none;
}

.main-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 12px;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 7px;
  color: #fff;
  line-height: 25px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-btn:after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: 10px;
}
.main-btn.btn-yellow {
  background-color: var(--elixir-orange);;
}
.main-btn.btn-yellow:hover {
  background-color: var(--black);;
  color: #fff;
}

.hero-button .main-btn.btn-yellow {
  border: 2px solid transparent; 
  transition: border-color 0.3s ease; 
}

.hero-button .main-btn.btn-yellow:hover {
  border-color: var(--elixir-orange);; 
}

.main-btn.btn-white {
  background-color: var(--elixir-white);;
  color: var(--black);;
}
.main-btn.btn-white:hover {
  background-color: var(--black);;
  color: var(--elixir-orange);;
}
.main-btn.bordered-btn {
  padding: 14px 30px;
  border: 1px solid var(--black);;
  color: var(--black);;
  background-color: transparent;
}
.main-btn.bordered-btn:hover {
  border-color: transparent;
  background-color: var(--elixir-orange);;
  color: var(--black);;
}
.main-btn.bordered-btn.bordered-white {
  border: 1px solid var(--elixir-white);;
  color: var(--elixir-white);;
}
.main-btn.bordered-btn.bordered-white:hover {
  border-color: transparent;
  background-color: var(--black);;
  color: var(--elixir-orange);;
}
.main-btn.bordered-btn.bordered-yellow {
  border: 1px solid var(--elixir-orange);;
  color: var(--black);;
}
.main-btn.bordered-btn.bordered-yellow:hover {
  border-color: transparent;
  background-color: var(--elixir-orange);;
  color: var(--black);;
}


    /* Start Preloader css */

.preloader {
  background-color: var(--elixir-white);
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  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;
  z-index: 99999;
}
.preloader .loader {
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.preloader img {
  width: 208px;
  height: 100px;
  animation: imageZoom 3s ease-in-out infinite;
  position: relative;
}
@keyframes imageZoom {
  0%, 100% {
    transform: scale(1.3);
    filter: brightness(1.5) grayscale(0.2); 
  }
  50% {
    transform: scale(1);
    filter: brightness(1) grayscale(0); 
  }
}

/*
    Start Back to top css
*/
.back-to-top {
  background: var(--elixir-orange);
  border-radius: 50%;
  bottom: 30px;
  color: var(--elixir-white);;
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 337;
}
.back-to-top:hover, .back-to-top:focus {
  background: var(--elixir-orange);;
  color: var(--elixir-white);;
}

/*=========================
    03. Start Hero css 
==========================*/
.hero-slider-one .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-59%);
          transform: translateY(-59%);
  cursor: pointer;
  width: 55px;
  height: 55px;
  border: 1px solid var(--elixir-white);;
  border-radius: 50%;
  color: var(--elixir-white);;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.hero-slider-one .slick-arrow:hover {
  background-color: var(--elixir-white);;
  border-color: transparent;
  color: var(--black);;
}
.hero-slider-one .slick-arrow.prev {
  left: 7.5%;
}
@media (max-width: 991px) {
  .hero-slider-one .slick-arrow.prev {
    left: 10px;
  }
}
.hero-slider-one .slick-arrow.next {
  right: 7.5%;
}
@media (max-width: 991px) {
  .hero-slider-one .slick-arrow.next {
    right: 10px;
  }
}
.hero-content .tag-line {
  font-size: 24px;
  font-weight: 600;
  text-decoration: underline;
}
.hero-content .hero-button a {
  margin-bottom: 10px;
}
.hero-content .hero-button a:last-child {
  margin-left: 10px;
}
@media (max-width: 450px) {
  .hero-content .hero-button a:last-child {
    margin-left: 0;
    display: none;
  }
}

.hero-area-one .hero-slider-one .slick-arrow:hover {
  background-color: transparent;
  color: var(--elixir-orange);;
  border-color: var(--elixir-orange);;
}
.hero-area-one .single-slider {
  padding: 190px 0 235px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero-area-one .single-slider {
    padding: 50px 0 30px;
  }
}
@media (min-width: 1024px) {
  .hero-area-one .single-slider {
    width: calc(33.333% - 20px); /* Three items per row with some space */
     /* Adds spacing between the sliders */
  }
}   
.hero-area-one .single-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.hero-area-one .single-slider .image-layer:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--black);
  mix-blend-mode: multiply;
  opacity: 0.75;
  z-index: -1;
}
.hero-area-one .single-slider.slick-current .image-layer {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hero-area-one .hero-content {
  position: relative;
  z-index: 2;
}
.hero-area-one .hero-content .tag-line {
  color: var(--elixir-white);;
  margin-bottom: 45px;
}
.hero-area-one .hero-content h1 {
  font-family: "Handlee", cursive;
  color: var(--elixir-white);;
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .hero-area-one .hero-content h1 {
    font-size: 52px;
    line-height: 65px;
  }
}
@media (max-width: 767px) {
    .hero-area-one .hero-content h1 {
        font-size: 27px;
        line-height: 35px;
        
    }
    .about-us-text h2{
        font-size: 27px;
        line-height: 35px;
    }
    .about-us-text .content p{
        text-align: left !important;
    }
}

.about-us-text .content p{
    padding-bottom: 10px;
}
.about-us-text .content p .font-weight-bold{
    text-indent: 0px;
}

@media (max-width: 991px) {
  .hero-area-two .hero-slider-one .slick-arrow.prev {
    left: 0;
  }
}
@media (max-width: 991px) {
  .hero-area-two .hero-slider-one .slick-arrow.next {
    right: 0;
  }
}
.hero-area-two .single-slider {
  position: relative;
  padding: 150px 0;
}
.hero-area-two .single-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.hero-area-two .single-slider .hero-content-inner {
  position: relative;
  z-index: 2;
  background-color: var(--elixir-white);;
  border-radius: 65% 50% 70% 50%/50% 60% 55% 70%;
  width: 650px;
  height: 550px;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-two .single-slider .hero-content-inner {
    width: 600px;
    height: 550px;
  }
}
@media (max-width: 767px) {
  .hero-area-two .single-slider .hero-content-inner {
    width: 100%;
    height: 460px;
  }
}
@media (max-width: 450px) {
  .hero-area-two .single-slider .hero-content-inner {
    width: 100%;
    height: 460px;
    border-radius: 10%;
  }
}
.hero-area-two .single-slider .hero-content-inner .hero-content {
  padding: 20px;
}
.hero-area-two .single-slider .hero-content-inner .hero-content .tag-line {
  color: var(--black);;
  margin-bottom: 27px;
}
.hero-area-two .single-slider .hero-content-inner .hero-content h1 {
  font-family: "Handlee", cursive;
  font-weight: 400;
  font-size: 90px;
  line-height: 100px;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .hero-area-two .single-slider .hero-content-inner .hero-content h1 {
    font-size: 70px;
    line-height: 80px;
  }
}
@media (max-width: 767px) {
  .hero-area-two .single-slider .hero-content-inner .hero-content h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
.hero-area-two .single-slider.slick-current .image-layer {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .hero-area-three .hero-slider-one .slick-arrow.prev {
    left: 2%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .hero-area-three .hero-slider-one .slick-arrow.next {
    right: 2%;
  }
}
.hero-area-three .single-slider {
  padding: 195px 0 190px;
}
@media (max-width: 991px) {
  .hero-area-three .single-slider {
    padding: 190px 0 100px;
  }
}
.hero-area-three .single-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.hero-area-three .single-slider .image-layer:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(31, 30, 23, 0.5);
  z-index: -1;
}
.hero-area-three .single-slider.slick-current .image-layer {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hero-area-three .single-slider .hero-content .tag-line {
  margin-bottom: 20px;
}
.hero-area-three .single-slider .hero-content h1 {
  font-size: 110px;
  margin-bottom: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-three .single-slider .hero-content h1 {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (max-width: 991px) {
  .hero-area-three .single-slider .hero-content h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
.hero-area-three .single-slider .brand-card {
  position: absolute;
  text-align: center;
  bottom: 0;
  right: 200px;
  padding: 60px 40px;
  border-radius: 122.64px 122.64px 0px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-three .single-slider .brand-card {
    right: 50px;
  }
}
@media (max-width: 991px) {
  .hero-area-three .single-slider .brand-card {
    display: none;
  }
}
.hero-area-three .single-slider .brand-card img {
  margin: 0 auto 10px;
}
.hero-area-three .single-slider .brand-card h3 {
  color: var(--elixir-white);;
  font-size: 36px;
}

.hero-area-four {
  position: relative;
  z-index: 1;
}
.hero-area-four .hero-arrows {
  position: absolute;
  bottom: 80px;
  right: 19.25%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .hero-area-four .hero-arrows {
    right: 7.2%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-four .hero-arrows {
    right: 4.6%;
  }
}
.hero-area-four .hero-arrows .slick-arrow {
  width: 55px;
  height: 55px;
  background-color: var(--elixir-white);;
  color: var(--black);;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.hero-area-four .hero-arrows .slick-arrow:hover {
  background-color: var(--elixir-orange);;
}
.hero-area-four .hero-dots {
  position: absolute;
  bottom: 95px;
  right: 27%;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .hero-area-four .hero-dots {
    right: 20%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-four .hero-dots {
    right: 20%;
  }
}
.hero-area-four .hero-dots .slick-dots li {
  margin-left: 5px;
  margin-right: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid var(--elixir-white);;
  background-color: transparent;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.hero-area-four .hero-dots .slick-dots li.slick-active {
  background-color: var(--elixir-white);;
  border-color: transparent;
}
.hero-area-four .single-slider {
  position: relative;
  padding: 163px 0 310px;
}
.hero-area-four .single-slider.slick-current .image-layer {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hero-area-four .single-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1.4s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.hero-area-four .single-slider .image-layer:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  mix-blend-mode: multiply;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-area-four .hero-content {
    margin-bottom: 60px;
  }
}
.hero-area-four .hero-content h1 {
  line-height: 1.3em;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .hero-area-four .hero-content h1 {
    font-size: 70px;
    line-height: 1.2em;
  }
}
@media (max-width: 767px) {
  .hero-area-four .hero-content h1 {
    font-size: 32px;
    line-height: 1;
  }
}
.hero-area-four .hero-play-box .video-popup {
  background-color: var(--elixir-orange);;
  color: var(--black);;
}

.page-banner {
  padding: 190px 0;
}
@media (max-width: 450px) {
    .page-banner{
        padding: 70px 0;
    }
}
.page-banner .brand-card {
  position: absolute;
  bottom: -40px;
  right: 15%;
  display: block;
  padding: 60px 45px;
  background-color: var(--elixir-white);;
  z-index: 2;
  border-radius: 122.64px 122.64px 0px 0px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(208, 208, 208, 0.35);
          box-shadow: 0px 10px 60px 0px rgba(208, 208, 208, 0.35);
}
@media (max-width: 991px) {
  .page-banner .brand-card {
    right: 5%;
    padding: 30px 25px;
  }
}
.page-banner .brand-card img {
  margin-bottom: 10px;
}
.page-banner:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 30px;
  background: url(../images/bg/page-bg-after.png) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.page-banner:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(31, 30, 23, 0.6);
  mix-blend-mode: multiply;
  z-index: -1;
}
.page-banner .page-title h1 {
  color: var(--elixir-white);;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .page-banner .page-title h1 {
    font-size: 48px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .page-banner .page-title h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.page-banner .page-title .breadcrumbs-link li {
  display: inline-block;
  color: var(--elixir-white);;
}
.page-banner .page-title .breadcrumbs-link li:last-child:after {
  display: none;
}
.page-banner .page-title .breadcrumbs-link li:after {
  margin-left: 23px;
  margin-right: 19px;
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  content: "";
}
.page-banner .page-title .breadcrumbs-link li a {
  color: var(--elixir-white);;
}

.error-page-section {
  padding: 100px 0 70px;
}
.error-page-section .error-content img {
  margin-bottom: 100px;
}
.error-page-section .error-content h3 {
  margin-bottom: 35px;
}

/*=========================
    04. Start About css 
==========================*/
/* About Card CSS */
.food-card {
  padding: 30px 20px 25px;
  border: 1px solid rgba(44, 44, 44, 0.102);
  border-radius: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.food-card:hover {
  background-color: var(--elixir-orange);;
  border-color: transparent;
}
.food-card:hover .icon i {
  color: var(--black);;
}
.food-card .icon {
  margin-bottom: 5px;
}
.food-card .icon i {
  color: var(--elixir-orange);;
  font-size: 60px;
  line-height: 1;
}

.theme-user-card {
  padding: 25px 25px 5px;
  text-align: center;
  max-width: 230px;
  max-height: 320px;
  border-radius: 38px;
}
@media (max-width: 767px) {
  .theme-user-card {
    max-width: 270px;
    min-width: 270px;
  }
}
.theme-user-card h3 {
  font-family: "Handlee", cursive;
  font-weight: 400;
  font-size: 31px;
  line-height: 40px;
  margin-bottom: 15px;
}
.theme-user-card img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* About Tab CSS */
.tab-content-box .nav-tabs {
  background-color: var(--elixir-white);;
  border: none;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 30px;
}
@media (max-width: 767px) {
  .tab-content-box .nav-tabs {
    padding: 15px 10px;
  }
}
.tab-content-box .nav-tabs .nav-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.tab-content-box .nav-tabs .nav-item:after {
  display: inline-block;
  content: "|";
  margin-left: 40px;
  margin-right: 38px;
}
@media (max-width: 767px) {
  .tab-content-box .nav-tabs .nav-item:after {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.tab-content-box .nav-tabs .nav-item:last-child:after {
  display: none;
}
.tab-content-box .nav-tabs .nav-link {
  padding: 0;
  border: none;
  font-size: 18px;
  font-weight: 800;
  color: #efc86b;
}
.tab-content-box .nav-tabs .nav-link:after {
  display: inline-block;
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: 10px;
}
.tab-content-box .nav-tabs .nav-link.active, .tab-content-box .nav-tabs .nav-link:hover {
  color: var(--elixir-orange);;
}

/* About Content CSS */
.about-one_content-box .quote-text {
  border-left: 5px solid var(--elixir-orange);;
  padding-left: 40px;
}
.about-one_content-box .avatar-box .thumb {
  margin-right: 20px;
}

.about-one_image-box {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about-one_image-box .about-img_one {
  position: absolute;
  left: 79px;
  top: 2px;
}
@media only screen and (max-width: 432px) {
  .col-md-5 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-one_image-box .about-img_one {
    left: 0;
  }
}
@media (max-width: 991px) {
  .about-one_image-box .about-img_one {
    left: 80px;
  }
}
@media (max-width: 430px) {
  .about-one_image-box .about-img_one {
    left: 7px;
  }
}
.about-one_image-box .about-img_one:after {
  position: absolute;
  content: "";
  right: -10px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  border-right: 10px solid var(--elixir-white);;
  border-bottom: 10px solid var(--elixir-white);;
}
.about-one_image-box .about-img_two {
  margin-top: 60px;
}

.about-two_image-box .theme-user-card {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-three-image_box .experience-box {
  position: absolute;
  bottom: 25px;
  left: 85px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 38px;
  padding: 32px 20px;
  max-width: 230px;
}
.about-three-image_box .experience-box h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3em;
}
@media only screen and (max-width: 1024px) {
  .about-three-image_box .experience-box h3 {
    font-size: 20px; /* Adjust the font size for smaller screens */
  }

  .about-three-image_box .experience-box {
    bottom: 10px;  /* Adjust position */
    left: 110px;    /* Adjust the left position */
    max-width: 140px; /* Adjust the max width */
  }
}
.about-three-image_box .about-img_one {
  border-radius: 12px;
  width: 100%;
}
.about-three-image_box .about-img_two {
  border-radius: 15px;
  width: 100%;
}

.about-four_image-box .about-img_two {
  position: absolute;
  bottom: -37%;
  left: 10%;
  border-right: 10px solid var(--elixir-white);;
  border-top: 10px solid var(--elixir-white);;
  border-left: 10px solid var(--elixir-white);;
}

.about-five_image-box {
  margin-top: -70px;
}

.about-section-two:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 100%;
  background-color: var(--elixir-white);;
}

.about-wrapper {
  background-color: var(--elixir-white);;
  position: relative;
  z-index: 2;
  margin-top: -80px;
}

/*=========================
<!--====== Start vision Section ======-->
==========================*/
/* Ensure proper layout for tablet screens (992px) and smaller */
@media (max-width: 992px) {
  .visiondiv {
      display: flex;
      flex-direction: column; /* Stack items vertically */
  }

  .col-lg-8,
  .col-lg-4 {
      width: 100%; /* Make columns full width */
  }

  .col-lg-4 {
      order: -1; /* Place the image above the text */
  }

  .about-one__content {
      margin-bottom: 30px; /* Add spacing below the text */
  }
}

/* Additional adjustments for mobile screens (768px and below) */
@media (max-width: 768px) {
  .about-one__text-title {
      font-size: 1.5rem; /* Adjust title size for smaller screens */
  }

  .about-one__text {
      font-size: 1rem; /* Adjust text size for smaller screens */
  }
}

.about-one__content{
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.about-one__image{
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
/*=========================
    05. Start Features css 
==========================*/
/* Features Wrap CSS */
.features-wrap-one {
  background-color: #f8f6ef;
  padding: 50px 60px 20px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .features-wrap-one {
    padding: 50px 30px 20px;
  }
}

.features-wrap-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .features-wrap-two {
    padding: 0 15px;
  }
}
.features-wrap-two .features-item-two {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 1199px) {
  .features-wrap-two .features-item-two {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .features-wrap-two .features-item-two {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Features Item CSS */
.features-item {
  padding-right: 50px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .features-item {
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .features-item {
    padding-right: 0;
  }
}
.features-item .fill-number {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 85px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  font-weight: 800;
  z-index: -1;
  -webkit-text-stroke-color: rgba(44, 44, 44, 0.08);
}
.features-item .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65px;
          flex: 0 0 65px;
  max-width: 65px;
  height: 65px;
  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;
  background-color: var(--elixir-orange);;
  color: var(--black);;
  font-size: 40px;
  margin-right: 25px;
}
.features-item .text h5 {
  padding-right: 40px;
  margin-bottom: 9px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .features-item .text h5 {
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .features-item .text h5 {
    padding-right: 0;
  }
}

.features-item-two {
  position: relative;
  z-index: 1;
  padding: 65px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.071);
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .features-item-two {
    padding: 65px 30px;
  }
}
@media (max-width: 1199px) {
  .features-item-two {
    border: 1px solid rgba(0, 0, 0, 0.071);
  }
}
@media (max-width: 991px) {
  .features-item-two {
    padding: 65px 30px;
  }
}
.features-item-two .fill-number {
  position: absolute;
  top: 30px;
  left: 50px;
  font-size: 85px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  font-weight: 800;
  z-index: -1;
  -webkit-text-stroke-color: rgba(44, 44, 44, 0.08);
}
.features-item-two .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65px;
          flex: 0 0 65px;
  max-width: 65px;
  height: 65px;
  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;
  background-color: var(--elixir-orange);;
  color: var(--black);;
  font-size: 40px;
  margin-right: 25px;
}
.features-item-two .text h5 {
  margin-bottom: 9px;
}

.features-item-three {
  border: 1px solid rgba(0, 0, 0, 0.071);
  padding: 30px 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .features-item-three {
    padding: 30px 20px;
  }
}
.features-item-three .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65px;
          flex: 0 0 65px;
  max-width: 65px;
  height: 65px;
  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;
  background-color: var(--elixir-orange);;
  color: var(--black);;
  font-size: 40px;
  margin-right: 25px;
}
.features-item-three .text h5 {
  margin-bottom: 9px;
}

/* Why Choose CSS */
.why-choose-one .shape {
  position: absolute;
}
.why-choose-one .shape.shape-one {
  bottom: 100px;
  left: 10%;
}
.why-choose-one .shape.shape-two {
  right: 55px;
  top: 115px;
}

@media (max-width: 991px) {
  .choose-one_content-box {
    padding-top: 100px;
  }
}
.choose-one_content-box .choose-item-list .single-choose-item:after {
  position: absolute;
  content: "";
  top: 30px;
  left: 15px;
  height: 100%;
  border-left: 1px dashed rgba(44, 44, 44, 0.149);
  z-index: -1;
}

.choose-one_img-box {
  padding-right: 70px;
}
.choose-one_img-box .choose-img_two {
  position: absolute;
  right: 0;
  bottom: -100px;
}

.single-choose-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-choose-item:last-child:after {
  display: none;
}
.single-choose-item:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  font-weight: 700;
  color: var(--white);;
  font-family: "Font Awesome 5 Pro";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  max-width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.single-choose-item .text {
  margin-top: -5px;
}
.single-choose-item .text h5 {
  margin-bottom: 5px;
}

/*=========================
    06. Start Service css 
==========================*/
/* Service Slider CSS */
.service-slider-one {
  margin-left: -15px;
  margin-right: -15px;
}
.service-slider-one .single-service-item-two {
  margin-left: 15px;
  margin-right: 15px;
}
.service-slider-one .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid var(--elixir-orange);;
  font-size: 20px;
  color: var(--black);;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.service-slider-one .slick-arrow:hover {
  background-color: var(--elixir-orange);;
  border-color: transparent;
  color: var(--black);;
}
.service-slider-one .slick-arrow.prev {
  left: -220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .service-slider-one .slick-arrow.prev {
    left: -40px;
  }
}
.service-slider-one .slick-arrow.next {
  right: -220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .service-slider-one .slick-arrow.next {
    right: -40px;
  }
}

/* Service Section CSS */
.service-one:after, .service-one:before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  background-size: contain;
}
.service-one:before {
  top: -15px;
  background: url(../images/shape/top.png) no-repeat center;
  height: 16px;
}
.service-one:after {
  bottom: -24px;
  height: 25px;
  background: url(../images/shape/bottom.png) no-repeat center;
}
.service-one .shape {
  position: absolute;
  z-index: -1;
  bottom: 0;
}
.service-one .shape.shape-one {
  left: 35px;
}
.service-one .shape.shape-two {
  right: 35px;
}

.service-two {
  padding-bottom: 260px;
}
.service-two .slick-arrow {
  border: 1px solid var(--elixir-white);;
  color: var(--elixir-white);;
}
.service-two .slick-arrow:hover {
  background-color: var(--elixir-white);;
  color: var(--black);;
}

/* Service Wrap CSS */
.services-wrap-one {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  padding-left: 90px;
  padding-right: 90px;
  border-radius: 12px;
}
@media (max-width: 1199px) {
  .services-wrap-one {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.popular-service .img-holder img {
  width: 100%;
}

/* Service Item CSS */
.service-box {
  height: 180px;
  padding: 30px 30px 15px;
  background-color: #181712;
  border-radius: 7px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.service-box:hover {
  border-color: var(--elixir-orange);;
}

.service-box .icon {
  font-size: 60px;
  line-height: 1;
  color: var(--elixir-orange);;
  margin-bottom: 10px;
}
.service-box .text h3.title {
  font-size: 17px;
  font-weight: 700;
  color: var(--elixir-white);;
  line-height: 23px;
}
.service-box:hover .text h3.title {
  color: var(--elixir-orange);;
}

.service-box:hover .icon{
  filter: brightness(0) invert(1);
}

.service-box-two {
  padding: 0 20px;
}
@media (max-width: 1199px) {
  .service-box-two {
    padding: 0 25px;
  }
}
.service-box-two .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--elixir-white);;
  margin-bottom: 19px;
}
.service-box-two .text h3.title {
  font-size: 17px;
  line-height: 23px;
}

.single-service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-service-item.card-rtl {
  direction: rtl;
  text-align: right;
}
.single-service-item.card-rtl .icon {
  margin-right: 0px;
  margin-left: 30px;
}
.single-service-item .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  max-width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f8f6ef;
  margin-right: 30px;
}
.single-service-item .text h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 2px;
}
.single-service-item .text h3:hover {
  color: var(--elixir-orange);;
}

.single-service-item-two .img-holder img {
  width: 100%;
}
.single-service-item-two .text {
  position: relative;
  background-color: var(--elixir-white);;
  padding: 20px 35px 80px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -60px;
  border-radius: 7px;
}
.single-service-item-two .text h3.title {
  font-size: 24px;
}
.single-service-item-two .text .main-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 13px 30px;
}

/* Service Details CSS */
.service-details-wrapper {
  padding-right: 35px;
}
@media (max-width: 1199px) {
  .service-details-wrapper {
    padding-right: 0;
  }
}
.service-details-wrapper .content {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -80px;
  background-color: var(--elixir-white);;
  padding: 30px 45px 35px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .content h3.title {
    font-size: 22px;
    line-height: 30px;
  }
}
.service-details-wrapper .service-content {
  padding-top: 30px;
  border-top: 1px solid rgba(31, 30, 23, 0.102);
}
.service-details-wrapper .service-content > p {
  margin-bottom: 35px;
}
.service-details-wrapper .service-content .choose-item-list {
  padding-right: 30%;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-content .choose-item-list {
    padding-right: 0;
  }
}
.service-details-wrapper .service-content .content-img {
  margin-bottom: 30px;
}
.service-details-wrapper .service-content > h4 {
  margin-bottom: 10px;
}

/*=========================
    07. Start Category css 
==========================*/
/* Category Section CSS */
.category-one {
  background-color: #f8f6ef;
  padding-bottom: 220px;
}
.category-one:after, .category-one:before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  background-size: contain;
}
.category-one:before {
  top: -15px;
  background: url(../images/shape/top2.png) no-repeat center;
  height: 16px;
}
.category-one:after {
  bottom: -24px;
  height: 25px;
  background: url(../images/shape/bottom2.png) no-repeat center;
}
.category-one .shape {
  position: absolute;
}
.category-one .shape.shape-one {
  bottom: 150px;
  left: 60px;
}
.category-one .shape.shape-two {
  top: 85px;
  right: 0;
}

/* Category Item CSS */
.single-category-item .category-img img {
  width: 100%;
}
.single-category-item .category-info {
  padding: 13px 20px;
}
.single-category-item .category-info h3.title {
  font-size: 20px;
  line-height: 30px;
}
.single-category-item .category-info .arrow-btn {
  font-size: 20px;
  color: var(--black);;
}
.single-category-item .category-info h3.title:hover, .single-category-item .category-info .arrow-btn:hover {
  color: var(--elixir-orange);;
}

.category-wrapper {
  position: relative;
  background-color: #f8f6ef;
  padding: 80px 90px 40px;
  margin-left: -90px;
  margin-right: -90px;
  margin-bottom: -490px;
}
@media (max-width: 1199px) {
  .category-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding: 40px 50px 40px;
  }
}

.single-category-box {
  position: relative;
  z-index: 1;
  background-color: var(--elixir-white);;
  overflow: hidden;
  padding: 35px 30px;
  border-radius: 7px;
}
.single-category-box:hover:after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.single-category-box:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 5px;
  border-radius: 0 0 7px 7px;
  background-color: var(--elixir-orange);;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-category-box .icon {
  width: 200px;
  height: 155px;
  margin-bottom: 20px;
}
.single-category-box .text h3.title {
  font-size: 22px;
  line-height: 30px;
}
.single-category-box .text h3.title:hover {
  color: var(--elixir-orange);;
}

/*=========================
    08. Start Counter css 
==========================*/
/* Contact Wrapper CSS */
.Counter-header{
  color: #096832;
}
.counter-wrap-one {
  margin: 0 -20px;
  padding: 20px;
  border: 1px solid white;
}
@media (max-width: 991px) {
  .counter-wrap-one {
    margin: 0;
    border: none;
  }
}
.counter-wrap-one .counter-inner-box {
  background-color: var(--elixir-white);;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(217, 217, 217, 0.3);
          box-shadow: 0px 10px 30px 0px rgba(217, 217, 217, 0.3);
          border: none;
}
@media (max-width: 991px) {
  .counter-wrap-one .counter-inner-box {
    border: none;
  }
}

.counter-wrap-two {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Section CSS */
.fun-fact-two .fun-three_img {
  position: absolute;
  bottom: 130px;
  right: 19%;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .fun-fact-two .fun-three_img {
    right: 10%;
  }
}
@media (max-width: 1199px) {
  .fun-fact-two .fun-three_img {
    display: none;
  }
}

/* Contact Item CSS */
.counter-item {
  border-right: 1px solid rgba(44, 44, 44, 0.102);
}
@media (max-width: 991px) {
  .counter-item {
    border-right: none;
  }
}
.counter-item:last-child {
  border-right: none;
}
.counter-item .counter-inner {
  padding: 45px 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item .counter-inner {
    padding: 45px 18px;
  }
}
@media (max-width: 991px) {
  .counter-item .counter-inner {
    padding: 45px 40px;
    border: 1px solid rgba(44, 44, 44, 0.102);
    text-align: center;
  }
}
.counter-item .counter-inner p {
  font-weight: 600;
}

.counter-item-two {
  background-color: #f8f6ef;
  padding: 40px 35px 30px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.counter-item-two .hover-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.counter-item-two .hover-icon i {
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
}
.counter-item-two:hover {
  background-color: var(--black);;
}
.counter-item-two:hover .hover-icon {
  visibility: visible;
  opacity: 1;
}
.counter-item-two:hover .text h2.number, .counter-item-two:hover .text p {
  color: var(--elixir-white);;
}
.counter-item-two .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  margin-bottom: 20px;
}
.counter-item-two .icon i {
  font-size: 35px;
  color: var(--black);;
}
.counter-item-two .text h2.number {
  font-size: 35px;
  line-height: 1.3em;
}
.counter-item-two .text p {
  font-weight: 600;
}

@media (max-width: 991px) {
  .single-counter-item {
    text-align: center;
  }
}

.single-counter-card {
  background-color: var(--elixir-white);;
  padding: 30px 30px 20px;
  border-radius: 7px;
}
@media (max-width: 1199px) {
  .single-counter-card {
    padding: 30px 20px 20px;
  }
}
.single-counter-card .icon i {
  color: var(--elixir-orange);;
  font-size: 50px;
}
@media (max-width: 1199px) {
  .single-counter-card .text h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
.single-counter-card .text p {
  font-weight: 600;
}

/*=========================
    09. Start Portfolio css 
==========================*/
.portfolio-filter-button {
  background-color: #f8f6ef;
}
.portfolio-filter-button ul.filter-btn li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);;
  cursor: pointer;
  padding: 25px 5px;
  margin: 0 15px;
}
.portfolio-filter-button ul.filter-btn li:hover:after, .portfolio-filter-button ul.filter-btn li.active:after {
  visibility: visible;
  width: 100%;
  opacity: 1;
}
.portfolio-filter-button ul.filter-btn li:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  content: "";
  background-color: var(--elixir-orange);;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* Project Slider CSS */
.projects-slider-one {
  margin-left: -15px;
  margin-right: -15px;
}
.projects-slider-one .project-item {
  margin-left: 15px;
  margin-right: 15px;
}

.projects-slider-two {
  margin-left: -15px;
  margin-right: -15px;
}
.projects-slider-two .project-item-two {
  margin-left: 15px;
  margin-right: 15px;
}

.projects-slider-three {
  margin-left: -15px;
  margin-right: -15px;
}
.projects-slider-three .project-item-four {
  margin-left: 15px;
  margin-right: 15px;
}
.projects-slider-three .project-item-four:nth-child(even) {
  margin-top: 50px;
}

.project-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project-arrows .slick-arrow {
  z-index: 1;
  cursor: pointer;
  width: 55px;
  height: 55px;
  border-radius: 5px;
  color: var(--black);;
  font-size: 18px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.2);
          box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.2);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-arrows .slick-arrow.prev {
  margin-right: 10px;
}
.project-arrows .slick-arrow:hover {
  background-color: var(--elixir-orange);;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(237, 206, 56, 0.5);
          box-shadow: 0px 10px 60px 0px rgba(237, 206, 56, 0.5);
}

/* Project Item CSS */
.project-item:hover .img-holder .hover-portfolio {
  visibility: visible;
  opacity: 1;
}
.project-item:hover .img-holder .hover-content {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.project-item .img-holder {
  position: relative;
  overflow: hidden;
}
.project-item .img-holder img {
  width: 100%;
  height: 100%;
}

.project-item .img-holder .hover-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.70196)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
  padding: 30px 30px 25px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-item .img-holder .hover-content {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.project-item .img-holder .hover-content h3 {
  font-family: "Handlee", cursive;
  color: var(--elixir-white);;
  font-weight: 400;
}
.project-item .img-holder .hover-content p {
  font-weight: 600;
  font-size: 16px;
  color: var(--elixir-orange);;
}

.project-item-two:hover .img-holder .hover-portfolio {
  visibility: visible;
  opacity: 1;
}
.project-item-two:hover .img-holder .icon-btn {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.project-item-two:hover .img-holder .hover-content {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.project-item-two .img-holder {
  position: relative;
  overflow: hidden;
}
.project-item-two .img-holder img {
  width: 100%;
}
.project-item-two .img-holder .hover-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 30, 23, 0.651);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 40px 50px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-item-two .img-holder .icon-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.project-item-two .img-holder .icon-btn a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  color: var(--black);;
  font-size: 20px;
}
.project-item-two .img-holder .hover-content {
  padding-right: 35%;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 0.45s ease-out 0s;
  transition: all 0.45s ease-out 0s;
}
.project-item-two .img-holder .hover-content h3.title {
  color: var(--elixir-white);;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.project-item-two .img-holder .hover-content h3.title:hover {
  color: var(--elixir-orange);;
}

.project-item-three:hover .img-holder .hover-portfolio {
  visibility: visible;
  opacity: 1;
}
.project-item-three:hover .img-holder .icon-btn {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.project-item-three:hover .img-holder .hover-content {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.project-item-three .img-holder {
  position: relative;
  overflow: hidden;
}
.project-item-three .img-holder img {
  width: 100%;
}
.project-item-three .img-holder .hover-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.70196)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 30px 40px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-item-three .img-holder .icon-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.project-item-three .img-holder .icon-btn a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  color: var(--black);;
  font-size: 20px;
}
.project-item-three .img-holder .hover-content {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.project-item-three .img-holder .hover-content h3.title {
  color: var(--elixir-white);;
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
  font-family: "Handlee", cursive;
}
.project-item-three .img-holder .hover-content h3.title:hover {
  color: var(--elixir-orange);;
}
.project-item-three .img-holder .hover-content p {
  font-weight: 600;
  font-size: 16px;
  color: var(--elixir-white);;
}

.project-item-four:hover .img-holder {
  border-radius: 7px;
}
.project-item-four:hover .img-holder .hover-portfolio {
  visibility: visible;
  opacity: 1;
}
.project-item-four:hover .img-holder .icon-btn {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.project-item-four:hover .img-holder .hover-content {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.project-item-four .img-holder {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-item-four .img-holder img {
  width: 100%;
}
.project-item-four .img-holder .hover-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 30, 23, 0.65);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 30px 40px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-item-four .img-holder .icon-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.project-item-four .img-holder .icon-btn a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  color: var(--black);;
  font-size: 20px;
}
.project-item-four .img-holder .hover-content {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.project-item-four .img-holder .hover-content h3.title {
  color: var(--elixir-white);;
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
}
.project-item-four .img-holder .hover-content h3.title:hover {
  color: var(--elixir-orange);;
}

/* Project Details CSS */
.project-details-wrapper .project-content .content {
  padding-top: 35px;
  border-top: 1px solid rgba(44, 44, 44, 0.149);
}
.project-details-wrapper .project-content .content > p {
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .post-navigation-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.post-navigation-item .thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  max-width: 150px;
  height: 150px;
}
.post-navigation-item .text h4 {
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .post-navigation-item .text h4 {
    font-size: 18px;
    line-height: 30px;
  }
}
.post-navigation-item .text h4:hover {
  color: var(--elixir-orange);;
}
.post-navigation-item .text h4 a {
  text-decoration: underline;
}
.post-navigation-item.prev-navigation .thumb {
  margin-right: 40px;
}
.post-navigation-item.next-navigation {
  text-align: right;
  direction: rtl;
}
.post-navigation-item.next-navigation .thumb {
  margin-left: 40px;
}

@media (max-width: 991px) {
  .post-navigation .post-navigation-icon {
    margin: 30px 0;
  }
}

/*=========================
    10. Start Elements css 
==========================*/
.content-box-gap > p {
  margin-bottom: 25px;
  margin-top: 1rem;
}
.content-box-gap > ul {
  margin-bottom: 25px;
}

/* Big Text */
.big-text h2 {
  font-size: 180px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 auto;
  text-align: center;
  color: transparent;
  background: url(../images/Home/Statistics_11.jpg) no-repeat center;
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 800;
}
@media (max-width: 1199px) {
  .big-text h2 {
    font-size: 120px;
  }
}
@media (max-width: 767px) {
  .big-text h2 {
    font-size: 70px;
  }
}

.big-text-two {
  font-size: 300px;
  font-weight: 800;
  color: rgba(44, 44, 44, 0.051);
  line-height: 0.167;
}

/* Offer Section CSS */

.offer-one_image-box {
  position: relative;
  z-index: 1;
  padding: 300px 100px 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .offer-one_image-box {
    padding: 300px 50px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offer-one_image-box {
    padding: 300px 50px 50px;
  }
}
@media (max-width: 767px) {
  .offer-one_image-box {
    padding: 300px 50px 50px;
  }
}
.offer-one_image-box:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(44, 44, 44, 0.3);
}
.offer-one_image-box .content-box h2 {
  font-family: "Handlee", cursive;
  color: var(--elixir-white);;
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offer-one_image-box .content-box h2 {
    font-size: 52px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .offer-one_image-box .content-box h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
.offer-one_image-box .experience-box {
  position: absolute;
  right: -33%;
  bottom: 60%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-color: var(--elixir-orange);;
  padding: 15px 40px;
  color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 24px;
  font-weight: 800;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offer-one_image-box .experience-box {
    right: -53%;
    bottom: 52%;
  }
}
@media (max-width: 991px) {
  .offer-one_image-box .experience-box {
    display: none;
  }
}
.offer-one_content-box {
  padding-left: 70px;
  padding-right: 35%;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .offer-one_content-box {
    padding-right: 10%;
  }
}
@media (max-width: 1199px) {
  .offer-one_content-box {
    padding-right: 0%;
    padding-left: 0;
  }
}

/*about section CTA CSS */
.cta-wrap-one {
  margin-bottom: 30px;
}
.cta-item_one {
  position: relative;
  z-index: 1;
  padding: 50px;
  border-radius: 7px;
}
@media (max-width: 767px) {
  .cta-item_one {
    padding: 50px 30px 30px;
  }
}
.cta-item_one:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 30, 23, 0.2);
  z-index: -1;
}
@media (max-width: 767px) {
  .cta-item_one .text {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cta-item_one .text h2 {
  font-family: "Handlee", cursive;
  font-weight: 400;
  font-size: 50px;
}
@media (max-width: 767px) {
  .cta-item_one .text h2 {
    font-size: 34px;
    line-height: 45px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .cta-item_one .text .main-btn {
    margin-bottom: 20px;
  }
}
.cta-wrap-two .cta-content-box {
  padding: 70px 80px 80px;
  background-color: #f8f6ef;
  border-radius: 7px;
  margin-top: -80px;
}
@media (max-width: 1199px) {
  .cta-wrap-two .cta-content-box {
    padding: 70px 30px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrap-two .cta-content-box {
    padding: 70px 50px 80px;
  }
}
.cta-wrap-two .cta-content-box span.tag-line {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--black);;
  font-weight: 800;
  text-decoration: underline;
  margin-bottom: 12px;
}
.cta-wrap-two .cta-content-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cta-wrap-two .cta-content-box h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
.cta-wrap-two .cta-content-box p {
  color: var(--black);;
  margin-bottom: 30px;
}
.cta-wrap-two .cta-content-box .main-btn.bordered-btn {
  border: 2px solid var(--black);;
}
.cta-wrap-two .cta-content-box .main-btn.bordered-btn:hover {
  background-color: var(--black);;
  color: var(--elixir-orange);;
}

/*about section FAQ CSS */
.faq-one_content-box .card {
  background-color: var(--elixir-white);;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
  border: none;
  border-radius: 0;
}
.faq-one_content-box .card .card-header {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
  border: none;
}
.faq-one_content-box .card .card-header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 30px;
  border: 1px solid #e5e5e5;
  background-color: transparent;
  border-radius: 5px;
  font-weight: 700;
  color: var(--black);;
}
.faq-one_content-box .card .card-header a[aria-expanded]:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 22px;
  margin-left: auto;
}
.faq-one_content-box .card .card-header a[aria-expanded=true] {
  border-color: transparent;
}
.faq-one_content-box .card .card-header a[aria-expanded=true]:after {
  content: "";
}
.faq-one_content-box .card .card-body {
  padding: 30px 30px 20px;
  padding-top: 0;
}
.faq-one_img-box {
  position: relative;
  z-index: 1;
  min-height: 625px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-one_img-box .faq-img-two {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Pagination CSs */
.pagination ul li {
  display: inline-block;
}
.pagination ul li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(44, 44, 44, 0.071);
  font-weight: 600;
  margin-right: 5px;
  color: var(--black);;
}
.pagination ul li a:hover {
  background-color: var(--elixir-orange);;
  border-color: transparent;
}

/*credentials Product Item CSS */
.ratings li {
  display: inline-block;
  color: #bbbbbb;
  font-size: 15px;
}

.single-product-item {
  background-color: var(--elixir-white);;
  border: 1px solid rgba(31, 30, 23, 0.071);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: 425px;
}
.single-product-item:hover {
  border-color: transparent;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
}
.single-product-item:hover .product-img .cart-button {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}
.single-product-item .product-img {
  position: relative;
  min-height: 230px;
  max-height: 230px;
  padding: 20px;
  border-bottom: 1px solid rgba(31, 30, 23, 0.071);
}
.single-product-item .product-img .cart-button {
  position: absolute;
  bottom: 3px;
  width: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-product-item .product-img .cart-button .main-btn {
  padding: 10px 10px;
}
.single-product-item .product-img .pc-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--black);;
  font-weight: 700;
  border-radius: 4px;
  background-color: var(--elixir-orange);;
  padding: 5px 11px;
  line-height: 1;
  font-size: 15px;
}
.single-product-item .product-info {
  text-align: center;
  padding: 30px 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-product-item .product-info {
    padding: 30px 20px;
  }
}
.single-product-item .product-info h3.title {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
}
.single-product-item .product-info h3.title:hover {
  color: var(--elixir-orange);;
}
.single-product-item .product-info .ratings li {
  margin-bottom: 5px;
}
.single-product-item .product-info span.price {
  font-size: 15px;
  font-weight: 600;
}

/*Credentials Team Section CSS */
.farmers-team_two {
  padding-top: 100px;
}
.btn-primary:not(:disabled):not(.disabled):active{
  color: var(--elixir-white);;
  background-color: #096832;
  border-color: #096832;
  box-shadow: 0 0 0 .2rem rgb(10, 105, 51 , 50%);
}

.btn-primary.focus, .btn-primary:focus {
  color: var(--elixir-white);;
  background-color: rgb(249, 179, 11);
  border-color: var(--elixir-orange);;
  box-shadow: 0 0 0 .2rem rgba(212, 163, 49, 0.5);
}
.team-member_one {
  position: relative;
  padding: 0 30px;
  z-index: 1;
}
.team-member_one:hover:after {
  border-color: #096832;
}
.team-member_one:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  border: 5px solid rgba(143, 143, 143, 0.05);
  width: 100%;
  height: 58%;
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.team-member_one .member-info h3.title {
  font-size: 22px;
  line-height: 30px;
}
.team-member_one .member-info h3.title:hover {
  color: #096832;
}
.team-member_one .member-info p.position {
  font-weight: 600;
  padding-bottom: 10px;
}
.team-member_one .member-info ul.social-link {
  padding-top: 10px;
  border-top: 1px solid rgba(31, 30, 23, 0.071);
}
.team-member_one .member-info ul.social-link li {
  margin: 0 10px;
}
.team-member_one .member-info ul.social-link li a:hover {
  color: #096832;
}

.team-member_two {
  padding: 40px 35px 30px;
  border: 5px solid rgba(31, 30, 23, 0.051);
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.team-member_two:hover {
  border-color: var(--elixir-orange);;
}
.team-member_two:hover .member-img .hover-overlay {
  visibility: visible;
  opacity: 1;
}
.team-member_two:hover .member-img ul.social-link {
  opacity: 1;
  visibility: visible;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.team-member_two .member-img {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 185px;
  height: 185px;
  margin-bottom: 12px;
}
.team-member_two .member-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.team-member_two .member-img .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.team-member_two .member-img ul.social-link {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  width: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.team-member_two .member-img ul.social-link li {
  margin-left: 2.5px;
  margin-right: 2.5px;
}
.team-member_two .member-img ul.social-link li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  background-color: var(--elixir-orange);;
  color: var(--black);;
}
.team-member_two .member-img ul.social-link li a:hover {
  background-color: var(--elixir-white);;
  color: var(--black);;
}
.team-member_two .member-info h3.title {
  font-size: 22px;
  line-height: 32px;
}
.team-member_two .member-info h3.title:hover {
  color: var(--elixir-orange);;
}
.team-member_two .member-info p.position {
  font-weight: 600;
}

/* Testimonial Slider CSS */
.testimonial-slider-three,
.testimonial-slider-one {
  margin-left: -15px;
  margin-right: -15px;
}
.testimonial-slider-three .slick-list,
.testimonial-slider-one .slick-list {
  padding: 65px 0;
}
.testimonial-slider-three .testimonial-item,
.testimonial-slider-one .testimonial-item {
  margin-left: 15px;
  margin-right: 15px;
}
.testimonial-slider-one .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  width: 55px;
  height: 55px;
  border-radius: 5px;
  background-color: var(--elixir-orange);;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.2);
          box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.2);
  color: var(--black);;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.testimonial-slider-one .slick-arrow.prev {
  left: -10px;
}
.testimonial-slider-one .slick-arrow.next {
  right: -10px;
}
.testimonial-slider-one .slick-arrow:hover {
  background-color: var(--elixir-white);;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(237, 206, 56, 0.5);
          box-shadow: 0px 10px 60px 0px rgba(237, 206, 56, 0.5);
}

.testimonial-slider-three .slick-arrow.prev {
  left: -90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .testimonial-slider-three .slick-arrow.prev {
    left: -70px;
  }
}
.testimonial-slider-three .slick-arrow.next {
  right: -90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .testimonial-slider-three .slick-arrow.next {
    right: -70px;
  }
}
.testimonial-slider-three .slick-arrow:hover {
  background-color: var(--elixir-orange);;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(237, 206, 56, 0.5);
          box-shadow: 0px 10px 60px 0px rgba(237, 206, 56, 0.5);
}

/* Testimonial One */
.testimonial-one {
  padding: 310px 0 465px;
}
.testimonial-one .container-fluid {
  padding-left: 170px;
  padding-right: 170px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .testimonial-one .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 1199px) {
  .testimonial-one .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Testimonial Two */
.testimonial-two .shape {
  position: absolute;
}
.testimonial-two .shape.shape-one {
  bottom: 0;
  left: 0;
}

/* Testimonial Item CSS */
.testimonial-item {
  position: relative;
  background-color: #f6f3eb;
  border-radius: 7px;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(109, 109, 109, 0.15);
          box-shadow: 0px 10px 15px 0px rgba(109, 109, 109, 0.15);
  padding: 90px 30px 25px;
}
.testimonial-item .author-thumb {
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.testimonial-item .author-thumb img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.testimonial-item .testimonial-content p {
  font-size: 22px;
  line-height: 37px;
  color: var(--black);;
  margin-bottom: 25px;
}
.testimonial-item .testimonial-content .quote {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.testimonial-item .testimonial-content .quote:after {
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 80%;
  height: 1px;
  background-color: var(--black);;
  z-index: -1;
}
.testimonial-item .testimonial-content .quote i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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(--black);;
  font-size: 20px;
}
.testimonial-item .testimonial-content .author-title h4 {
  font-size: 22px;
  line-height: 32px;
}
.testimonial-item .testimonial-content .author-title p.position {
  font-size: 16px;
  color: #767676;
  margin-bottom: 0;
  line-height: 26px;
  font-weight: 500;
}

.testimonial-item-two {
  position: relative;
  background-color: var(--elixir-white);;
  padding: 40px 50px;
  border-radius: 7px;
}
@media (max-width: 1199px) {
  .testimonial-item-two {
    padding: 30px 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-item-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.testimonial-item-two .author-thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 165px;
          flex: 0 0 165px;
  max-width: 160px;
  height: 160px;
  margin-right: 30px;
}
.testimonial-item-two .author-thumb img {
  border-radius: 7px;
}
@media (max-width: 767px) {
  .testimonial-item-two .testimonial-content {
    padding-top: 20px;
  }
}
.testimonial-item-two .testimonial-content > p {
  font-size: 24px;
  line-height: 37px;
  color: var(--black);;
  margin-bottom: 25px;
}
.testimonial-item-two .testimonial-content .author-title-quote .quote {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--black);;
  background-color: var(--elixir-orange);;
  font-size: 20px;
  margin-right: 25px;
}
@media (max-width: 1199px) {
  .testimonial-item-two .testimonial-content .author-title-quote .quote {
    margin-right: 20px;
  }
}
.testimonial-item-two .testimonial-content .author-title-quote .author-title {
  line-height: 1;
}
.testimonial-item-two .testimonial-content .author-title-quote .author-title h4 {
  margin-bottom: 5px;
}
.testimonial-item-two .testimonial-content .author-title-quote .author-title p.position {
  font-weight: 500;
}

@media (max-width: 767px) {
  .testimonial-item-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.testimonial-item-three .author-thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 145px;
          flex: 0 0 145px;
  max-width: 145px;
  height: 145px;
  margin-right: 40px;
}
.testimonial-item-three .author-thumb img {
  border-radius: 7px;
}
.testimonial-item-three .testimonial-content {
  margin-top: -8px;
}
@media (max-width: 767px) {
  .testimonial-item-three .testimonial-content {
    margin-top: 0px;
    padding-top: 50px;
  }
}
.testimonial-item-three .testimonial-content > p {
  margin-bottom: 35px;
  font-size: 22px;
  line-height: 35px;
  color: var(--black);;
}
.testimonial-item-three .testimonial-content .author-title-qoute {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-item-three .testimonial-content .author-title-qoute .quote {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  color: var(--black);;
  font-size: 20px;
  margin-right: 25px;
}
.testimonial-item-three .testimonial-content .author-title-qoute .author-title h4 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 3px;
}
.testimonial-item-three .testimonial-content .author-title-qoute .author-title p.position {
  font-weight: 500;
}

.testimonial-item-four .testimonial-content .client-review-box {
  padding-bottom: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(20, 17, 37, 0.102);
  margin-bottom: 30px;
}
.testimonial-item-four .testimonial-content .client-review-box .review-box span {
  color: var(--black);;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.testimonial-item-four .testimonial-content .client-review-box .review-box ul.ratings {
  line-height: 25px;
}
.testimonial-item-four .testimonial-content .client-review-box .review-box ul.ratings li i {
  color: var(--elixir-orange);;
  font-size: 15px;
}
.testimonial-item-four .testimonial-content > p {
  font-size: 20px;
  line-height: 35px;
  color: var(--black);;
  font-family: "Manrope", sans-serif;
  margin-bottom: 30px;
}
.testimonial-item-four .testimonial-content .author-title-qoute {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-item-four .testimonial-content .author-title-qoute .quote {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  color: var(--black);;
  font-size: 20px;
  margin-right: 25px;
}
.testimonial-item-four .testimonial-content .author-title-qoute .author-title h4 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 13px;
}
.testimonial-item-four .testimonial-content .author-title-qoute .author-title p.position {
  line-height: 16px;
  font-weight: 500;
}

.testimonial-wrapper .testimonial-dots .slick-dots li button:before {
  width: 12px;
  height: 12px;
  border: 3px solid rgba(44, 44, 44, 0.149);
}
.testimonial-wrapper .testimonial-dots .slick-dots li.slick-active button:before {
  width: 7px;
  height: 7px;
  border: none;
}

.testimonial-thumb-item {
  position: relative;
  cursor: pointer;
  padding-bottom: 60px;
}
.testimonial-thumb-item img {
  width: 100%;
  border-radius: 7px;
}
.testimonial-thumb-item:after {
  position: absolute;
  bottom: -1.5px;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--black);;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.testimonial-thumb-item.slick-current:after {
  visibility: visible;
  opacity: 1;
}


/*=======================
    14. Start Contact css 
=========================*/
/* Contact Section CSS */
.contact-one {
  margin-top: -400px;
}
.contact-one .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1199px) {
  .contact-one .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.contact-one_content-box {
  position: relative;
  z-index: 1;
  padding: 100px 110px;
  padding-left: 300px;
  background-color: var(--elixir-white);;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
}
@media only screen and (min-width: 1651px) and (max-width: 1750px) {
  .contact-one_content-box {
    padding-left: 100px;
    padding: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .contact-one_content-box {
    padding-left: 100px;
    padding: 80px;
  }
}
@media (max-width: 1199px) {
  .contact-one_content-box {
    padding-left: 0;
    padding: 50px 30px;
  }
}
.contact-one_content-box .contact-form form .form_control {
  border-radius: 7px;
  border: 1px solid rgba(31, 30, 23, 0.1);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);;
  margin-bottom: 15px;
}
.contact-one_content-box .contact-form form .form_control:focus {
  background-color: #f8f6ef;
  border-color: transparent;
}
.contact-one_content-box .contact-form form .form_control::-webkit-input-placeholder {
  color: var(--black);;
}
.contact-one_content-box .contact-form form .form_control::-moz-placeholder {
  color: var(--black);;
}
.contact-one_content-box .contact-form form .form_control:-ms-input-placeholder {
  color: var(--black);;
}
.contact-one_content-box .contact-form form .form_control::-ms-input-placeholder {
  color: var(--black);;
}
.contact-one_content-box .contact-form form .form_control::placeholder {
  color: var(--black);;
}

.contact-two .contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 780px;
  max-height: 780px;
  z-index: -1;
}

.contact-two_content-box {
  background-color: var(--elixir-white);;
  padding: 100px 90px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
  margin-right: -100px;
}
@media (max-width: 1199px) {
  .contact-two_content-box {
    margin-right: 0;
    padding: 100px 40px;
  }
}
.contact-two_content-box .contact-form .form_control {
  border: 1px solid rgba(31, 30, 23, 0.102);
  margin-bottom: 15px;
  border-radius: 7px;
}

.contact-three .contact-three_content-box {
  margin-top: -550px;
}

.contact-three_content-box {
  position: relative;
  padding: 100px 80px;
  background-color: var(--elixir-white);;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(109, 109, 109, 0.1);
}
@media (max-width: 767px) {
  .contact-three_content-box {
    padding: 60px 30px;
  }
}
.contact-three_content-box .contact-form form .form_control {
  border-radius: 7px;
  border: 1px solid rgba(31, 30, 23, 0.1);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);;
  margin-bottom: 15px;
}
.contact-three_content-box .contact-form form .form_control:focus {
  background-color: #f8f6ef;
  border-color: transparent;
}
.contact-three_content-box .contact-form form .form_control::-webkit-input-placeholder {
  color: var(--black);;
}
.contact-three_content-box .contact-form form .form_control::-moz-placeholder {
  color: var(--black);;
}
.contact-three_content-box .contact-form form .form_control:-ms-input-placeholder {
  color: var(--black);;
}
.contact-three_content-box .contact-form form .form_control::-ms-input-placeholder {
  color: var(--black);;
}
.contact-three_content-box .contact-form form .form_control::placeholder {
  color: var(--black);;
}

.contact-four_content-box .contact-form form .form_control {
  margin-bottom: 15px;
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 0.102);
  font-weight: 700;
  font-size: 20px;
  color: var(--elixir-white);;
}
.contact-four_content-box .contact-form form .form_control::-webkit-input-placeholder {
  color: var(--elixir-white);;
}
.contact-four_content-box .contact-form form .form_control::-moz-placeholder {
  color: var(--elixir-white);;
}
.contact-four_content-box .contact-form form .form_control:-ms-input-placeholder {
  color: var(--elixir-white);;
}
.contact-four_content-box .contact-form form .form_control::-ms-input-placeholder {
  color: var(--elixir-white);;
}
.contact-four_content-box .contact-form form .form_control::placeholder {
  color: var(--elixir-white);;
}
.contact-four_content-box .contact-form form .form_control:focus {
  background-color: #f8f6ef;
  color: var(--black);;
}
.contact-four_content-box .contact-form form .form_control:focus::-webkit-input-placeholder {
  color: var(--black);;
}
.contact-four_content-box .contact-form form .form_control:focus::-moz-placeholder {
  color: var(--black);;
}
.contact-four_content-box .contact-form form .form_control:focus:-ms-input-placeholder {
  color: var(--black);;
}
.contact-four_content-box .contact-form form .form_control:focus::-ms-input-placeholder {
  color: var(--black);;
}
.contact-four_content-box .contact-form form .form_control:focus::placeholder {
  color: var(--black);;
}

/* Contact information CSS */
.contact-information-one .information-img_one {
  position: absolute;
  bottom: 130px;
  right: 20%;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-information-one .information-img_one {
    display: none;
  }
}
@media (max-width: 991px) {
  .contact-information-one .information-img_one {
    display: none;
  }
}
.contact-information-one .information-img_one img {
  border-radius: 0px 240.58px 262.58px 262.58px;
}

.contact-one_information-box {
  padding: 205px 450px 50px 50px;
  margin-top: 60px;
}
@media only screen and (min-width: 1651px) and (max-width: 1750px) {
  .contact-one_information-box {
    padding: 105px 250px 50px 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .contact-one_information-box {
    padding: 80px;
  }
}
@media (max-width: 1199px) {
  .contact-one_information-box {
    padding: 50px 30px;
  }
}
.contact-one_information-box .information-box {
  background-color: #f1e9e9;
  border-radius: 12px;
  padding: 40px 50px 25px;
}
@media (max-width: 1199px) {
  .contact-one_information-box .information-box {
    padding: 40px 30px 25px;
  }
}
.contact-one_information-box .information-box h3 {
  margin-bottom: 10px;
}
.contact-one_information-box .information-box p {
  margin-bottom: 25px;
}

.contact-two_information-box .section-title h2 {
  padding-right: 30%;
}
@media (max-width: 991px) {
  .contact-two_information-box .section-title h2 {
    padding-right: 0;
  }
}

/* Information item CSS*/
.information-item_one {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.information-item_one .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--elixir-orange);;
  font-size: 30px;
  color: var(--black);;
  margin-right: 15px;
}
.information-item_one .info {
  line-height: 1;
}
.information-item_one .info .sub-title {
  font-size: 14px;
  font-weight: 600;
}
.information-item_one .info h5 {
  font-size: 18px;
}

.information-item-two {
  position: relative;
  z-index: 1;
  background-color: var(--elixir-white);;
 box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 7px;
  padding: 40px 35px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.information-item-two:hover {
  background-color: var(--black);;
}
.information-item-two:hover:after {
  color: #c2c1bd;
}
.information-item-two:hover .icon {
  background-color: transparent;
  color: var(--white);;
  border-color: #767676;
}
.information-item-two:hover .info h5 {
  color: var(--elixir-white);;
}
.information-item-two:hover .info p{
  color: var(--elixir-white);;
}
.information-item-two:after:hover{
  color: var(--elixir-white);;
}
.information-item-two:after {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 105px;
  line-height: 1;
  color: rgba(44, 44, 44, 0.08);
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  z-index: -1;
}
.information-item-two.info-one:after {
  content: "";
}
.information-item-two.info-two:after {
  content: "";
}
.information-item-two.info-three:after {
  content: "";
}
.information-item-two .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);;
  background-color: var(--elixir-orange);;
  font-size: 25px;
  margin-bottom: 28px;
  border: 1px solid transparent;
}
.information-item-two .info h5 {
  margin-bottom: 10px;
}
.information-item-two .info p {
  font-size: 15px;
  font-weight: 600;
}

/* Contact Map CSS */
.map-box iframe {
  width: 100%;
  display: inherit;
  border: none;
}

.map-box_one .map-box iframe {
  height: 590px;
}

.contact-page-map .map-box iframe {
  height: 750px;
}

/* Footer Section CSS */
 .footer-white h4{
  color: #fff;
}
.footer-white a, .footer-white P {
  /* color: rgba(255, 255, 255, 0.7); */
  color: white;
}

/* Footer Widget CSS */
.footer-widget h4.widget-title {
  margin-bottom: 28px;
}

.footer-about-content {
  margin-top: -10px;
  padding-right: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-about-content {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .footer-about-content {
    padding-right: 0;
  }
}
.footer-about-content p {
  margin-bottom: 15px;
}
.footer-about-content .social-box h4 {
  font-size: 22px;
  color: var(--elixir-orange);;
  font-weight: 700;
}
.footer-about-content .social-box ul.social-link li {
  margin-right: 5px;
}
.footer-about-content .social-box ul.social-link li a {
  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: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.footer-about-content .social-box ul.social-link li a:hover {
  background-color: var(--elixir-orange);;
  color: var(--black);;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-nav-widget {
    padding-left: 50px;
  }
}

.footer-widget-nav {
  margin-top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-widget-nav ul {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget-nav ul {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget-nav ul {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footer-widget-nav ul {
    width: 100%;
  }
}
.footer-widget-nav ul li {
  margin-bottom: 10px;
}
.footer-widget-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-widget-nav ul li a:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  margin-right: 15px;
}
.footer-widget-nav ul li a:hover {
  color: #838287;
}

.recent-post-widget .more-btn {
  color: var(--elixir-orange);;
  text-decoration: underline;
}
.recent-post-widget .more-btn:after {
  display: inline-block;
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: 8px;
}

.post-widget-wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.post-widget-wrap li img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 85px;
          flex: 0 0 85px;
  max-width: 85px;
  height: 85px;
  border-radius: 5px;
  margin-right: 25px;
}
.post-widget-wrap li .post-title-date h3.title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}
.post-widget-wrap li .post-title-date h3.title a:hover {
  color: var(--elixir-orange);;
}
.post-widget-wrap li .post-title-date span.posted-on i {
  margin-right: 10px;
}

.footer-newsletter {
  padding: 40px 50px 20px;
  border-radius: 7px;
}
@media (max-width: 991px) {
  .footer-newsletter {
    padding: 40px 30px 20px;
  }
}
.footer-newsletter .footer-text h5 {
  font-size: 19px;
  line-height: 28px;
}
.footer-newsletter .newsletter-form form .form_control {
  background-color: transparent;
  border-bottom: 1px solid var(--black);;
  padding: 0;
  font-weight: 500;
  height: 53px;
  margin-bottom: 20px;
}
.footer-newsletter .newsletter-form form .form_control::-webkit-input-placeholder {
  color: var(--black);;
}
.footer-newsletter .newsletter-form form .form_control::-moz-placeholder {
  color: var(--black);;
}
.footer-newsletter .newsletter-form form .form_control:-ms-input-placeholder {
  color: var(--black);;
}
.footer-newsletter .newsletter-form form .form_control::-ms-input-placeholder {
  color: var(--black);;
}
.footer-newsletter .newsletter-form form .form_control::placeholder {
  color: var(--black);;
}
.footer-newsletter .newsletter-form form .main-btn {
  padding: 14px 16px;
  margin-bottom: 20px;
}

.footer-newsletter-one {
  background-color: #181712;
}
.footer-newsletter-one .newsletter-form form .form_control {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--elixir-gray);;
}
.footer-newsletter-one .newsletter-form form .form_control::-webkit-input-placeholder {
  color: var(--elixir-gray);;
}
.footer-newsletter-one .newsletter-form form .form_control::-moz-placeholder {
  color: var(--elixir-gray);;
}
.footer-newsletter-one .newsletter-form form .form_control:-ms-input-placeholder {
  color: var(--elixir-gray);;
}
.footer-newsletter-one .newsletter-form form .form_control::-ms-input-placeholder {
  color: var(--elixir-gray);;
}
.footer-newsletter-one .newsletter-form form .form_control::placeholder {
  color: var(--elixir-gray);;
}

.footer-newsletter-two {
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
}
.footer-newsletter-two .footer-text h5 {
  color: var(--black);;
}
.footer-newsletter-two .newsletter-form form .main-btn.bordered-btn:hover {
  background-color: var(--black);;
  color: var(--elixir-orange);;
}

/* Footer Copyright CSS */
.footer-copyright {
  padding: 28px 0;
}

.footer-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--black);;
  mix-blend-mode: multiply;
  z-index: -1;
}
/*# sourceMappingURL=style.css.map */

.contact-dropdown {
  display: none !important;
}



/* Container padding */
.mission__area {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Product row spacing */
.mission__area .row {
  margin-bottom: 60px;
}

/* Product title styling */
.section__title-two .title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Product description paragraph */
.vision__content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555555;
  font-family: 'Arial', sans-serif;
}

/* Image container styling */
.vision__img {
  text-align: center;
}

/* Images */
.vision__img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Hover zoom effect on images */
.vision__img img:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .mission__area .row {
    flex-direction: column !important; /* Stack on smaller screens */
  }
  
  /* Order reset for mobile */
  .order-lg-1, .order-lg-2 {
    order: 0 !important;
  }
  
  .col-lg-5,
  .col-lg-7 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  
  /* Center image on mobile */
  .vision__img {
    margin-bottom: 20px;
  }
  
  /* Center align text on smaller screens */
  .vision__content {
    text-align: center;
  }
  
  .section__title-two .title {
    font-size: 1.8rem;
  }
  
  .vision__content p {
    font-size: 1rem;
  }
}







/* Base style for footer links */
.footer-copyright a {
    color: #ffffff; /* Set your desired default link color */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover effect with color change and arrow */
.footer-copyright a:hover {
    color: #c4c2bb; /* Change this to your preferred hover color */
}

/* Optional: Add an arrow on hover */
.footer-copyright a::after {
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.3s, transform 0.3s;
    position: relative;
}

.footer-copyright a:hover::after {
    opacity: 1;
    transform: translateX(2px);
}



