/*-----------------------------------------------------------------------------------

    Theme Name: RACH Fest - Official Website Theme
    Author: RACH Fest Team
    Description: Custom theme for Read & Chillz Book Festival

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

Theme Default CSS
Buttons CSS
Theme Header CSS
Theme Footer CSS
Theme Sec title CSS
Theme Back To Top CSS
Theme Search CSS
Theme Preloder CSS
hamburger CSS
Mainmenu CSS
Theme Hero CSS
Theme Slider CSS
Theme About CSS
Theme Counter CSS
Theme Contact CSS
Theme Testimonial CSS
Theme Blog CSS
Theme Cta CSS
Theme Table CSS
Theme Event CSS
Theme Team CSS
Theme Attend CSS
Theme Price CSS
Theme Gallery CSS
Theme Video CSS
Theme feature CSS
Theme Brand CSS
Theme Portfolio CSS
Theme Breadcrumb CSS

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap");
:root {
  /**
     @Font-Family Declaration
   */
  --fa-ff-body: "DM Sans", sans-serif;
  --fa-ff-heading: "Space Grotesk", sans-serif;
  --fa-ff-p: "DM Sans", sans-serif;
  --fa-ff-fontawesome: "Font Awesome 6 Pro";
  /**
     @Font-weight Declaration
   */
  --fa-fw-normal: normal;
  --fa-fw-thin: 100;
  --fa-fw-elight: 200;
  --fa-fw-light: 300;
  --fa-fw-regular: 400;
  --fa-fw-medium: 500;
  --fa-fw-sbold: 600;
  --fa-fw-bold: 700;
  --fa-fw-ebold: 800;
  --fa-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --fa-fs-body: 16px;
  --fa-fs-p: 16px;
  --fa-fs-h1: 90px;
  --fa-fs-h2: 45px;
  --fa-fs-h3: 24px;
  --fa-fs-h4: 20px;
  --fa-fs-h5: 18px;
  --fa-fs-h6: 17px;
  /**
     @Color Declaration
   */
  --fa-color-common-white: #ffffff;
  --fa-color-common-black: #000000;
  --fa-color-heading-primary: #1c1b1f;
  --fa-color-text-body: #6c6b6f;
  --fa-color-theme-primary: #ff3639;
  --fa-color-theme-secondary: #f3f3f3;
  --fa-color-theme-bg: #1c1b1f;
  --fa-color-theme-bg-2: #0056ff;
  --fa-color-grey-1: #c5c5c5;
  --fa-color-grey-2: #aeaeae;
  --fa-color-grey-3: #878c8f;
  --fa-color-grey-4: #100d16;
  --fa-color-grey-5: #6c6b6f;
  --fa-color-grey-6: #f4f1ee;
  --fa-color-grey-7: #f2f4f3;
  --fa-color-grey-8: #ffe1e1;
  --fa-color-grey-9: #dae3e9;
  --fa-color-grey-10: #f5f2ef;
  --fa-color-grey-11: #d33236;
  --fa-color-grey-12: #333333;
  --fa-color-grey-13: #4b2226;
  --fa-color-grey-14: #d3d3d4;
  --fa-color-grey-15: #2c2b2f;
  --fa-color-border-1: #384040;
  --fa-color-border-2: #ede8e3;
  --fa-color-border-3: #d9dcdc;
  --fa-color-border-4: #e1e3e3;
  --fa-color-border-5: #c9d5db;
  --fa-color-border-6: #322f32;
  --fa-color-border-7: #dae3e9;
  --fa-color-border-8: #e0e3e3;
  --fa-color-border-9: #bbc2c3;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pt-120 {
  padding-top: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.xb-faq {
  padding: 0 23px;
}

.accordion_box .block {
  margin-bottom: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--fa-color-common-white);
}

.accordion_box .block .acc-btn {
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding: 27px 30px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--fa-color-heading-primary);
}

@media (max-width: 767px) {
  .accordion_box .block .acc-btn {
    padding: 27px 20px;
  }
}

@media (max-width: 767px) {
  .accordion_box .block .acc-btn {
    font-size: 18px;
    padding: 27px 52px 27px 20px;
  }
}

.accordion_box .block .acc-btn .arrow {
  position: absolute;
  top: 22px;
  right: 60px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.accordion_box .block .acc-btn .arrow::before {
  top: 5px;
  left: 11px;
  font-size: 22px;
  content: "\f067";
  font-weight: 400;
  position: absolute;
  color: var(--fa-color-heading-primary);
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion_box .block .acc_body {
  display: none;
  position: relative;
  padding: 0 30px 30px;
}

.accordion_box .block .acc_body.current {
  display: block;
}

.accordion_box .block .content {
  padding-left: 65px;
  padding-right: 161px;
  padding-bottom: 20px;
  background: var(--fa-color-theme-secondary);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  padding: 15px 115px 15px 20px;
}

@media (max-width: 767px) {
  .accordion_box .block .content {
    padding: 15px 20px 15px 20px;
  }
}

.accordion_box .block.active-block .acc-btn .arrow::before {
  content: "\f068";
  color: var(--fa-color-heading-primary);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

html,
body,
.site-main {
  position: relative;
  overflow-x: hidden;
  min-height: 100%;
}

.site-main {
  overflow: hidden;
}

/**
  Typography CSS
*/
body {
  font-family: var(--fa-ff-body);
  font-size: var(--fa-fs-body);
  font-weight: normal;
  color: var(--fa-color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fa-ff-heading);
  color: var(--fa-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--fa-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--fa-fs-h1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: var(--fa-fs-h2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: var(--fa-fs-h3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: var(--fa-fs-h4);
}

h5 {
  font-size: var(--fa-fs-h5);
}

h6 {
  font-size: var(--fa-fs-h6);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus,
button:focus:not(:focus-visible) {
  outline: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
textarea {
  outline: none;
  background-color: --fa-color-common-white;
  height: auto;
  width: 100%;
  font-size: var(--fa-fs-body);
  border: 1px solid var(--fa-color-common-white);
  color: var(--fa-color-common-black);
  padding: 10px 15px;
}

input[type="color"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--fa-color-theme-primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: var(--fa-color-common-black);
  color: var(--fa-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--fa-color-common-black);
  color: var(--fa-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--fa-color-common-black);
  color: var(--fa-color-common-white);
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: var(--fa-color-common-black);
  font-size: var(--fa-fs-body);
  opacity: 1;
}
*::-moz-placeholder {
  color: var(--fa-color-common-black);
  font-size: var(--fa-fs-body);
  opacity: 1;
}
*:-ms-input-placeholder {
  color: var(--fa-color-common-black);
  font-size: var(--fa-fs-body);
  opacity: 1;
}
*::-ms-input-placeholder {
  color: var(--fa-color-common-black);
  font-size: var(--fa-fs-body);
  opacity: 1;
}
*::placeholder {
  color: var(--fa-color-common-black);
  font-size: var(--fa-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 70px 0;
  }
}

.gt-section-title {
  margin-bottom: 40px;
}

.gt-section-title .gt-sub-title {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--fa-fw-sbold);
  color: var(--fa-color-theme-primary);
  margin-bottom: 10px;
}

.maquee-area {
  padding: 60px 0;
  background: var(--fa-color-theme-bg);
}

@media (max-width: 1199px) {
  .maquee-area {
    padding: 40px 0;
  }
}

@media (max-width: 991px) {
  .maquee-area {
    padding: 30px 0;
  }
}

.maquee-transition {
  transition-timing-function: linear;
}

.maquee-active .swiper-wrapper {
  transition-timing-function: linear !important;
}

.maquee-active:not(.swiper-initialized) .swiper-wrapper {
  animation: maquee-fallback-scroll 18s linear infinite;
}

.maquee-active:not(.swiper-initialized).maquee-reverse .swiper-wrapper {
  animation-direction: reverse;
}

.maquee-active.maquee-css .swiper-wrapper {
  display: flex;
  width: max-content;
  animation: maquee-css-scroll 18s linear infinite;
}

.maquee-active.maquee-css.maquee-reverse .swiper-wrapper {
  animation-direction: reverse;
}

@keyframes maquee-css-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes maquee-fallback-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.maquee-icon {
  transform: none;
}

.maquee-icon span {
  display: inline-block;
  animation: rotate-infinte 6s infinite linear;
}

.maquee-area .maquee-title {
  color: var(--fa-color-common-white);
  font-size: 20px;
  font-weight: var(--fa-fw-bold);
  margin-bottom: 0;
  text-transform: uppercase;
}

.maquee-area .swiper-wrapper {
  gap: 60px;
}

@media (max-width: 1199px) {
  .maquee-area .swiper-wrapper {
    gap: 40px;
  }
}

.maquee-icon img {
  width: 48px;
  height: 48px;
}

.maquee-area .maquee-box {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.maquee-area .maquee-content,
.maquee-area .maquee-title {
  white-space: nowrap;
}

.maquee-area .maquee-icon {
  flex: 0 0 auto;
  margin-right: 10px;
}

.maquee-area .maquee-content {
  flex: 0 0 auto;
}

.maquee-area .maquee-shape {
  flex: 0 0 auto;
  white-space: nowrap;
}

.maquee-area .maquee-shape img {
  height: 70px;
  width: auto;
  max-width: none;
  opacity: 0.7;
}

@media (max-width: 1199px) {
  .maquee-area .maquee-shape {
    display: none;
  }
}

@keyframes rotate-infinte {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1190px;
}

/**
  Buttons CSS
*/
.fa-primary-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--fa-fw-bold);
  color: var(--fa-color-common-white);
  background: var(--fa-color-theme-primary);
  padding: 22px 35px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
}
.fa-primary-btn::before {
  position: absolute;
  content: "";
  height: 155px;
  width: 50px;
  right: -40px;
  top: -45px;
  -webkit-transform: rotate(24deg);
  -ms-transform: rotate(24deg);
  transform: rotate(24deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  background: var(--fa-color-grey-11);
}
.fa-primary-btn.btn-1 {
  border-radius: 0;
  text-transform: uppercase;
  padding: 26px 35px;
}
.fa-primary-btn:hover {
  color: var(--fa-color-common-white);
}
.fa-primary-btn:hover::before {
  right: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.fa-secondary-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--fa-fw-bold);
  color: var(--fa-color-common-white);
  background: var(--fa-color-common-black);
  padding: 22px 35px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  overflow: hidden;
  line-height: 1;
}
.fa-secondary-btn::before {
  position: absolute;
  content: "";
  height: 155px;
  width: 50px;
  right: -40px;
  top: -45px;
  -webkit-transform: rotate(24deg);
  -ms-transform: rotate(24deg);
  transform: rotate(24deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  background: var(--fa-color-grey-12);
}
.fa-secondary-btn:hover {
  color: var(--fa-color-common-white);
}
.fa-secondary-btn:hover::before {
  right: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.fa-transparent-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--fa-fw-bold);
  color: var(--fa-color-common-white);
  background: transparent;
  padding: 19px 35px;
  border-radius: 10px;
  border: 3px solid var(--fa-color-theme-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
}
.fa-transparent-btn::before {
  position: absolute;
  content: "";
  height: 155px;
  width: 50px;
  right: -40px;
  top: -45px;
  -webkit-transform: rotate(24deg);
  -ms-transform: rotate(24deg);
  transform: rotate(24deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  background: var(--fa-color-grey-13);
}
.fa-transparent-btn:hover {
  color: var(--fa-color-common-white);
}
.fa-transparent-btn:hover::before {
  right: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.fa-transparent-btn.btn-1 {
  color: var(--fa-color-heading-primary);
}
.fa-transparent-btn.btn-1::before {
  background: var(--fa-color-grey-14);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.fa-header-area {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 98;
  background: #000;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.fa-header-area.header-duplicate {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.fa-header-area.header-absolute {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: transparent;
}
.fa-header-area.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  -webkit-animation: sticky 0.9s;
  animation: sticky 0.9s;
  border-bottom: none;
  background-color: #000;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  opacity: 1;
  visibility: visible;
  padding: 10px 0;
  z-index: 999;
}
.fa-header-area.sticky .maimmenu-main-wrapper {
  background-color: transparent;
}
.fa-header-area.sticky .mainmenu-right-infos {
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-header-area {
    padding: 15px 0;
  }
}
.fa-header-area .header-topbar-area {
  padding: 8px 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.fa-header-area .header-topbar-area .container {
  max-width: 1290px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-header-area .header-topbar-area {
    padding: 0 0;
  }
}
.fa-header-area .header-middle-area {
  padding: 31px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-header-area .header-bottom-area .maimmenu-main-wrapper {
    background-color: transparent;
  }
}
.fa-header-area.header-2::before {
  position: absolute;
  content: "";
  width: 38%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--fa-color-theme-bg);
  clip-path: polygon(0 0, 100% 0%, 65% 100%, 0% 100%);
}
.fa-header-area.header-2.sticky {
  padding: 0 0;
}
.fa-header-area.header-2.sticky .header-bottom-area {
  padding: 10px 0;
}
.fa-header-area.header-2.sticky .header-bottom-area .maimmenu-main-wrapper {
  max-width: 100%;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .fa-header-area.header-2::before {
    width: 32%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fa-header-area.header-2::before {
    width: 30%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-header-area.header-2::before {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-header-area.header-2 {
    padding: 0 0;
  }
  .fa-header-area.header-2::before {
    display: none;
  }
}
.fa-header-area.header-2 .header-topbar-area {
  background-color: var(--fa-color-grey-10);
  padding: 0;
}
.fa-header-area.header-2 .header-topbar-area .container {
  max-width: 1190px;
}
.fa-header-area.header-2 .header-topbar-area .topbar-main-wrapper {
  -webkit-column-gap: 125px;
  -moz-column-gap: 125px;
  column-gap: 125px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.fa-header-area.header-2
  .header-topbar-area
  .topbar-main-wrapper
  .social-links {
  background: var(--fa-color-theme-bg);
  padding: 7px 35px;
}
.fa-header-area.header-2
  .header-topbar-area
  .topbar-main-wrapper
  .topbar-text
  span {
  color: var(--fa-color-grey-5);
}
.fa-header-area.header-2 .header-middle-area {
  background-color: var(--fa-color-common-white);
  padding: 0;
}
.fa-header-area.header-2 .header-bottom-area {
  padding: 15px 0;
  background-color: #000;
}
.fa-header-area.header-2 .header-bottom-area .maimmenu-main-wrapper {
  max-width: 1000px;
  width: 100%;
  margin-right: 0;
  background-color: transparent;
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li.has-dropdown
  > a {
  padding-right: 20px;
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > a {
  color: var(--fa-color-common-white);
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li.current-menu-ancestor
  a,
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li.current-menu-item
  a,
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li:hover
  a {
  color: var(--fa-color-theme-primary);
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li
  > a {
  padding: 4px 20px;
  color: var(--fa-color-grey-3);
  text-transform: capitalize;
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.has-dropdown
  > a::after {
  color: var(--fa-color-theme-primary);
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.current-menu-ancestor
  > a,
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.current-menu-item
  > a,
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li:hover
  > a {
  color: var(--fa-color-theme-primary);
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.current-menu-ancestor
  > a::after,
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.current-menu-item
  > a::after,
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li:hover
  > a::after {
  color: var(--fa-color-heading-primary);
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li:hover
  > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu-right-infos {
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu-right-infos
  .header-search
  .search {
  color: var(--fa-color-common-white);
}
.fa-header-area.header-2
  .header-bottom-area
  .maimmenu-main-wrapper
  .mainmenu-right-infos
  .header-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-header-area.header-2
    .header-bottom-area
    .maimmenu-main-wrapper
    .mainmenu-right-infos {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-header-area.header-3 {
    padding: 0 0;
  }
}
.fa-header-area.header-3 .header-bottom-area {
  background-color: rgba(17, 17, 17, 0.1);
  padding: 20px 0;
}
.fa-header-area.header-3 .header-bottom-area .container {
  max-width: 1520px;
}
.fa-header-area.header-3.sticky .header-bottom-area {
  padding: 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-header-area.header-3.sticky {
    padding: 10px 0;
  }
}
.fa-header-area.header-3 .maimmenu-main-wrapper {
  background-color: transparent;
}
.fa-header-area.header-3 .maimmenu-main-wrapper .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-left {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.fa-header-area.header-3 .maimmenu-main-wrapper .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  position: relative;
  padding-left: 25px;
}
.fa-header-area.header-3 .maimmenu-main-wrapper .header-right::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 65%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--fa-color-grey-3);
}
.fa-header-area.header-3 .maimmenu-main-wrapper .header-right .header-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li.has-dropdown
  > a {
  padding-right: 20px;
}
.fa-header-area.header-3 .maimmenu-main-wrapper .mainmenu ul > li > a {
  color: var(--fa-color-common-white);
}
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li.current-menu-ancestor
  a,
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li.current-menu-item
  a,
.fa-header-area.header-3 .maimmenu-main-wrapper .mainmenu ul > li:hover a {
  color: var(--fa-color-theme-primary);
}
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li
  > a {
  padding: 4px 20px;
  color: var(--fa-color-grey-3);
  text-transform: capitalize;
}
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.has-dropdown
  > a::after {
  color: var(--fa-color-theme-primary);
}
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.current-menu-ancestor
  > a,
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.current-menu-item
  > a,
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li:hover
  > a {
  color: var(--fa-color-theme-primary);
}
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.current-menu-ancestor
  > a::after,
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li.current-menu-item
  > a::after,
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li
  > .sub-menu
  > li:hover
  > a::after {
  color: var(--fa-color-heading-primary);
}
.fa-header-area.header-3
  .maimmenu-main-wrapper
  .mainmenu
  ul
  > li:hover
  > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-header-area.header-3 .maimmenu-main-wrapper .mainmenu ul {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fa-header-area.header-3 .social-links ul {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-header-area.header-3 .social-links {
    display: none;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-header-area.header-3 .header-bottom-area {
    padding: 12px 0;
  }
  .fa-header-area.header-3 .social-links {
    display: none;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-left: 0;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right::before {
    display: none;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right .header-search {
    display: none;
  }
}
@media (max-width: 575px) {
  .fa-header-area.header-3 .header-bottom-area {
    padding: 12px 0;
  }
  .fa-header-area.header-3 .social-links {
    display: none;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-left: 0;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right::before {
    display: none;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right .header-search {
    display: none;
  }
  .fa-header-area.header-3 .maimmenu-main-wrapper .header-right .header-button {
    display: none;
  }
}

.topbar-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 10px;
}
.topbar-main-wrapper .topbar-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .topbar-main-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .topbar-main-wrapper .topbar-infos {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .topbar-main-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 15px;
  }
  .topbar-main-wrapper .topbar-infos {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .topbar-main-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 15px;
  }
  .topbar-main-wrapper .topbar-infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.infos-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  color: var(--fa-color-grey-3);
  font-weight: var(--fa-fw-medium);
  font-size: 14px;
}
.infos-item span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--fa-color-common-white);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 1;
}
.infos-item a {
  color: var(--fa-color-grey-3);
  position: relative;
}
.infos-item a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background: var(--fa-color-grey-3);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.infos-item a:hover::before {
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.infos-item:hover span {
  -webkit-animation: wobble-horizontal-hover 1s ease-in-out 1;
  animation: wobble-horizontal-hover 1s ease-in-out 1;
}

.social-links {
  line-height: 1;
}
.social-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}
.social-links ul li a {
  color: var(--fa-color-common-white);
}
.social-links ul li a:hover {
  color: var(--fa-color-theme-primary);
}
@media (max-width: 575px) {
  .social-links ul {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

.topbar-text {
  line-height: 1;
}
.topbar-text span {
  font-size: 14px;
  color: var(--fa-color-grey-3);
}

.mobile-logo,
.site-logo {
  position: relative;
  max-width: 200px;
  width: 100%;
  z-index: 2;
}
.mobile-logo a,
.site-logo a {
  display: inline-block;
}
.mobile-logo a img,
.site-logo a img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .mobile-logo,
  .site-logo {
    max-width: 165px;
  }
}

.header-middle-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}
.header-middle-wrapper .header-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-middle-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-middle-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-middle-wrapper .header-infos {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .header-middle-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-middle-wrapper .header-infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.maimmenu-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(0, 0, 0, 0.1);
}
.maimmenu-main-wrapper .mean-push {
  display: none;
}

.infos-style-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  position: relative;
  padding-right: 30px;
  margin-right: 30px;
}
.infos-style-2::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--fa-color-border-1);
}
.infos-style-2:last-child {
  padding-right: 0;
  margin-right: 0;
}
.infos-style-2:last-child::before {
  display: none;
}
.infos-style-2 .infos-icons {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.infos-style-2 .infos-text .subtitle {
  display: block;
  font-size: 14px;
  color: var(--fa-color-grey-3);
  line-height: 1;
}
.infos-style-2 .infos-text .location,
.infos-style-2 .infos-text .link {
  font-size: 20px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-sbold);
  position: relative;
}
.infos-style-2 .infos-text .link {
  position: relative;
}
.infos-style-2 .infos-text .link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  background: var(--fa-color-common-white);
}
.infos-style-2 .infos-text .link:hover::before {
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.infos-style-2.style-2 {
  padding: 27px 30px 27px 0;
}
.infos-style-2.style-2::before {
  background: var(--fa-color-border-8);
}
.infos-style-2.style-2 .infos-text .subtitle {
  color: var(--fa-color-grey-5);
}
.infos-style-2.style-2 .infos-text .location,
.infos-style-2.style-2 .infos-text .link {
  color: var(--fa-color-heading-primary);
}
.infos-style-2.style-2 .infos-text .link::before {
  background-color: var(--fa-color-heading-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .infos-style-2.style-2 {
    padding: 20px 10px 20px 0;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-right: 10px;
  }
}
.infos-style-2:hover .infos-icons {
  -webkit-transform: rotateY(-360deg);
  transform: rotateY(-360deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .infos-style-2 {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infos-style-2 {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding-right: 15px;
    margin-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .infos-style-2 {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding-right: 0;
    margin-right: 0;
  }
  .infos-style-2::before {
    display: none;
  }
  .infos-style-2 .infos-text .location,
  .infos-style-2 .infos-text .link {
    font-size: 18px;
  }
}

.mainmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.mainmenu ul > li {
  position: relative;
  z-index: 1;
}
.mainmenu ul > li.has-dropdown > a {
  padding-right: 20px;
}
.mainmenu ul > li.has-dropdown > a::before {
  position: absolute;
  content: "+";
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  font-size: 10px;
}
.mainmenu ul > li.has-dropdown > a::after {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  font-size: 10px;
}
.mainmenu ul > li > a {
  display: block;
  position: relative;
  font-size: 16px;
  color: var(--fa-color-grey-3);
  padding: 13px 0;
  font-weight: var(--fa-fw-medium);
  text-transform: uppercase;
  z-index: 2;
}
.mainmenu ul > li.current-menu-ancestor a,
.mainmenu ul > li.current-menu-item a,
.mainmenu ul > li:hover a {
  color: var(--fa-color-theme-primary);
}
.mainmenu ul > li.current-menu-ancestor a::after,
.mainmenu ul > li.current-menu-item a::after,
.mainmenu ul > li:hover a::after {
  opacity: 1;
  visibility: visible;
}
.mainmenu ul > li.current-menu-ancestor a::before,
.mainmenu ul > li.current-menu-item a::before,
.mainmenu ul > li:hover a::before {
  opacity: 0;
  visibility: hidden;
}
.mainmenu ul > li > .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  top: 100%;
  left: 0;
  z-index: 99;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  text-align: left;
  background-color: var(--fa-color-common-white);
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  gap: 0;
  padding: 10px 0;
  pointer-events: none;
}
.mainmenu ul > li > .sub-menu > li {
  display: block;
  width: 100%;
  margin-right: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}
.mainmenu ul > li > .sub-menu > li.has-dropdown::after {
  display: none;
}
.mainmenu ul > li > .sub-menu > li > a {
  position: relative;
  padding: 4px 20px;
  display: block;
  color: var(--fa-color-grey-3);
  text-transform: capitalize;
}
.mainmenu ul > li > .sub-menu > li > a::before {
  display: none;
}
.mainmenu ul > li > .sub-menu > li > a::after {
  display: none;
}
.mainmenu ul > li > .sub-menu > li:last-child {
  padding-bottom: 0;
}
.mainmenu ul > li > .sub-menu > li.has-dropdown > a::after {
  content: "\f105";
  right: 10px;
  color: var(--fa-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a,
.mainmenu ul > li > .sub-menu > li.current-menu-item > a,
.mainmenu ul > li > .sub-menu > li:hover > a {
  color: var(--fa-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::before,
.mainmenu ul > li > .sub-menu > li.current-menu-item > a::before,
.mainmenu ul > li > .sub-menu > li:hover > a::before {
  opacity: 1;
  visibility: visible;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::after,
.mainmenu ul > li > .sub-menu > li.current-menu-item > a::after,
.mainmenu ul > li > .sub-menu > li:hover > a::after {
  color: var(--fa-color-heading-primary);
}
.mainmenu ul > li > .sub-menu > li > .sub-menu {
  left: 100%;
  top: 0;
}
.mainmenu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: inherit;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}

.mainmenu-right-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
.mainmenu-right-infos .header-search .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-size: 14px;
  font-weight: var(--fa-fw-medium);
  color: var(--fa-color-grey-3);
  position: relative;
  padding-left: 40px;
}
.mainmenu-right-infos .header-search .search::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--fa-color-border-1);
}
.mainmenu-right-infos .header-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu-right-infos {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .mainmenu-right-infos .header-search .search {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainmenu-right-infos {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .mainmenu-right-infos .header-search .search {
    padding-left: 0;
  }
  .mainmenu-right-infos .header-search .search::before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .mainmenu-right-infos {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .mainmenu-right-infos .header-search .search {
    padding-left: 0;
  }
  .mainmenu-right-infos .header-search .search::before {
    display: none;
  }
}

.menu-bar i {
  font-size: 30px;
  color: var(--fa-color-common-white);
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.fa-footer-area {
  background: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.fa-footer-area .left-shapes {
  position: absolute;
  left: -100px;
  bottom: -20px;
  z-index: -1;
}
.fa-footer-area .right-shapes {
  position: absolute;
  right: -34%;
  bottom: -65%;
  z-index: -1;
}

.footer-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 56px;
  -moz-column-gap: 56px;
  column-gap: 56px;
  row-gap: 40px;
  border-bottom: 1px solid var(--fa-color-border-1);
  padding-top: 120px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-main-wrapper {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .footer-main-wrapper {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.footer-widget {
  position: relative;
  z-index: 2;
}
.footer-widget .footer-title {
  color: var(--fa-color-common-white);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 25px;
}
.footer-widget .footer-info {
  max-width: 300px;
  width: 100%;
}
.footer-widget .footer-info .footer-logo {
  max-width: 160px;
  width: 100%;
  margin-bottom: 30px;
}
.footer-widget .footer-info .footer-logo a {
  display: inline-block;
}
.footer-widget .footer-info .footer-logo a img {
  width: 100%;
}
.footer-widget .footer-info .footer-desc {
  color: var(--fa-color-grey-3);
  margin-bottom: 25px;
}
.footer-widget .footer-info .footer-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.footer-widget .footer-info .footer-share ul li a {
  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: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--fa-color-common-white);
  background: var(--fa-color-grey-4);
}
.footer-widget .footer-info .footer-share ul li a:hover {
  background-color: var(--fa-color-theme-primary);
}
.footer-widget .footer-menu {
  max-width: 230px;
  width: 100%;
}
.footer-widget .footer-menu ul {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.footer-widget .footer-menu ul li {
  line-height: 2;
}
.footer-widget .footer-menu ul li a {
  position: relative;
  color: var(--fa-color-grey-3);
}
.footer-widget .footer-menu ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background: var(--fa-color-grey-3);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.footer-widget .footer-menu ul li a:hover::before {
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.footer-widget .footer-contact {
  max-width: 235px;
  width: 100%;
}
.footer-widget .footer-contact ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--fa-color-grey-3);
  -webkit-column-gap: 18px;
  -moz-column-gap: 18px;
  column-gap: 18px;
}
.footer-widget .footer-contact ul li:first-child {
  margin-bottom: 30px;
}
.footer-widget .footer-contact ul li i {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--fa-color-theme-primary);
}
.footer-widget .footer-contact ul li .link {
  position: relative;
  color: var(--fa-color-common-white);
  font-weight: var(--fa-fw-bold);
}
.footer-widget .footer-contact ul li .link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  background: var(--fa-color-common-white);
}
.footer-widget .footer-contact ul li .link:hover::before {
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.footer-widget .footer-contact ul li:hover i {
  -webkit-animation: wobble-horizontal-hover 1s ease-in-out 1;
  animation: wobble-horizontal-hover 1s ease-in-out 1;
}
.footer-widget .footer-newsletter {
  max-width: 250px;
  width: 100%;
}
.footer-widget .footer-newsletter .newsletter-desc {
  color: var(--fa-color-grey-3);
  margin-bottom: 25px;
}
.footer-widget
  .footer-newsletter
  .newsletter-form
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ),
.footer-widget .footer-newsletter .newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 30px;
  font-size: 14px;
  color: var(--fa-color-common-white);
  background: var(--fa-color-theme-bg);
  border-radius: 10px;
  border: 1.5px solid var(--fa-color-border-1);
}
.footer-widget
  .footer-newsletter
  .newsletter-form
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-webkit-input-placeholder,
.footer-widget
  .footer-newsletter
  .newsletter-form
  input[type="email"]::-webkit-input-placeholder {
  color: var(--fa-color-grey-5);
  font-size: 14px;
}
.footer-widget
  .footer-newsletter
  .newsletter-form
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-moz-placeholder,
.footer-widget
  .footer-newsletter
  .newsletter-form
  input[type="email"]::-moz-placeholder {
  color: var(--fa-color-grey-5);
  font-size: 14px;
}
.footer-widget
  .footer-newsletter
  .newsletter-form
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ):-ms-input-placeholder,
.footer-widget
  .footer-newsletter
  .newsletter-form
  input[type="email"]:-ms-input-placeholder {
  color: var(--fa-color-grey-5);
  font-size: 14px;
}
.footer-widget
  .footer-newsletter
  .newsletter-form
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.footer-widget
  .footer-newsletter
  .newsletter-form
  input[type="email"]::-ms-input-placeholder {
  color: var(--fa-color-grey-5);
  font-size: 14px;
}
.footer-widget
  .footer-newsletter
  .newsletter-form
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::placeholder,
.footer-widget
  .footer-newsletter
  .newsletter-form
  input[type="email"]::placeholder {
  color: var(--fa-color-grey-5);
  font-size: 14px;
}
.footer-widget
  .footer-newsletter
  .newsletter-form
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.footer-widget
  .footer-newsletter
  .newsletter-form
  input[type="email"]::-ms-input-placeholder {
  color: var(--fa-color-grey-5);
  font-size: 14px;
}
.footer-widget
  .footer-newsletter
  .newsletter-form
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ):focus,
.footer-widget .footer-newsletter .newsletter-form input[type="email"]:focus {
  outline: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget {
    max-width: 300px;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget {
    max-width: 245px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .footer-widget .footer-title {
    margin-bottom: 15px;
  }
  .footer-widget .footer-newsletter,
  .footer-widget .footer-contact,
  .footer-widget .footer-menu,
  .footer-widget .footer-info {
    max-width: 100%;
  }
}

.fa-copyright-area {
  padding: 38px 0;
}
.fa-copyright-area .copyright-text p {
  color: var(--fa-color-grey-3);
  margin-bottom: 0;
}
.fa-copyright-area .copyright-text p a {
  position: relative;
}
.fa-copyright-area .copyright-text p a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  background: var(--fa-color-grey-3);
}
.fa-copyright-area .copyright-text p a:hover::before {
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-copyright-area {
    padding: 22px 0;
  }
}

@-webkit-keyframes wobble-horizontal-hover {
  16.65% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  33.3% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes wobble-horizontal-hover {
  16.65% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  33.3% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* !END: Theme Footer CSS */
/**----------------------------------------
START: Theme Sec title CSS
----------------------------------------*/
.fa-heading-area {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.fa-heading-area.text-center {
  margin-left: auto;
  margin-right: auto;
}
.fa-heading-area.text-center .heading-subtitle {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fa-heading-area .heading-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  font-size: 16px;
  font-weight: var(--fa-fw-medium);
  color: var(--fa-color-theme-primary);
  margin-bottom: 10px;
}
.fa-heading-area .heading-title {
  font-weight: var(--fa-fw-bold);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-heading-area {
    margin-bottom: 40px;
  }
}

/* !END: Theme Sec title CSS */
/**----------------------------------------
START: Theme Back To Top CSS
----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 60px;
  bottom: 0;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .back-to-top-wrapper {
    right: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .back-to-top-wrapper {
    right: 15px;
  }
}

.back-to-top-btn {
  color: var(--fa-color-heading-primary);
  line-height: 1;
  font-weight: var(--fa-fw-sbold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.back-to-top-btn span {
  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: 48px;
  height: 48px;
  font-size: 15px;
  color: var(--fa-color-common-white);
  background-color: var(--fa-color-theme-primary);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1px var(--fa-color-common-white);
  box-shadow: 0 0 0 1px var(--fa-color-common-white);
}

.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 85px;
}
.back-to-top-wrapper.back-to-top-btn-show:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .back-to-top-wrapper.back-to-top-btn-show {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .back-to-top-wrapper.back-to-top-btn-show {
    bottom: 25px;
  }
}

/* !END: Theme Back To Top CSS */
/**----------------------------------------
START: Theme Search CSS
----------------------------------------*/
.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--fa-color-theme-bg);
  z-index: 100;
  padding-top: 60px;
  padding-bottom: 90px;
  opacity: 0;
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition:
    opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition:
    opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  z-index: 9999;
}
.search_popup .search_close {
  position: absolute;
  top: 10px;
  right: 20px;
}
.search_popup .search_close .search_close_btn {
  font-size: 24px;
  color: var(--fa-color-common-white);
}
.search_popup .search_close .search_close_btn svg {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.search_popup .search_close .search_close_btn svg path {
  fill: var(--fa-color-common-white);
}
.search_popup .search_close .search_close_btn svg:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.search_popup .search_close .search_close_btn svg:hover path {
  fill: var(--fa-color-theme-primary);
}
.search_popup.search-opened {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.search_popup.search-opened .search_form .search_input {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.search-form form {
  position: relative;
  z-index: 1;
}
.search-form form .search-box {
  position: relative;
  z-index: 1;
}
.search-form
  form
  .search-box
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ),
.search-form form .search-box input[type="search"] {
  width: 100%;
  font-family: var(--fa-ff-body);
  color: var(--fa-color-common-white);
  border: 1px solid var(--fa-color-grey-3);
  background: transparent;
  padding: 20px 75px 20px 24px;
}
.search-form
  form
  .search-box
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-webkit-input-placeholder,
.search-form form .search-box input[type="search"]::-webkit-input-placeholder {
  color: var(--fa-color-grey-3);
}
.search-form
  form
  .search-box
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-moz-placeholder,
.search-form form .search-box input[type="search"]::-moz-placeholder {
  color: var(--fa-color-grey-3);
}
.search-form
  form
  .search-box
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ):-ms-input-placeholder,
.search-form form .search-box input[type="search"]:-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.search-form
  form
  .search-box
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.search-form form .search-box input[type="search"]::-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.search-form
  form
  .search-box
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::placeholder,
.search-form form .search-box input[type="search"]::placeholder {
  color: var(--fa-color-grey-3);
}
.search-form
  form
  .search-box
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.search-form form .search-box input[type="search"]::-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.search-form form .search-box button {
  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;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 62px;
  font-size: 22px;
  color: var(--fa-color-common-white);
  border-left: 1px solid var(--fa-color-grey-3);
  width: 100%;
  height: 100%;
}

/* !END: Theme Search CSS */
/**----------------------------------------
START: Theme Preloder CSS
----------------------------------------*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--fa-color-theme-primary);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Space Grotesk", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--fa-color-theme-primary);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
  animation-delay: 1.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--fa-color-heading-primary);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Space Grotesk", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--fa-color-theme-primary);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--fa-color-common-white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s;
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
/* !END: Preloader CSS */
/* !START: hamburger CSS */
.hamburger-area {
  position: fixed;
  right: -490px;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  z-index: 9999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
.hamburger-area::-webkit-scrollbar {
  display: none;
}
.hamburger-area.opened {
  right: 0px;
}
@media (max-width: 575px) {
  .hamburger-area {
    width: 320px;
  }
}
.hamburger_bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--fa-color-theme-bg);
  z-index: -1;
}
.hamburger_wrapper {
  position: relative;
  padding: 45px 45px 90px 45px;
  overflow: auto;
  height: 100%;
}
@media (max-width: 575px) {
  .hamburger_wrapper {
    padding: 40px 20px 60px 20px;
  }
}
.hamburger_top {
  margin-bottom: 40px;
}
.hamburger_close_btn {
  display: inline-block;
  font-size: 35px;
  line-height: 1;
  color: var(--fa-color-common-white);
}
@media (max-width: 575px) {
  .hamburger_close_btn {
    font-size: 30px;
  }
}
.hamburger_close_btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--fa-color-theme-primary);
}
.hamburger_search {
  position: relative;
  margin-bottom: 30px;
}
.hamburger_search select,
.hamburger_search .nice-select,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.hamburger_search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  color: var(--fa-color-common-white);
}
.hamburger_search select::-ms-input-placeholder,
.hamburger_search .nice-select::-ms-input-placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  )::-ms-input-placeholder,
.hamburger_search input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-webkit-input-placeholder,
.hamburger_search .nice-select::-webkit-input-placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  )::-webkit-input-placeholder,
.hamburger_search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-moz-placeholder,
.hamburger_search .nice-select::-moz-placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  )::-moz-placeholder,
.hamburger_search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select:-ms-input-placeholder,
.hamburger_search .nice-select:-ms-input-placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  ):-ms-input-placeholder,
.hamburger_search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-ms-input-placeholder,
.hamburger_search .nice-select::-ms-input-placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  )::-ms-input-placeholder,
.hamburger_search input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::placeholder,
.hamburger_search .nice-select::placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  )::placeholder,
.hamburger_search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search button {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--fa-color-common-white);
}
.hamburger_menu .mean-container .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.hamburger_menu .mean-container .mean-bar * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hamburger_menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}
.hamburger_menu .mean-nav > ul {
  display: block !important;
}
.hamburger_menu .mean-nav > ul > li:first-child > a {
  border-top: none;
}
.hamburger_menu .mean-nav ul li {
  position: relative;
}
.hamburger_menu .mean-nav ul li a {
  color: var(--fa-color-common-white);
  width: 100%;
  padding: 18px 0;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a:hover {
  color: var(--fa-color-theme-secondary);
}
.hamburger_menu .mean-nav ul li a.mean-expand {
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: 0;
  top: 10px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a.mean-expand:hover {
  color: var(--fa-color-common-white);
}
.hamburger_menu .mean-nav ul li a.mean-expand i {
  font-size: 16px;
  position: relative;
  top: 2px;
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--fa-color-theme-primary);
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.hamburger_menu .mean-nav ul li .sub-menu li {
  padding-left: 25px;
  position: relative;
}
.hamburger_menu .mean-nav ul li .sub-menu li a {
  width: 100%;
  padding: 18px 0;
  text-transform: capitalize;
}
.hamburger_menu .mean-nav ul li .sub-menu li a.mean-expand {
  padding: 0;
  width: 30px;
}
.hamburger_menu .mean-nav ul li.dropdown-opened > a {
  color: var(--fa-color-theme-primary);
}

.fa-offcanvas-area .hamburger_menu .mean-nav ul li a {
  color: var(--fa-color-grey-1);
  font-size: 72px;
  border-bottom: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-offcanvas-area .hamburger_menu .mean-nav ul li a {
    font-size: 40px;
  }
}
.fa-offcanvas-area .hamburger_menu .mean-nav ul li .sub-menu li {
  padding-left: 0;
}
.fa-offcanvas-area .hamburger_menu .mean-nav ul li .sub-menu li a {
  font-size: 22px;
  padding: 10px 0;
}

.fa-offcanvas-area .hamburger_menu .mean-nav ul li.dropdown-opened > a {
  color: var(--fa-color-common-white);
}

.hamburger-title {
  color: var(--fa-color-common-white);
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hamburger-infos {
  margin-bottom: 50px;
}
.hamburger-infos .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.hamburger-infos .contact-item:last-child {
  margin-bottom: 0;
}
.hamburger-infos .contact-item .contact-icon {
  position: relative;
  max-width: 40px;
  height: 55px;
  width: 100%;
  -webkit-mask-image: url(https://weblayout.mnsithub.com/html/webplateone/ecent/assets/images/shapes/vector-1.svg);
  mask-image: url(https://weblayout.mnsithub.com/html/webplateone/ecent/assets/images/shapes/vector-1.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--fa-color-theme-primary)),
    to(var(--fa-color-theme-secondary))
  );
  background: linear-gradient(
    180deg,
    var(--fa-color-theme-primary) 0%,
    var(--fa-color-theme-secondary) 100%
  );
  z-index: 1;
}
.hamburger-infos .contact-item .contact-icon span {
  position: absolute;
  top: 60%;
  left: 50%;
  line-height: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--fa-color-common-white);
  font-size: 18px;
  z-index: 2;
}
.hamburger-infos .contact-item .contact-text .text {
  color: var(--fa-color-common-white);
  font-size: 20px;
}

.hamburger-socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.hamburger-socials ul li a {
  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: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--fa-color-common-white);
  background: transparent;
  font-size: 14px;
  line-height: 1;
  border: 1.5px solid var(--fa-color-common-white);
}
.hamburger-socials ul li a i {
  color: var(--fa-color-common-white);
}
.hamburger-socials ul li a:hover {
  color: var(--fa-color-common-white);
  background-color: var(--fa-color-theme-primary);
  border-color: var(--fa-color-theme-primary);
}
.hamburger-socials ul li a:hover i {
  color: var(--fa-color-common-white);
}

.hamburger_logo .mobile_logo {
  display: inline-block;
  max-width: 120px;
  width: 100%;
}

.menu-bar button {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition:
    transform 300ms ease,
    -webkit-transform 300ms ease;
}
.menu-bar button span {
  height: 3px;
  width: 35px;
  display: block;
  background: var(--fa-color-common-white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-left: auto;
}
.menu-bar button span:nth-child(2) {
  width: 40px;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.menu-bar button span:nth-child(3) {
  width: 30px;
}
.menu-bar button span:nth-child(4) {
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 3px;
  height: 0;
  -webkit-transition: height 400ms;
  transition: height 400ms;
}
.menu-bar.style-2 button span {
  background: var(--fa-color-heading-primary);
}
.menu-bar.menu-bar-toggeled button {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
.menu-bar.menu-bar-toggeled button span:nth-child(1) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(3) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  -webkit-transition: height 200ms ease;
  transition: height 200ms ease;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .menu-bar {
    margin-left: 0;
  }
}

.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  backdrop-filter: blur(10px);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/* !END: hamburger CSS */
/* !START: Mainmenu CSS */
.tj-offcanvas-area {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--tj-color-theme-dark);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
  max-width: 480px;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
  padding: 110px 30px;
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap .mobile_menu {
  max-width: 350px;
  width: 100%;
}
.tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap .mobile_menu .mean-bar {
  margin-bottom: 0;
}
.tj-offcanvas-area .offcanvas_warp .canvas-content-area {
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  height: 100vh;
  position: relative;
  padding: 110px 30px 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tj-offcanvas-area .offcanvas_warp .canvas-content-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(19, 19, 19, 0)),
    to(var(--tj-color-theme-dark))
  );
  background: linear-gradient(
    180deg,
    rgba(19, 19, 19, 0) 0%,
    var(--tj-color-theme-dark) 100%
  );
  z-index: -1;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    margin-left: 70px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    max-width: 450px;
    margin-left: 200px;
  }
  .tj-offcanvas-area .offcanvas_warp .canvas-content-area {
    max-width: 550px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    max-width: 420px;
    margin-left: 200px;
  }
  .tj-offcanvas-area .offcanvas_warp .canvas-content-area {
    max-width: 470px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    max-width: 350px;
    margin-left: 200px;
  }
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap .mobile_menu {
    padding-left: 25px;
  }
  .tj-offcanvas-area .offcanvas_warp .canvas-content-area {
    max-width: 360px;
  }
}
.tj-offcanvas-area.opened {
  opacity: 1;
  pointer-events: all;
}
.tj-offcanvas-area.opened .offcanvas_warp .offcanvas_menu_wrap {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.tj-offcanvas-area.opened .offcanvas_warp .canvas-content-area {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.tj-offcanvas-area .offcanvas-copyright {
  position: absolute;
  bottom: 25px;
  left: 25px;
}
.tj-offcanvas-area .offcanvas-copyright p {
  color: var(--tj-color-grey-2);
  margin-bottom: 0;
}
.tj-offcanvas-area .offcanvas-copyright p a {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .offcanvas-copyright p a:hover {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    padding: 110px 0 80px 0;
  }
  .tj-offcanvas-area .offcanvas_warp .canvas-content-area {
    padding: 110px 25px 80px 50px;
  }
}

.canvas-content-area .contact-box-one .contact-item {
  text-align: end;
}
.canvas-content-area .contact-box-one .contact-item::before {
  background: var(--tj-color-common-white);
  right: 0;
  left: auto;
}
.canvas-content-area .contact-box-one .contact-item::after {
  background: var(--tj-color-common-white);
}
.canvas-content-area .contact-box-one .contact-item:last-child::after {
  background: var(--tj-color-common-white);
  right: 0;
  left: auto;
}
.canvas-content-area .contact-box-one .contact-item .contact-link {
  position: relative;
  color: var(--tj-color-common-white);
  z-index: 1;
}
.canvas-content-area .contact-box-one .contact-item .contact-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--tj-color-common-white);
  bottom: 5px;
  left: 0px;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.canvas-content-area
  .contact-box-one
  .contact-item
  .contact-link:hover::before {
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.canvas-content-area .contact-box-one .contact-item .location {
  color: var(--tj-color-common-white);
}
.canvas-content-area .contact-box-one .contact-item .sub-title {
  color: var(--tj-color-grey-1);
}

/* !END: Mainmenu CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.fa-hero-section {
  padding-top: 465px;
  padding-bottom: 200px;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.fa-hero-section {
  background-color: #000 !important;
  background-image: none !important;
}
.fa-hero-section .hero-lg-images {
  max-width: 60%;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.fa-hero-section .hero-lg-images img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 992px) {
  .fa-hero-section .hero-main-wrapper {
    position: relative;
    z-index: 2;
  }
  .fa-hero-section .hero-lg-images {
    top: 400px;
    bottom: 0;
    max-width: none;
    width: 50%;
    display: flex;
    align-items: flex-end;
    right: -2px;
  }
  .fa-hero-section .hero-lg-images img {
    max-height: 720px;
    margin-left: auto;
  }
}
.fa-hero-section.v-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 220px;
  padding-top: 370px;
  padding-bottom: 160px;
}

.fa-hero-section.v-2::before {
  background: none !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fa-hero-section.v-2 {
    padding-top: 330px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-hero-section.v-2 {
    padding-top: 310px;
    padding-bottom: 100px;
    background-position: center 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fa-hero-section.v-2 {
    padding-top: 210px;
    padding-bottom: 80px;
    background-position: center 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-hero-section.v-2 {
    padding-top: 150px;
    padding-bottom: 80px;
    background-position: center 0px;
  }
}
@media (max-width: 575px) {
  .fa-hero-section.v-2 {
    padding-top: 150px;
    padding-bottom: 80px;
    background-position: center 0px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .fa-hero-section {
    padding-top: 365px;
    padding-bottom: 120px;
  }
  .fa-hero-section .hero-lg-images {
    max-width: 65%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fa-hero-section {
    padding-top: 350px;
    padding-bottom: 120px;
  }
  .fa-hero-section .hero-lg-images {
    max-width: 70%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-hero-section {
    padding-top: 340px;
    padding-bottom: 120px;
  }
  .fa-hero-section .hero-lg-images {
    max-width: 73%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fa-hero-section {
    padding-top: 200px;
    padding-bottom: 110px;
  }
  .fa-hero-section .hero-lg-images {
    max-width: 80%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-hero-section {
    padding-top: 180px;
    padding-bottom: 0px;
  }
  .fa-hero-section .hero-lg-images {
    max-width: 100%;
    position: initial;
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .fa-hero-section {
    padding-top: 130px;
    padding-bottom: 0px;
  }
  .fa-hero-section .hero-lg-images {
    max-width: 100%;
    position: initial;
    margin-top: 20px;
  }
}

.hero-main-wrapper {
  max-width: 575px;
  width: 100%;
  position: relative;
}
.hero-main-wrapper::before {
  position: absolute;
  content: "";
  width: 635px;
  height: 535px;
  top: 50%;
  left: 50%;
  border: 2px solid var(--fa-color-common-white);
  -webkit-transform: translate(-50%, -50%) skew(3deg);
  -ms-transform: translate(-50%, -50%) skew(3deg);
  transform: translate(-50%, -50%) skew(3deg);
}
.hero-main-wrapper .hero-title {
  display: block;
  color: var(--fa-color-common-white);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 20px;
  line-height: 1;
}
.hero-main-wrapper .hero-subtitle {
  display: block;
  color: var(--fa-color-common-white);
}
.hero-main-wrapper .hero-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
  margin-top: 50px;
}
.hero-main-wrapper.v-2 {
  position: relative;
  z-index: 2;
}
.hero-main-wrapper.v-2::before {
  display: none;
}
.hero-main-wrapper.v-2 .hero-title {
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-main-wrapper {
    padding-left: 50px;
  }
  .hero-main-wrapper::before {
    width: 540px;
    height: 460px;
  }
  .hero-main-wrapper.v-2 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-main-wrapper {
    padding-left: 50px;
  }
  .hero-main-wrapper::before {
    width: 495px;
    height: 410px;
    left: 45%;
  }
  .hero-main-wrapper .hero-button {
    margin-top: 30px;
  }
  .hero-main-wrapper.v-2 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-main-wrapper {
    padding-left: 30px;
  }
  .hero-main-wrapper::before {
    width: 400px;
    height: 385px;
    left: 36%;
  }
  .hero-main-wrapper .hero-button {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 30px;
  }
  .hero-main-wrapper.v-2 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-main-wrapper {
    text-align: center;
  }
  .hero-main-wrapper::before {
    width: 420px;
    height: 360px;
  }
  .hero-main-wrapper .hero-button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .hero-main-wrapper {
    text-align: center;
  }
  .hero-main-wrapper::before {
    display: none;
  }
  .hero-main-wrapper .hero-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }
  .hero-main-wrapper .hero-button .fa-primary-btn,
  .hero-main-wrapper .hero-button .fa-secondary-btn {
    width: 100%;
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.fa-slider-section {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 260px;
  padding-bottom: 180px;
  background-color: var(--fa-color-theme-bg);
  overflow: hidden;
}
.fa-slider-section .slider-images {
  position: absolute;
  bottom: 0;
  right: 210px;
  max-width: 495px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-slider-section {
    padding-top: 210px;
    padding-bottom: 120px;
  }
  .fa-slider-section .slider-images {
    right: 160px;
    max-width: 365px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fa-slider-section {
    padding-top: 165px;
    padding-bottom: 100px;
  }
  .fa-slider-section .slider-images {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-slider-section {
    padding-top: 165px;
    padding-bottom: 100px;
  }
  .fa-slider-section .slider-images {
    display: none;
  }
}
@media (max-width: 575px) {
  .fa-slider-section {
    padding-top: 135px;
    padding-bottom: 80px;
  }
  .fa-slider-section .slider-images {
    display: none;
  }
}

.slider-item {
  max-width: 775px;
  width: 100%;
}
.slider-item .slider-title {
  color: var(--fa-color-common-white);
  font-size: 100px;
  font-weight: var(--fa-fw-medium);
  text-transform: uppercase;
  margin-bottom: 0;
}
.slider-item .slider-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 10px;
  margin-top: 95px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-item {
    max-width: 890px;
    padding-left: 100px;
  }
  .slider-item .slider-button {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-item {
    max-width: 850px;
    padding-left: 115px;
  }
  .slider-item .slider-button {
    margin-top: 40px;
  }
  .slider-item .slider-title {
    font-size: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-item {
    max-width: 100%;
  }
  .slider-item .slider-button {
    margin-top: 30px;
  }
  .slider-item .slider-title {
    font-size: 85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-item {
    max-width: 100%;
  }
  .slider-item .slider-button {
    margin-top: 30px;
  }
  .slider-item .slider-title {
    font-size: 65px;
  }
}
@media (max-width: 575px) {
  .slider-item {
    max-width: 100%;
  }
  .slider-item .slider-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }
  .slider-item .slider-button .fa-secondary-btn,
  .slider-item .slider-button .fa-primary-btn {
    width: 100%;
  }
  .slider-item .slider-title {
    font-size: 40px;
  }
}

.slider-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 25px;
  position: absolute;
  top: 50%;
  left: 60px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider-navigation .slider-next,
.slider-navigation .slider-prev {
  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;
  font-size: 25px;
  width: 75px;
  height: 75px;
  color: var(--fa-color-heading-primary);
  background: var(--fa-color-common-white);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.slider-navigation .slider-next i,
.slider-navigation .slider-prev i {
  color: var(--fa-color-heading-primary);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.slider-navigation .slider-next:hover,
.slider-navigation .slider-prev:hover {
  color: var(--fa-color-common-white);
  background-color: var(--fa-color-theme-primary);
}
.slider-navigation .slider-next:hover i,
.slider-navigation .slider-prev:hover i {
  color: var(--fa-color-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-navigation {
    left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-navigation {
    position: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .slider-navigation .slider-next,
  .slider-navigation .slider-prev {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 575px) {
  .slider-navigation {
    position: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .slider-navigation .slider-next,
  .slider-navigation .slider-prev {
    width: 50px;
    height: 50px;
  }
}

/* !END: Theme Slider CSS */
/**----------------------------------------
START: Theme About CSS
----------------------------------------*/
.fa-about-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.fa-about-section .fa-heading-area {
  margin-bottom: 0;
}
.fa-about-section.v-3 {
  padding-top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-about-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.about-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  row-gap: 40px;
  position: relative;
}
.about-main-wrapper .about-images {
  max-width: 515px;
  width: 100%;
}
.about-main-wrapper .about-images img {
  width: 100%;
  border-radius: 50%;
}
.about-main-wrapper .about-shapes {
  position: absolute;
  right: -74px;
  bottom: 0px;
  z-index: -1;
  max-width: 690px;
  width: 100%;
}
.about-main-wrapper.style-2 {
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 65px;
}
.about-main-wrapper.style-2 .about-content .about-desc {
  margin-bottom: 20px;
}
.about-main-wrapper.style-2 .about-content .description {
  margin-bottom: 0;
}
.about-main-wrapper.style-2 .about-content .about-feature-style-2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
  row-gap: 20px;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .about-main-wrapper.style-2 .about-content .about-feature-style-2-wrap {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .about-main-wrapper.style-2 .about-content .about-feature-style-2-wrap {
    row-gap: 40px;
    padding-left: 20px;
  }
}
.about-main-wrapper.style-2 .about-content .about-feature-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--fa-color-border-4);
  margin-top: 40px;
  padding: 20px 25px;
  max-width: 530px;
  row-gap: 15px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-main-wrapper.style-2 .about-content .about-feature-infos {
    padding: 15px 10px;
  }
  .about-main-wrapper.style-2
    .about-content
    .about-feature-infos
    .about-infos-item {
    padding-right: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 575px) {
  .about-main-wrapper.style-2 .about-content .about-feature-infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-main-wrapper.style-2
    .about-content
    .about-feature-infos
    .about-infos-item {
    padding-right: 0;
    margin-right: 0;
  }
  .about-main-wrapper.style-2
    .about-content
    .about-feature-infos
    .about-infos-item::before {
    display: none;
  }
}
.about-main-wrapper.style-3 {
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.about-main-wrapper.style-3 .about-counter-wrap .about-images::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 20px;
  -webkit-mask-image: url(../images/shapes/h3-ab-1.svg);
  mask-image: url(../images/shapes/h3-ab-1.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: var(--fa-color-theme-primary);
}
.about-main-wrapper.style-3 .about-counter-wrap .about-images::after {
  position: absolute;
  content: "";
  width: 465px;
  height: 480px;
  border: 2px solid var(--fa-color-theme-bg);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) skew(3deg);
  -ms-transform: translate(-50%, -50%) skew(3deg);
  transform: translate(-50%, -50%) skew(3deg);
  z-index: -1;
}
.about-main-wrapper.style-3 .about-counter-wrap .ab-shapes-1 {
  position: absolute;
  top: -100px;
  right: -30px;
}
.about-main-wrapper.style-3 .about-counter-wrap .ab-shapes-2 {
  position: absolute;
  bottom: -75px;
  left: -210px;
}
.about-main-wrapper.style-3 .about-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-main-wrapper {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .about-main-wrapper .about-content {
    max-width: 495px;
  }
  .about-main-wrapper .about-images {
    max-width: 440px;
  }
  .about-main-wrapper .about-shapes {
    max-width: 560px;
    bottom: 65px;
  }
  .about-main-wrapper.style-3 {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .about-main-wrapper.style-3 .about-counter-wrap .about-images {
    max-width: 385px;
    width: 100%;
    padding-left: 25px;
  }
  .about-main-wrapper.style-3 .about-counter-wrap .about-images::after {
    width: 420px;
    height: 415px;
    left: 58%;
    top: 50%;
  }
  .about-main-wrapper.style-3 .about-counter-wrap .ab-shapes-1 {
    position: absolute;
    top: -75px;
    right: -10px;
  }
  .about-main-wrapper.style-3 .about-counter-wrap .ab-shapes-2 {
    max-width: 485px;
    position: absolute;
    bottom: -75px;
    left: -140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .about-main-wrapper {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .about-main-wrapper .about-content {
    max-width: 100%;
  }
  .about-main-wrapper .about-content .about-feature-wrap {
    margin-top: 30px;
  }
  .about-main-wrapper .about-content .about-desc {
    font-size: 20px;
  }
  .about-main-wrapper .about-images {
    max-width: 100%;
    text-align: center;
  }
  .about-main-wrapper .about-shapes {
    max-width: 100%;
    right: 0;
    bottom: 0;
  }
  .about-main-wrapper.style-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .about-main-wrapper.style-3 .about-counter-wrap .ab-shapes-1 {
    position: absolute;
    top: -20px;
    right: 0;
  }
}
@media (max-width: 575px) {
  .about-main-wrapper {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .about-main-wrapper .about-content {
    max-width: 100%;
  }
  .about-main-wrapper .about-content .about-feature-wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
  .about-main-wrapper .about-content .about-desc {
    font-size: 20px;
  }
  .about-main-wrapper .about-images {
    max-width: 100%;
    text-align: center;
  }
  .about-main-wrapper .about-images::after {
    display: none;
  }
  .about-main-wrapper .about-shapes {
    max-width: 100%;
    right: 0;
    bottom: 0;
  }
  .about-main-wrapper.style-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .about-main-wrapper.style-3 .about-counter-wrap .ab-shapes-1 {
    position: absolute;
    top: 0;
    right: 0;
  }
  .about-main-wrapper.style-3 .about-counter-wrap .ab-shapes-2 {
    display: none;
  }
  .about-main-wrapper.style-3 .about-button {
    margin-top: 30px;
  }
  .about-main-wrapper.style-3 .about-button .fa-primary-btn {
    width: 100%;
  }
}

.about-content {
  max-width: 570px;
  width: 100%;
}
.about-content .heading-title {
  margin-bottom: 20px;
}
.about-content .about-desc {
  font-size: 24px;
  color: var(--fa-color-theme-primary);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 0;
  line-height: 1.3;
}
.about-content .about-feature-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  margin-top: 40px;
}

.about-feature-item {
  text-align: center;
}
.about-feature-item .feature-icons {
  position: relative;
  margin-bottom: 25px;
}
.about-feature-item .feature-icons::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 65px;
  height: 75px;
  background: url(../images/shapes/icons-shapes.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-feature-item .feature-icons img {
  width: 35px;
}
.about-feature-item .about-feature-text .feature-title {
  margin-bottom: 20px;
}
.about-feature-item .about-feature-text .feature-desc {
  margin-bottom: 0;
  line-height: 1.7;
}
@media (max-width: 575px) {
  .about-feature-item .feature-icons {
    margin-bottom: 10px;
  }
  .about-feature-item .about-feature-text .feature-title {
    margin-bottom: 10px;
  }
}

.about-feature-style-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.about-feature-style-2 .feature-icons {
  position: relative;
}
.about-feature-style-2 .feature-icons::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 65px;
  height: 75px;
  background: url(../images/shapes/icons-shapes.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.about-feature-style-2 .about-feature-text .feature-title {
  margin-bottom: 0;
}

.about-counter-wrap {
  position: relative;
  max-width: 545px;
  width: 100%;
}
.about-counter-wrap .about-images {
  position: relative;
  max-width: 545px;
}
.about-counter-wrap .about-images::before {
  position: absolute;
  content: "";
  width: 120%;
  height: 105%;
  top: -28px;
  left: -65px;
  -webkit-mask-image: url(../images/shapes/ab-shapes.svg);
  mask-image: url(../images/shapes/ab-shapes.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: var(--fa-color-theme-primary);
}
.about-counter-wrap .about-images img {
  position: relative;
  z-index: 2;
}
.about-counter-wrap .counter-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--fa-color-theme-bg);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 190px;
  height: 190px;
  background: var(--fa-color-theme-bg);
  border-radius: 50%;
  position: absolute;
  left: 75px;
  bottom: 0;
  z-index: 2;
}
.about-counter-wrap .counter-item::before {
  position: absolute;
  content: "";
  width: 188px;
  height: 188px;
  border: 8px dotted var(--fa-color-common-white);
  border-radius: 50%;
}
.about-counter-wrap .counter-item .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 45px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-bold);
}
.about-counter-wrap .counter-item .number span {
  font-size: 45px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-bold);
}
.about-counter-wrap .counter-item .sub-title {
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-counter-wrap {
    max-width: 430px;
  }
  .about-counter-wrap .counter-item {
    left: 45px;
    bottom: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-counter-wrap {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-counter-wrap .about-images {
    max-width: 100%;
  }
  .about-counter-wrap .counter-item {
    left: 80px;
    bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-counter-wrap {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-counter-wrap .about-images {
    max-width: 100%;
  }
  .about-counter-wrap .about-images::before {
    left: -60px;
  }
  .about-counter-wrap .counter-item {
    left: 40px;
    bottom: 10px;
  }
}
@media (max-width: 575px) {
  .about-counter-wrap {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-counter-wrap .about-images {
    max-width: 100%;
  }
  .about-counter-wrap .about-images::before {
    left: -35px;
  }
  .about-counter-wrap .counter-item {
    width: 140px;
    height: 140px;
    left: 20px;
    bottom: 0;
  }
  .about-counter-wrap .counter-item::before {
    width: 140px;
    height: 140px;
  }
  .about-counter-wrap .counter-item .number {
    font-size: 30px;
  }
  .about-counter-wrap .counter-item .number span {
    font-size: 30px;
  }
  .about-counter-wrap .counter-item .sub-title {
    font-size: 16px;
  }
}

.about-infos-item {
  position: relative;
  padding-right: 34px;
  margin-right: 34px;
}
.about-infos-item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.about-infos-item::before {
  position: absolute;
  content: "";
  height: 65%;
  width: 2px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--fa-color-theme-primary);
}
.about-infos-item:last-child::before {
  display: none;
}
.about-infos-item .title {
  margin-bottom: 10px;
}
.about-infos-item .subtitle {
  display: block;
}
.about-infos-item .date {
  display: block;
  color: var(--fa-color-theme-primary);
  font-weight: var(--fa-fw-medium);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-infos-item .about-infos-item {
    padding-right: 15px;
    margin-right: 15px;
  }
}

.about-feature-style-3-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
.about-feature-style-3-wrap .about-feature-style-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.about-feature-style-3-wrap .about-feature-style-3 .feature-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.about-feature-style-3-wrap .about-feature-style-3 .feature-icons::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 65px;
  height: 75px;
  background: url(../images/shapes/icons-shapes.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.about-feature-style-3-wrap
  .about-feature-style-3
  .about-feature-text
  .feature-title {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-feature-style-3-wrap {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .about-feature-style-3-wrap .about-feature-style-3 {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media (max-width: 575px) {
  .about-feature-style-3-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Theme Counter CSS
----------------------------------------*/
.fa-counter-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--fa-color-theme-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fa-counter-section.v-2 {
  padding-top: 65px;
  padding-bottom: 55px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fa-counter-section.v-3 {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.fa-counter-section.v-3 .h3-one-shapes {
  position: absolute;
  top: -10px;
  left: -100px;
}
.fa-counter-section.v-3 .h3-two-shapes {
  position: absolute;
  right: -145px;
  bottom: -110px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-counter-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .fa-counter-section.v-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-counter-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .fa-counter-section.v-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.counter-main-wrapper .counter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.counter-main-wrapper .counter-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  row-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 880px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
.counter-main-wrapper .counter-text .counter-desc {
  color: var(--fa-color-grey-3);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 0;
}
.counter-main-wrapper .counter-text .counter-desc .active {
  color: var(--fa-color-common-white);
}
.counter-main-wrapper.v-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.counter-main-wrapper.v-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
  max-width: 1015px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-main-wrapper .counter-text {
    max-width: 100%;
    margin-top: 40px;
  }
  .counter-main-wrapper .counter-text .counter-desc {
    max-width: 460px;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-main-wrapper .counter-text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    margin-top: 30px;
  }
  .counter-main-wrapper.v-2 {
    max-width: 530px;
    width: 100%;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 50px;
  }
  .counter-main-wrapper.v-3 {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media (max-width: 575px) {
  .counter-main-wrapper .counter-text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    margin-top: 30px;
  }
  .counter-main-wrapper .counter-text .fa-transparent-btn {
    width: 100%;
  }
  .counter-main-wrapper.v-2 {
    max-width: 350px;
    width: 100%;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 50px;
  }
  .counter-main-wrapper.v-3 {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}

.fa-timer-item {
  position: relative;
  padding-right: 125px;
  margin-right: 125px;
}
.fa-timer-item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.fa-timer-item:last-child::before {
  display: none;
}
.fa-timer-item:last-child::after {
  display: none;
}
.fa-timer-item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 15px;
  right: 0;
  background: var(--fa-color-common-white);
  border-radius: 100%;
}
.fa-timer-item::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 30px;
  right: 0;
  background: var(--fa-color-common-white);
  border-radius: 100%;
}
.fa-timer-item .counter-number {
  display: block;
  font-size: 45px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-bold);
  margin-bottom: 15px;
  line-height: 1;
}
.fa-timer-item .counter-date {
  font-size: 24px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-timer-item {
    padding-right: 95px;
    margin-right: 95px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fa-timer-item {
    padding-right: 58px;
    margin-right: 58px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-timer-item {
    padding-right: 30px;
    margin-right: 30px;
  }
  .fa-timer-item .counter-number {
    font-size: 40px;
  }
  .fa-timer-item .counter-date {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .fa-timer-item {
    padding-right: 15px;
    margin-right: 15px;
  }
  .fa-timer-item::before {
    right: -5px;
  }
  .fa-timer-item::after {
    right: -5px;
  }
  .fa-timer-item .counter-number {
    font-size: 24px;
  }
  .fa-timer-item .counter-date {
    font-size: 16px;
  }
}

.counter-bottom-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 15px;
  margin-top: 35px;
}
.counter-bottom-text .counter-desc {
  font-weight: var(--fa-fw-medium);
  color: var(--fa-color-grey-3);
  margin-bottom: 0;
}
.counter-bottom-text .counter-desc .active {
  color: var(--fa-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-bottom-text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-bottom-text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .counter-bottom-text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
  }
  .counter-bottom-text .fa-transparent-btn {
    width: 100%;
  }
}

.counter-style-2 .counter-number {
  position: relative;
}
.counter-style-2 .counter-number .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 45px;
  font-weight: var(--fa-fw-bold);
  font-family: var(--fa-ff-heading);
  color: var(--fa-color-common-white);
  position: relative;
  margin-bottom: 35px;
  z-index: 2;
  line-height: 1;
}
.counter-style-2 .counter-number .number span {
  font-size: 45px;
  font-weight: var(--fa-fw-bold);
  font-family: var(--fa-ff-heading);
  color: var(--fa-color-common-white);
  line-height: 1;
}
.counter-style-2 .counter-number .number-shape {
  position: absolute;
  top: -25px;
  left: -25px;
}
.counter-style-2 .sub-title {
  display: block;
  font-size: 24px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-style-2 .sub-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-style-2 .sub-title {
    font-size: 20px;
  }
  .counter-style-2 .number {
    margin-bottom: 20px;
  }
  .counter-style-2 .number span {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .counter-style-2 .sub-title {
    font-size: 16px;
  }
  .counter-style-2 .number {
    margin-bottom: 20px;
  }
  .counter-style-2 .number span {
    font-size: 30px;
  }
}

.counter-style-3 {
  max-width: 230px;
  width: 100%;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.counter-style-3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 2px;
  height: 80%;
  background: var(--fa-color-theme-primary);
}
.counter-style-3 .counter-content {
  padding: 40px 50px;
  background: var(--fa-color-common-white);
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%, 0 0);
}
.counter-style-3 .counter-content .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 60px;
  font-weight: var(--fa-fw-bold);
  font-family: var(--fa-ff-heading);
  color: var(--fa-color-heading-primary);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
}
.counter-style-3 .counter-content .number span {
  font-size: 60px;
  font-weight: var(--fa-fw-bold);
  font-family: var(--fa-ff-heading);
  color: var(--fa-color-heading-primary);
  line-height: 1;
}
.counter-style-3 .counter-content .sub-title {
  display: block;
  font-size: 24px;
  color: var(--fa-color-heading-primary);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-sbold);
  text-transform: uppercase;
}
.counter-style-3:hover::before {
  left: -2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-style-3 {
    max-width: 215px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-style-3 {
    max-width: 160px;
  }
  .counter-style-3 .counter-content {
    padding: 30px 15px;
  }
  .counter-style-3 .counter-content .number {
    font-size: 35px;
  }
  .counter-style-3 .counter-content .number span {
    font-size: 35px;
  }
  .counter-style-3 .counter-content .sub-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .counter-style-3 {
    max-width: 160px;
  }
  .counter-style-3 .counter-content {
    padding: 30px 15px;
  }
  .counter-style-3 .counter-content .number {
    font-size: 30px;
  }
  .counter-style-3 .counter-content .number span {
    font-size: 30px;
  }
  .counter-style-3 .counter-content .sub-title {
    font-size: 16px;
  }
}

.popup-videos-button {
  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;
  font-size: 22px;
  color: var(--fa-color-common-white);
  background: var(--fa-color-theme-primary);
  border-radius: 50%;
}
.popup-videos-button::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-animation: waves 2s 1s ease-out infinite;
  animation: waves 2s 1s ease-out infinite;
}
.popup-videos-button:hover {
  color: var(--fa-color-common-white);
}
.popup-videos-button:hover i {
  color: var(--fa-color-common-white);
}

/* !END: Theme Counter CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.fa-contact-section {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--fa-color-theme-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.fa-contact-section .fa-heading-area .heading-title {
  color: var(--fa-color-common-white);
}
.fa-contact-section .google-map {
  position: absolute;
  top: 0;
  right: 0;
}
.fa-contact-section .google-map::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 85%;
  left: -35px;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(15.89%, var(--fa-color-theme-primary)),
    color-stop(84.34%, var(--fa-color-theme-bg)),
    to(var(--fa-color-theme-bg))
  );
  background: linear-gradient(
    180deg,
    var(--fa-color-theme-primary) 15.89%,
    var(--fa-color-theme-bg) 84.34%,
    var(--fa-color-theme-bg) 100%
  );
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
}
.fa-contact-section .google-map iframe {
  height: 685px;
  width: 750px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .fa-contact-section .google-map iframe {
    width: 685px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .fa-contact-section .google-map iframe {
    width: 580px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fa-contact-section .google-map::before {
    left: -30px;
  }
  .fa-contact-section .google-map iframe {
    width: 485px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .fa-contact-section .google-map::before {
    left: -25px;
  }
  .fa-contact-section .google-map iframe {
    width: 265px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fa-contact-section {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .fa-contact-section .google-map {
    position: initial;
  }
  .fa-contact-section .google-map::before {
    display: none;
  }
  .fa-contact-section .google-map iframe {
    width: 100%;
    clip-path: initial;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-contact-section {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .fa-contact-section .google-map {
    position: initial;
  }
  .fa-contact-section .google-map::before {
    display: none;
  }
  .fa-contact-section .google-map iframe {
    width: 100%;
    height: 385px;
    clip-path: initial;
  }
}
@media (max-width: 575px) {
  .fa-contact-section {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .fa-contact-section .google-map {
    position: initial;
  }
  .fa-contact-section .google-map::before {
    display: none;
  }
  .fa-contact-section .google-map iframe {
    width: 100%;
    height: 350px;
    clip-path: initial;
  }
}

.fa-contact-page {
  padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-contact-page {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-contact-page {
    padding-top: 100px;
  }
  .fa-contact-page .contact-sitebar {
    margin-top: 40px;
  }
}

.contact-main-wrapper {
  max-width: 680px;
  width: 100%;
}
.contact-main-wrapper .contact-desc {
  color: var(--fa-color-grey-3);
  margin-top: 25px;
  margin-bottom: 0;
}
.contact-main-wrapper .contact-desc span {
  color: var(--fa-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .contact-main-wrapper {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

.form-one form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
.form-one form .form-input {
  max-width: 330px;
  width: 100%;
}
.form-one
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ),
.form-one form .form-input textarea,
.form-one form .form-input input[type="email"] {
  border: 1px solid var(--fa-color-border-6);
  padding: 15px 30px;
  width: 100%;
  background: transparent;
  color: var(--fa-color-common-white);
}
.form-one
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.form-one form .form-input textarea::-ms-input-placeholder,
.form-one form .form-input input[type="email"]::-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.form-one
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-webkit-input-placeholder,
.form-one form .form-input textarea::-webkit-input-placeholder,
.form-one form .form-input input[type="email"]::-webkit-input-placeholder {
  color: var(--fa-color-grey-3);
}
.form-one
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-moz-placeholder,
.form-one form .form-input textarea::-moz-placeholder,
.form-one form .form-input input[type="email"]::-moz-placeholder {
  color: var(--fa-color-grey-3);
}
.form-one
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ):-ms-input-placeholder,
.form-one form .form-input textarea:-ms-input-placeholder,
.form-one form .form-input input[type="email"]:-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.form-one
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.form-one form .form-input textarea::-ms-input-placeholder,
.form-one form .form-input input[type="email"]::-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.form-one
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::placeholder,
.form-one form .form-input textarea::placeholder,
.form-one form .form-input input[type="email"]::placeholder {
  color: var(--fa-color-grey-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .form-one form .form-input {
    max-width: 360px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .form-one form .form-input {
    max-width: 265px;
  }
}
@media (max-width: 575px) {
  .form-one form .form-input {
    max-width: 100%;
  }
  .form-one form .form-input .fa-primary-btn {
    text-align: center;
    width: 100%;
  }
}

.form-two {
  padding: 30px 25px 40px;
  border-top: 4px solid var(--fa-color-theme-primary);
  -webkit-box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  background: var(--fa-color-common-white);
}
.form-two .contact-title {
  text-align: center;
  font-weight: var(--fa-fw-medium);
  margin-bottom: 30px;
}
.form-two form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
.form-two form .form-input {
  max-width: 330px;
  width: 100%;
}
.form-two
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ),
.form-two form .form-input input[type="email"] {
  border: 1px solid var(--fa-color-border-3);
  padding: 15px 30px;
  width: 100%;
  background: transparent;
  color: var(--fa-color-common-white);
}
.form-two
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.form-two form .form-input input[type="email"]::-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.form-two
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-webkit-input-placeholder,
.form-two form .form-input input[type="email"]::-webkit-input-placeholder {
  color: var(--fa-color-grey-3);
}
.form-two
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-moz-placeholder,
.form-two form .form-input input[type="email"]::-moz-placeholder {
  color: var(--fa-color-grey-3);
}
.form-two
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ):-ms-input-placeholder,
.form-two form .form-input input[type="email"]:-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.form-two
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.form-two form .form-input input[type="email"]::-ms-input-placeholder {
  color: var(--fa-color-grey-3);
}
.form-two
  form
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::placeholder,
.form-two form .form-input input[type="email"]::placeholder {
  color: var(--fa-color-grey-3);
}
.form-two form .nice-select {
  border: 1px solid var(--fa-color-border-3);
}
.form-two form .nice-select::before {
  color: var(--fa-color-grey-3);
}

.contact-sitebar .contact-widget {
  margin-bottom: 30px;
}
.contact-sitebar .contact-widget:last-child {
  margin-bottom: 0;
}
.contact-sitebar .contact-widget .google-map iframe {
  width: 100%;
  height: 440px;
}

.nice-select {
  position: relative;
  border: 1px solid var(--fa-color-border-6);
  padding: 8px 30px;
  background: transparent;
  border-radius: 0;
  z-index: 1;
}
.nice-select::after {
  display: none;
}
.nice-select::before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  right: 20px;
  font-size: 18px;
  color: var(--fa-color-text-body);
}
.nice-select.open::before {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select span.current {
  color: var(--fa-color-grey-3);
}
.nice-select .list {
  width: 100%;
  margin-top: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--fa-color-border-2);
  border-radius: 0;
}
.nice-select .list .option {
  color: var(--fa-color-text-body);
}
.nice-select .list .option.selected {
  color: var(--fa-color-text-body);
  font-weight: var(--fa-fw-regular);
  background-color: var(--fa-color-theme-secondary);
}
.nice-select .list:hover .option {
  color: var(--fa-color-grey-3);
  background-color: var(--fa-color-theme-secondary);
}
.nice-select:hover {
  border-color: var(--fa-color-border-6);
}

.contact-left-content .contact-item-box {
  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;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .contact-left-content .contact-item-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.contact-left-content .contact-images {
  margin-top: 35px;
}

.contact-style-3 {
  max-width: 370px;
  width: 100%;
  background: var(--fa-color-theme-primary);
  padding: 40px 40px;
  clip-path: polygon(100% 0, 100% 39%, 100% 100%, 0 100%, 0 10%);
}
.contact-style-3 .contact-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 25px;
}
.contact-style-3 .contact-date .icons {
  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: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.contact-style-3 .contact-date .date {
  display: block;
  font-size: 24px;
  color: var(--fa-color-common-white);
  font-weight: var(--fa-fw-medium);
  font-family: var(--fa-ff-heading);
}
.contact-style-3 .contact-timer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 5px;
}
.contact-style-3 .contact-timer ul li {
  color: var(--fa-color-common-white);
}
.contact-style-3:last-child {
  background: var(--fa-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-style-3 {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-style-3 {
    padding: 35px 12px 25px;
  }
}
@media (max-width: 575px) {
  .contact-style-3 {
    padding: 35px 20px 30px;
  }
}

.contact-text .contact-title {
  margin-bottom: 10px;
}
.contact-text .subtitle {
  display: block;
  font-size: 24px;
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
  color: var(--fa-color-theme-primary);
  margin-top: 25px;
  margin-bottom: 25px;
}
.contact-text .desc {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .contact-text .subtitle {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .form-two form .form-input {
    max-width: 240px;
  }
}
/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
.fa-testimonial-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.fa-testimonial-section .fa-heading-area {
  max-width: 775px;
}
.fa-testimonial-section .testimonial-main-wrapper .fa-testimonial-slider {
  padding-right: 20px;
}
.fa-testimonial-section.v-2 {
  padding-bottom: 240px;
}
.fa-testimonial-section.v-2 .fa-heading-area {
  max-width: 540px;
}
.fa-testimonial-section.v-2 .fa-testimonial-slider2 {
  padding-top: 25px;
  padding-left: 20px;
  padding-bottom: 1px;
}
.fa-testimonial-section.v-3 {
  padding-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .fa-testimonial-section.v-2 {
    padding-bottom: 220px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .fa-testimonial-section.v-2 {
    padding-bottom: 200px;
  }
}

.testimonial-item {
  border: 1px solid var(--fa-color-border-2);
  padding: 40px 30px 40px 40px;
  border-radius: 5px;
}
.testimonial-item .testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 25px;
}
.testimonial-item .testimonial-author .author-images {
  width: 85px;
  height: 85px;
  position: relative;
}
.testimonial-item .testimonial-author .author-images::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: -10px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(15.89%, var(--fa-color-theme-primary)),
    color-stop(84.34%, var(--fa-color-theme-bg)),
    to(var(--fa-color-theme-bg))
  );
  background: linear-gradient(
    180deg,
    var(--fa-color-theme-primary) 15.89%,
    var(--fa-color-theme-bg) 84.34%,
    var(--fa-color-theme-bg) 100%
  );
  border-radius: 50%;
  z-index: -1;
}
.testimonial-item .testimonial-author .author-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-item .testimonial-author .author-text {
  padding-left: 10px;
}
.testimonial-item .testimonial-author .author-text .author-name {
  font-weight: var(--fa-fw-medium);
  margin-bottom: 0;
}
.testimonial-item .testimonial-author .author-text .author-description {
  display: block;
  color: var(--fa-color-theme-primary);
}
.testimonial-item .testimonial-desc {
  margin-bottom: 0;
  line-height: 1.8;
}
.testimonial-item .testimonial-rating {
  position: relative;
  display: inline-block;
  background: var(--fa-color-grey-6);
  padding: 10px 20px;
  border-radius: 6px 0 0 6px;
  position: absolute;
  top: 65px;
  right: -20px;
}
.testimonial-item .testimonial-rating::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  right: 0;
  bottom: -13px;
  border-top: 14px solid var(--fa-color-grey-6);
  border-right: 20px solid transparent;
}
.testimonial-item.style-2 {
  position: relative;
  padding: 0px;
  border-radius: 150px;
  background-color: var(--fa-color-common-white);
  border: 1px solid var(--fa-color-border-5);
}
.testimonial-item.style-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: -20px;
  width: 266.39px;
  height: 100%;
  background: var(--fa-color-theme-primary);
  border-radius: 50%;
  z-index: -1;
}
.testimonial-item.style-2 .testimonial-author {
  padding-left: 110px;
  margin-top: -25px;
  margin-bottom: 0;
}
.testimonial-item.style-2 .testimonial-author .author-images {
  width: 120px;
  height: 120px;
}
.testimonial-item.style-2 .testimonial-author .author-images::before {
  display: none;
}
.testimonial-item.style-2 .testimonial-author .author-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-item.style-2 .testimonial-author .author-text .author-description {
  color: var(--fa-color-text-body);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item.style-2 .testimonial-author {
    padding-left: 50px;
  }
}
@media (max-width: 575px) {
  .testimonial-item.style-2 .testimonial-author {
    padding-left: 15px;
  }
}
.testimonial-item.style-2 .testimonial-desc {
  font-style: italic;
  padding: 25px 40px 60px;
}
.testimonial-item.style-2 .testimonial-quote {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .testimonial-item.style-2 {
    border-radius: 25px;
  }
  .testimonial-item.style-2::before {
    border-radius: 25px;
  }
  .testimonial-item.style-2 .testimonial-desc {
    font-style: italic;
    padding: 15px 15px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px) {
  .testimonial-item {
    padding: 30px 15px;
  }
  .testimonial-item .testimonial-author {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .testimonial-item .testimonial-author .author-images {
    width: 55px;
    height: 55px;
    position: relative;
  }
  .testimonial-item .testimonial-author .author-images::before {
    right: -5px;
  }
  .testimonial-item .testimonial-rating {
    top: 70px;
    padding: 6px 10px;
  }
  .testimonial-item .testimonial-rating .star-ratings {
    font-size: 16px;
  }
}

.star-ratings {
  unicode-bidi: bidi-override;
  color: var(--fa-color-theme-primary);
  font-size: 20px;
  letter-spacing: 5px;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--fa-color-theme-primary);
}
.star-ratings .fill-ratings {
  color: var(--fa-color-theme-primary);
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.star-ratings .fill-ratings span {
  display: inline-block;
}
.star-ratings .empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
  color: var(--fa-color-theme-primary);
  -webkit-text-stroke: 1px var(--fa-color-theme-primary);
}

/* !END: Theme Testimonial CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.fa-blog-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
}
.fa-blog-section .fa-heading-area .heading-title {
  color: var(--fa-color-common-white);
}
.fa-blog-section .bg-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
}
.fa-blog-section.v-2 .fa-heading-area .heading-title {
  color: var(--fa-color-heading-primary);
}
.fa-blog-section.v-3 .fa-heading-area .heading-title {
  color: var(--fa-color-heading-primary);
}
.fa-blog-section.v-4 {
  padding-top: 0;
}
.fa-blog-section.v-4 .fa-heading-area .heading-title {
  color: var(--fa-color-heading-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-blog-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-blog-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.blog-item {
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
}
.blog-item .blog-images a {
  display: inline-block;
}
.blog-item .blog-images a img {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 85%);
}
.blog-item .blog-content {
  position: relative;
  background: var(--fa-color-common-white);
  max-width: 90%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 30px;
  margin-top: -100px;
}
.blog-item .blog-content .blog-date {
  position: absolute;
  left: 30px;
  top: -50px;
}
.blog-item .blog-content .blog-title {
  margin-bottom: 25px;
  line-height: 1.3;
}
.blog-item .blog-content .blog-title a:hover {
  color: var(--fa-color-theme-primary);
}
.blog-item .blog-content .blog-link {
  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: 45px;
  height: 45px;
  color: var(--fa-color-common-white);
  background: var(--fa-color-theme-bg);
}
.blog-item .blog-content .blog-link i {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.blog-item .blog-content .blog-link:hover {
  background-color: var(--fa-color-theme-primary);
}
.blog-item .blog-content .blog-link:hover i {
  -webkit-transform: rotateY(-360deg);
  transform: rotateY(-360deg);
}
.blog-item .blog-content .blog-meta {
  margin-bottom: 15px;
}
.blog-item.style-2 .blog-images a {
  width: 100%;
}
.blog-item.style-2 .blog-images a img {
  height: 210px;
  -o-object-fit: cover;
  object-fit: cover;
  clip-path: initial;
}
.blog-item.style-2 .blog-content {
  padding: 0;
  background: transparent;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
}
.blog-item.style-2 .blog-content .blog-text {
  background: var(--fa-color-common-white);
  padding: 35px 30px 25px;
  clip-path: polygon(0 0, 0 0, 100% 14%, 100% 100%, 0 100%, 0% 50%);
}
.blog-item.style-2 .blog-content .blog-date {
  position: absolute;
  left: 30px;
  top: -35px;
  z-index: 2;
}
.blog-item.style-3 .blog-images a img {
  width: 100%;
  height: auto;
  clip-path: initial;
}
.blog-item.style-3 .blog-content {
  margin-right: 0;
  padding: 0;
}
.blog-item.style-3 .blog-content .blog-timer {
  display: block;
  font-size: 14px;
  font-weight: var(--fa-fw-medium);
  color: var(--fa-color-common-white);
  position: relative;
  max-width: 160px;
  -webkit-mask-image: url(../images/shapes/h1-team-shapes.svg);
  mask-image: url(../images/shapes/h1-team-shapes.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--fa-color-theme-primary);
  padding: 12px 45px;
  position: absolute;
  top: -30px;
  left: 40px;
}
.blog-item.style-3 .blog-content .blog-text {
  padding: 30px 0px 0px 40px;
}
.blog-item.style-3 .blog-content .blog-text .sub-title {
  display: block;
  font-weight: var(--fa-fw-medium);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-item.style-3 .blog-content .blog-text .blog-title {
  margin-bottom: 20px;
}
.blog-item.style-3 .blog-content .blog-meta {
  background: var(--fa-color-grey-7);
  padding: 16px 40px;
  margin-bottom: 0;
  clip-path: polygon(0 0, 95% 0%, 100% 100%, 0% 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .blog-item.style-3 .blog-content .blog-text {
    padding: 30px 0px 0px 20px;
  }
  .blog-item.style-3 .blog-content .blog-meta {
    padding: 16px 15px;
  }
}
.blog-item:hover .blog-content .blog-date {
  -webkit-transform: rotateY(-360deg);
  transform: rotateY(-360deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .blog-item .blog-content {
    padding: 30px 15px;
  }
  .blog-item.style-2 .blog-content .blog-text {
    padding: 35px 15px 25px;
  }
}

.blog-date {
  display: inline-block;
  background: var(--fa-color-theme-primary);
  max-width: 60px;
  width: 100%;
  text-align: center;
  padding: 2px 6px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.blog-date .month {
  display: block;
  color: var(--fa-color-common-white);
  font-size: 24px;
  font-weight: var(--fa-fw-medium);
  margin-bottom: 8px;
  line-height: 1;
}
.blog-date .date {
  display: block;
  color: var(--fa-color-common-white);
  font-size: 24px;
  font-weight: var(--fa-fw-medium);
  line-height: 1;
}

.blog-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}
.blog-meta ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.blog-meta ul li i {
  color: var(--fa-color-theme-primary);
}
.blog-meta ul li a {
  font-size: 16px;
  font-weight: var(--fa-fw-medium);
  color: var(--fa-color-grey-5);
}
.blog-meta ul li a:hover {
  color: var(--fa-color-theme-primary);
}

.post-standard-wrapper .blog-item.style-2 .blog-images a img {
  height: auto;
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.fa-blog-details {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-blog-details {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-blog-details {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-main-sidebar {
    padding-top: 40px;
  }
}
.blog-inner-one {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-inner-one {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .blog-inner-one {
    padding-bottom: 80px;
  }
}

.post-details-wrapper .blog-images {
  margin-bottom: 30px;
}
.post-details-wrapper .title {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .post-details-wrapper .title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .post-details-wrapper .title {
    font-size: 25px;
  }
}
.post-details-wrapper p {
  margin-bottom: 30px;
}
.post-details-wrapper .images-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
  margin-bottom: 45px;
}
.post-details-wrapper .images-box img {
  max-width: 370px;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .post-details-wrapper .images-box img {
    max-width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-details-wrapper .images-box img {
    max-width: 356px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .post-details-wrapper .images-box img {
    max-width: 260px;
  }
}
@media (max-width: 575px) {
  .post-details-wrapper .images-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.post-details-wrapper .blog-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 35px;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.post-details-wrapper .blog-text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  color: var(--fa-color-heading-primary);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 16px;
}
.post-details-wrapper .blog-text ul li span {
  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;
  max-width: 22px;
  width: 100%;
  height: 22px;
  line-height: 1;
  font-size: 12px;
  color: var(--fa-color-common-white);
  background: var(--fa-color-theme-primary);
  border-radius: 50%;
}
@media (max-width: 575px) {
  .post-details-wrapper .blog-text ul {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

.fa-tags-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 15px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid var(--fa-color-border-3);
  border-bottom: 1px solid var(--fa-color-border-3);
  padding: 22px 0;
  margin-top: 40px;
}
.fa-tags-post .tagcloud {
  width: calc(100% - 195px);
}
.fa-tags-post .tagcloud a {
  background: var(--fa-color-theme-secondary);
}
.fa-tags-post .tagcloud a:hover {
  color: var(--fa-color-common-white);
}
.fa-tags-post .tagcloud span {
  color: var(--fa-color-common-black-2);
}
.fa-tags-post .post-share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 10px;
}
.fa-tags-post .post-share ul li {
  font-size: 16px;
  color: var(--fa-color-heading-primary);
  margin-bottom: 0;
}
.fa-tags-post .post-share ul li a {
  font-size: 17px;
  color: var(--fa-color-heading-primary);
}
.fa-tags-post .post-share ul li a:hover {
  color: var(--fa-color-theme-primary);
}
.fa-tags-post.no_socials {
  width: 100%;
}
@media (max-width: 575px) {
  .fa-tags-post {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .fa-tags-post .tagcloud {
    width: 100%;
  }
}

.fa-sidebar__widget {
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  background-color: var(--fa-color-theme-secondary);
  z-index: 3;
}
.fa-sidebar__widget .widget-title {
  color: var(--fa-color-heading-primary);
  position: relative;
  margin-bottom: 25px;
  line-height: 1;
  z-index: 1;
}
.fa-sidebar__widget.widget_search .search-box form {
  position: relative;
  width: 100%;
  border: 1px solid var(--fa-color-border-3);
  z-index: 1;
}
.fa-sidebar__widget.widget_search .search-box form input[type="search"] {
  font-size: 16px;
  background: var(--fa-color-common-white);
  width: 100%;
  border: none;
  padding: 19px 65px 19px 25px;
  line-height: 1;
}
.fa-sidebar__widget.widget_search
  .search-box
  form
  input[type="search"]::-webkit-input-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-sidebar__widget.widget_search
  .search-box
  form
  input[type="search"]::-moz-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-sidebar__widget.widget_search
  .search-box
  form
  input[type="search"]:-ms-input-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-sidebar__widget.widget_search
  .search-box
  form
  input[type="search"]::-ms-input-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-sidebar__widget.widget_search
  .search-box
  form
  input[type="search"]::placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-sidebar__widget.widget_search
  .search-box
  form
  input[type="search"]::-ms-input-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-sidebar__widget.widget_search .search-box form :focus {
  outline: none;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}
.fa-sidebar__widget.widget_search .search-box form button {
  font-size: 22px;
  color: var(--fa-color-heading-primary);
  width: 54px;
  height: 60px;
  position: absolute;
  border-left: 1px solid var(--fa-color-border-3);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.fa-sidebar__widget.fa_recent_posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fa-sidebar__widget.fa_recent_posts ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  margin-bottom: 20px;
}
.fa-sidebar__widget.fa_recent_posts ul li:last-child {
  margin-bottom: 0;
}
.fa-sidebar__widget.fa_recent_posts .post-thumb {
  position: relative;
  max-width: 100px;
  width: 100%;
  overflow: hidden;
}
.fa-sidebar__widget.fa_recent_posts .post-thumb a {
  display: inline-block;
  width: 100%;
}
.fa-sidebar__widget.fa_recent_posts .post-thumb a img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.fa-sidebar__widget.fa_recent_posts .post-thumb:hover a img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.fa-sidebar__widget.fa_recent_posts .post-content .post-title {
  margin-bottom: 10px;
}
.fa-sidebar__widget.fa_recent_posts .post-content .post-title a:hover {
  color: var(--fa-color-theme-primary);
}
.fa-sidebar__widget.fa_recent_posts .post-content .blog-meta ul li {
  font-size: 14px;
  color: var(--fa-color-common-black-2);
  gap: 6px;
}
.fa-sidebar__widget.widget_categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fa-sidebar__widget.widget_categories ul li {
  margin-bottom: 10px;
}
.fa-sidebar__widget.widget_categories ul li:last-child {
  margin-bottom: 0;
}
.fa-sidebar__widget.widget_categories ul li a {
  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;
  font-family: var(--fa-ff-heading);
  font-size: 17px;
  color: var(--fa-color-heading-primary);
  background: var(--fa-color-common-white);
  padding: 20px 20px 17px 25px;
}
.fa-sidebar__widget.widget_categories ul li a:hover {
  color: var(--fa-color-common-white);
  background-color: var(--fa-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-sidebar__widget {
    padding: 30px 15px;
  }
}

.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 12px;
}
.tagcloud a {
  position: relative;
  font-size: 14px;
  color: var(--fa-color-heading-primary);
  border-radius: 50px;
  background: var(--fa-color-common-white);
  padding: 6px 10px;
  line-height: 1;
  z-index: 1;
}
.tagcloud a:hover {
  color: var(--fa-color-common-white);
  background-color: var(--fa-color-theme-primary);
}

blockquote {
  position: relative;
  background: var(--fa-color-theme-secondary);
  border: 1px solid var(--fa-color-border-3);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 75px 30px 30px;
  z-index: 2;
}
blockquote::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 30px;
  width: 45px;
  height: 32px;
  background: url(../images/icons/quote.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
blockquote p {
  color: var(--fa-color-heading-primary);
  font-family: var(--fa-ff-heading);
  font-size: 28px;
  margin-bottom: 20px !important;
  font-style: italic;
  line-height: 1.2;
}
blockquote cite {
  font-size: 20px;
  color: var(--fa-color-heading-primary);
  font-style: normal;
  position: relative;
  padding-left: 65px;
  z-index: 1;
}
blockquote cite::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--fa-color-heading-primary);
}
@media (max-width: 575px) {
  blockquote {
    padding: 75px 15px 30px;
  }
  blockquote p {
    font-size: 22px;
  }
  blockquote cite {
    font-size: 18px;
  }
}

.fa-comments-wrap {
  padding-top: 45px;
  margin-bottom: 45px;
}
.fa-comments-wrap .comments-title .title {
  font-size: 30px;
  margin-bottom: 20px;
}

.fa-latest-comments ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-columns: initial;
  -moz-columns: initial;
  columns: initial;
}
.fa-latest-comments ul .fa-comment {
  margin-bottom: 20px;
}
.fa-latest-comments ul .fa-comment::before {
  display: none;
}
.fa-latest-comments ul .fa-comment:last-child {
  margin-bottom: 0;
}
.fa-latest-comments ul .fa-comment .comment-content {
  padding: 30px;
  border: 1px solid var(--fa-color-border-3);
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-latest-comments ul .fa-comment .comment-content {
    padding: 30px 15px;
  }
}
.fa-latest-comments ul .fa-comment .comment-content .commment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.fa-latest-comments
  ul
  .fa-comment
  .comment-content
  .commment-author
  .comment-avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  margin-bottom: 10px;
}
.fa-latest-comments
  ul
  .fa-comment
  .comment-content
  .commment-author
  .comment-avatar
  .avatar-images {
  max-width: 63px;
  width: 100%;
  height: 63px;
}
.fa-latest-comments
  ul
  .fa-comment
  .comment-content
  .commment-author
  .comment-avatar
  .avatar-images
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.fa-latest-comments
  ul
  .fa-comment
  .comment-content
  .commment-author
  .comment-avatar
  .avatar-name
  .title {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .fa-latest-comments
    ul
    .fa-comment
    .comment-content
    .commment-author
    .comment-avatar
    .avatar-name
    .title {
    font-size: 18px;
  }
}
.fa-latest-comments
  ul
  .fa-comment
  .comment-content
  .commment-author
  .comment-avatar
  .avatar-name
  .title
  a:hover {
  color: var(--fa-color-theme-primary);
}
.fa-latest-comments
  ul
  .fa-comment
  .comment-content
  .commment-author
  .comment-avatar
  .avatar-name
  .date {
  display: block;
  color: var(--fa-color-grey-2);
  font-size: 14px;
}
.fa-latest-comments
  ul
  .fa-comment
  .comment-content
  .commment-author
  .reply-button
  .reply-btn {
  font-size: 18px;
  color: var(--fa-color-heading-primary);
  font-family: var(--fa-ff-heading);
}
.fa-latest-comments
  ul
  .fa-comment
  .comment-content
  .commment-author
  .reply-button
  .reply-btn:hover {
  color: var(--fa-color-theme-primary);
}
.fa-latest-comments ul .fa-comment .desc {
  color: var(--fa-color-common-black-2);
  padding-left: 75px;
}
.fa-latest-comments ul .fa-comment .desc p:last-child {
  margin-bottom: 0;
}
.fa-latest-comments ul .fa-comment > .children {
  padding-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-latest-comments ul .fa-comment > .children {
    padding-left: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fa-latest-comments ul .fa-comment > .children {
    padding-left: 25px;
  }
}
@media (max-width: 575px) {
  .fa-latest-comments ul .fa-comment > .children {
    padding-left: 15px;
  }
}
.fa-latest-comments
  ul
  .fa-comment:last-child
  .comment-content
  .comments-header {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.fa-comment-respond .comment-header {
  margin-bottom: 20px;
}
.fa-comment-respond .comment-header .title {
  color: var(--fa-color-heading-primary);
  margin-bottom: 20px;
  font-size: 30px;
}
.fa-comment-respond .form-input {
  margin-bottom: 20px;
}
.fa-comment-respond
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ),
.fa-comment-respond .form-input textarea,
.fa-comment-respond .form-input input[type="email"],
.fa-comment-respond .form-input input[type="text"] {
  width: 100%;
  padding: 17px 20px;
  font-size: 15px;
  background: transparent;
  border: 1px solid var(--fa-color-border-3);
}
.fa-comment-respond
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-webkit-input-placeholder,
.fa-comment-respond .form-input textarea::-webkit-input-placeholder,
.fa-comment-respond .form-input input[type="email"]::-webkit-input-placeholder,
.fa-comment-respond .form-input input[type="text"]::-webkit-input-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-comment-respond
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-moz-placeholder,
.fa-comment-respond .form-input textarea::-moz-placeholder,
.fa-comment-respond .form-input input[type="email"]::-moz-placeholder,
.fa-comment-respond .form-input input[type="text"]::-moz-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-comment-respond
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  ):-ms-input-placeholder,
.fa-comment-respond .form-input textarea:-ms-input-placeholder,
.fa-comment-respond .form-input input[type="email"]:-ms-input-placeholder,
.fa-comment-respond .form-input input[type="text"]:-ms-input-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-comment-respond
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.fa-comment-respond .form-input textarea::-ms-input-placeholder,
.fa-comment-respond .form-input input[type="email"]::-ms-input-placeholder,
.fa-comment-respond .form-input input[type="text"]::-ms-input-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-comment-respond
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::placeholder,
.fa-comment-respond .form-input textarea::placeholder,
.fa-comment-respond .form-input input[type="email"]::placeholder,
.fa-comment-respond .form-input input[type="text"]::placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-comment-respond
  .form-input
  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(
    [type="search"]
  )::-ms-input-placeholder,
.fa-comment-respond .form-input textarea::-ms-input-placeholder,
.fa-comment-respond .form-input input[type="email"]::-ms-input-placeholder,
.fa-comment-respond .form-input input[type="text"]::-ms-input-placeholder {
  color: var(--fa-color-common-black-2);
}
.fa-comment-respond .form-input textarea {
  min-height: 180px;
  resize: none;
}
.fa-comment-respond .blog-details-button {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .fa-comment-respond .blog-details-button {
    margin-top: 0;
  }
  .fa-comment-respond .blog-details-button button {
    width: 100%;
  }
}

.page-pagination {
  margin-top: 60px;
}
.page-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.page-pagination ul li .page-numbers {
  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: 45px;
  height: 45px;
  line-height: 1;
  font-size: 18px;
  color: var(--fa-color-heading-primary);
  font-family: var(--fa-ff-heading);
  background: transparent;
  border: 1px solid var(--fa-color-heading-primary);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.page-pagination ul li .page-numbers i {
  font-size: 12px;
  color: var(--fa-color-heading-primary);
}
.page-pagination ul li .page-numbers:hover,
.page-pagination ul li .page-numbers.current {
  background-color: var(--fa-color-heading-primary);
  border-color: var(--fa-color-heading-primary);
  color: var(--fa-color-common-white);
}
.page-pagination ul li .page-numbers:hover i,
.page-pagination ul li .page-numbers.current i {
  color: var(--fa-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .page-pagination {
    margin-top: 40px;
  }
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Cta CSS
----------------------------------------*/
.fa-cta-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fa-cta-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-cta-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.cta-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cta-main-wrapper .cta-text {
  max-width: 640px;
  width: 100%;
}
.cta-main-wrapper .cta-text .title {
  color: var(--fa-color-common-black);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-main-wrapper {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cta-main-wrapper {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .cta-main-wrapper .cta-button {
    width: 100%;
  }
  .cta-main-wrapper .cta-button .fa-primary-btn {
    width: 100%;
  }
}

/* !END: Theme Cta CSS */
/**----------------------------------------
START: Theme Table CSS
----------------------------------------*/
.fa-table-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--fa-color-theme-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fa-table-section.v-2 {
  background-color: var(--fa-color-theme-secondary);
  padding-top: 338px;
  margin-top: -338px;
}
.fa-table-section.v-2 .fa-heading-area .heading-title {
  color: var(--fa-color-heading-primary);
}
.fa-table-section .fa-heading-area .heading-title {
  color: var(--fa-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-table-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .fa-table-section.v-2 {
    padding-top: 280px;
    margin-top: -280px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-table-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .fa-table-section.v-2 {
    padding-top: 80px;
    margin-top: 0;
  }
}

.table-menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}
.table-menu .table-list .table-title {
  font-size: 45px;
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-bold);
  color: var(--fa-color-common-white);
  background-color: var(--fa-color-theme-primary);
  text-transform: uppercase;
  padding: 8px 116px;
  border-radius: 0;
  line-height: 1;
}
.table-menu .table-list .table-title.active {
  background-color: var(--fa-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .table-menu .table-list .table-title {
    padding: 8px 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .table-menu .table-list .table-title {
    font-size: 40px;
    padding: 8px 58px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .table-menu .table-list .table-title {
    font-size: 30px;
    padding: 10px 40px;
  }
}
@media (max-width: 575px) {
  .table-menu .table-list .table-title {
    font-size: 24px;
    padding: 10px 14px;
  }
}

.table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}
.table-item:last-child {
  margin-bottom: 0;
}
.table-item .table-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
  row-gap: 25px;
  width: calc(100% - 180px);
}
.table-item .table-content .table-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  max-width: 280px;
  width: 100%;
}
.table-item .table-content .table-infos .table-images {
  width: 100px;
  height: 100px;
}
.table-item .table-content .table-infos .table-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.table-item .table-content .table-infos .table-timer .time {
  display: block;
  font-size: 24px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 4px;
  line-height: 1;
}
.table-item .table-content .table-infos .table-timer .date {
  display: block;
  color: var(--fa-color-grey-3);
}
.table-item .table-content .table-text {
  max-width: 430px;
  width: 100%;
}
.table-item .table-content .table-text .table-title {
  color: var(--fa-color-common-white);
  margin-bottom: 15px;
}
.table-item .table-content .table-text .table-desc {
  color: var(--fa-color-grey-3);
  margin-bottom: 0;
}
.table-item .table-content .table-text .table-desc .link {
  color: var(--fa-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .table-item .table-content {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .table-item .table-content .table-infos {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    max-width: 260px;
  }
  .table-item .table-content .table-text {
    max-width: 270px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .table-item .table-content .table-infos {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .table-item .table-content .table-text .table-title {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .table-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .table-item .table-content {
    row-gap: 20px;
    width: 100%;
  }
  .table-item .table-content .table-infos {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .table-item .table-content .table-text .table-title {
    margin-bottom: 10px;
  }
  .table-item .table-button {
    text-align: center;
    width: 100%;
  }
  .table-item .table-button .fa-primary-btn {
    width: 100%;
  }
}

.table-style-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--fa-color-common-white);
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.table-style-2:last-child {
  margin-bottom: 0;
}
.table-style-2 .table-infos {
  position: relative;
  max-width: 390px;
  width: 100%;
}
.table-style-2 .table-infos img {
  width: 100%;
}
.table-style-2 .table-infos .table-timer {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.table-style-2 .table-infos .table-timer .time {
  display: block;
  font-size: 24px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
}
.table-style-2 .table-infos .table-timer .date {
  color: var(--fa-color-common-white);
}
.table-style-2 .table-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 40px;
}
.table-style-2 .table-content .table-text {
  width: calc(100% - 265px);
}
.table-style-2 .table-content .table-text .table-title {
  font-weight: var(--fa-fw-medium);
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.table-style-2 .table-content .table-text .table-desc {
  margin-bottom: 20px;
}
.table-style-2 .table-content .table-text .table-desc a {
  color: var(--fa-color-theme-primary);
}
.table-style-2 .table-content .table-text .table-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.table-style-2 .table-content .table-text .table-author .author-images {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  position: relative;
}
.table-style-2 .table-content .table-text .table-author .author-images::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: -10px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(15.89%, var(--fa-color-theme-primary)),
    color-stop(84.34%, var(--fa-color-theme-bg)),
    to(var(--fa-color-theme-bg))
  );
  background: linear-gradient(
    180deg,
    var(--fa-color-theme-primary) 15.89%,
    var(--fa-color-theme-bg) 84.34%,
    var(--fa-color-theme-bg) 100%
  );
  border-radius: 50%;
}
.table-style-2 .table-content .table-text .table-author .author-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.table-style-2 .table-content .table-text .table-author .author-header {
  padding-left: 10px;
}
.table-style-2
  .table-content
  .table-text
  .table-author
  .author-header
  .author-title {
  font-weight: var(--fa-fw-medium);
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.table-style-2
  .table-content
  .table-text
  .table-author
  .author-header
  .description {
  display: block;
  color: var(--fa-color-theme-primary);
  font-family: var(--fa-ff-heading);
}
.table-style-2:hover {
  background-color: var(--fa-color-theme-bg);
}
.table-style-2:hover .table-content .table-text .table-title {
  color: var(--fa-color-common-white);
}
.table-style-2:hover
  .table-content
  .table-text
  .table-author
  .author-header
  .author-title {
  color: var(--fa-color-common-white);
}
.table-style-2:hover .table-content .table-button .fa-transparent-btn::before {
  background: var(--fa-color-grey-13);
}
.table-style-2:hover .table-content .table-button .fa-transparent-btn.btn-1 {
  color: var(--fa-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .table-style-2 .table-content {
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .table-style-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table-style-2 .table-infos {
    max-width: 100%;
  }
  .table-style-2 .table-content {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .table-style-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table-style-2 .table-infos {
    max-width: 100%;
  }
  .table-style-2 .table-content {
    padding: 30px 20px;
  }
  .table-style-2 .table-content .table-text {
    width: calc(100% - 190px);
  }
}
@media (max-width: 575px) {
  .table-style-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table-style-2 .table-infos {
    max-width: 100%;
  }
  .table-style-2 .table-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 15px;
  }
  .table-style-2 .table-content .table-text {
    width: 100%;
  }
  .table-style-2 .table-content .table-button .fa-transparent-btn {
    width: 100%;
  }
}

/* !END: Theme Table CSS */
/**----------------------------------------
START: Theme Event CSS
----------------------------------------*/
.fa-event-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
.fa-event-section .shapes-one {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.fa-event-section .shapes-two {
  position: absolute;
  bottom: 25%;
  left: -20px;
  z-index: -1;
}
.fa-event-section .shapes-three {
  position: absolute;
  right: -5%;
  top: -40px;
  z-index: -1;
}
.fa-event-section .shapes-four {
  position: absolute;
  right: -5%;
  top: -175px;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .fa-event-section .shapes-one {
    max-width: 250px;
    width: 100%;
  }
  .fa-event-section .shapes-two {
    max-width: 100px;
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fa-event-section .shapes-one {
    max-width: 250px;
    width: 100%;
  }
  .fa-event-section .shapes-two {
    max-width: 100px;
    width: 100%;
    bottom: 20%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-event-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .fa-event-section .shapes-one {
    max-width: 250px;
    width: 100%;
  }
  .fa-event-section .shapes-two {
    max-width: 100px;
    width: 100%;
    bottom: 20%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-event-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .fa-event-section .shapes-one {
    max-width: 250px;
    width: 100%;
  }
  .fa-event-section .shapes-two {
    max-width: 100px;
    width: 100%;
    bottom: 20%;
  }
  .fa-event-section .shapes-three {
    max-width: 170px;
    right: -7%;
    top: -40px;
  }
  .fa-event-section .shapes-four {
    max-width: 250px;
    right: -6%;
    top: -95px;
  }
}
@media (max-width: 575px) {
  .fa-event-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .fa-event-section .shapes-one {
    max-width: 250px;
    width: 100%;
  }
  .fa-event-section .shapes-two {
    max-width: 100px;
    width: 100%;
    bottom: 20%;
  }
  .fa-event-section .shapes-three {
    max-width: 100px;
    right: -7%;
    top: -40px;
  }
  .fa-event-section .shapes-four {
    max-width: 160px;
    right: -6%;
    top: -95px;
  }
}

.event-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  row-gap: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .event-main-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.event-left-content {
  max-width: 420px;
  width: 100%;
}
.event-left-content .fa-heading-area {
  max-width: 375px;
  width: 100%;
  margin-bottom: 25px;
}
.event-left-content .fa-heading-area .heading-title {
  line-height: 1.1;
}
.event-left-content .event-text .desc {
  margin-bottom: 15px;
}
.event-left-content .event-text .desc:last-child {
  margin-bottom: 0;
}
.event-left-content .event-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-left-content {
    max-width: 335px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .event-left-content {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .event-left-content {
    max-width: 100%;
  }
  .event-left-content .event-button .fa-primary-btn {
    width: 100%;
  }
}

.event-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 30px;
}

.event-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 25px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  background: var(--fa-color-common-white);
  padding: 40px 30px 30px 0px;
  overflow: hidden;
  position: relative;
}
.event-item::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 0;
  right: 0;
  top: 0;
  background: var(--fa-color-theme-primary);
}
.event-item .event-images {
  max-width: 195px;
  width: 100%;
  position: relative;
}
.event-item .event-images img {
  width: 100%;
  border-radius: 100px 100px 0px 100px;
}
.event-item .event-images .event-date {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 55px;
  max-width: 195px;
  width: 100%;
  font-size: 14px;
  color: var(--fa-color-common-white);
  font-weight: var(--fa-fw-medium);
  -webkit-mask-image: url(../images/shapes/event-shapes.svg);
  mask-image: url(../images/shapes/event-shapes.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: var(--fa-color-theme-bg);
  text-align: center;
  line-height: 1.4;
}
.event-item .event-content .sub-title {
  display: inline-block;
  font-size: 14px;
  color: var(--fa-color-grey-5);
  font-weight: var(--fa-fw-medium);
  background: var(--fa-color-theme-secondary);
  padding: 13px 25px;
  margin-bottom: 20px;
  line-height: 1;
}
.event-item .event-content .event-infos {
  margin-bottom: 10px;
}
.event-item .event-content .event-infos ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  row-gap: 5px;
}
.event-item .event-content .event-infos ul li {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 6px;
  -moz-column-gap: 6px;
  column-gap: 6px;
}
.event-item .event-content .event-infos ul li i {
  color: var(--fa-color-theme-primary);
}
.event-item .event-content .event-title {
  margin-bottom: 15px;
}
.event-item .event-content .desc {
  margin-bottom: 0;
}
.event-item:hover::before {
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .event-item {
    padding: 30px 30px 30px 0px;
  }
}
@media (max-width: 575px) {
  .event-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 25px 15px;
  }
  .event-item .event-images {
    max-width: 100%;
  }
  .event-item .event-content .event-infos ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

/* !END: Theme Event CSS */
/**----------------------------------------
START: Theme Team CSS
----------------------------------------*/
.fa-team-section {
  padding-top: 120px;
  padding-bottom: 90px;
}
.fa-team-section.v-2 {
  padding-top: 0;
}
.fa-team-section.v-3 {
  padding-top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-team-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-team-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .fa-team-section.v-3 {
    padding-top: 80px;
  }
  .fa-team-section.v-4 {
    padding-top: 0;
  }
}

.speakers-details-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .speakers-details-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .speakers-details-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.team-item {
  position: relative;
  border: 2px solid var(--fa-color-border-3);
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.team-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--fa-color-theme-primary);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  z-index: -1;
}
.team-item .team-images img {
  width: 100%;
}
.team-item .team-content {
  padding: 10px 30px 40px;
}
.team-item .team-content .subtitle {
  display: block;
  color: var(--fa-color-common-white);
  position: relative;
  max-width: 160px;
  -webkit-mask-image: url(../images/shapes/h1-team-shapes.svg);
  mask-image: url(../images/shapes/h1-team-shapes.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--fa-color-theme-bg);
  padding: 12px 30px;
  margin-bottom: 12px;
}
.team-item .team-content .team-title {
  position: relative;
  margin-bottom: 0;
}
.team-item .team-share {
  position: absolute;
  bottom: 0;
  right: -50px;
  border: 1px solid var(--fa-color-border-3);
  border-radius: 50px;
  background: var(--fa-color-common-white);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 12px 0;
}
.team-item .team-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.team-item .team-share ul li a {
  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: 44px;
  height: 44px;
}
.team-item .team-share ul li a:hover {
  color: var(--fa-color-theme-primary);
}
.team-item:hover::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.team-item:hover .team-content .team-title a {
  color: var(--fa-color-common-white);
}
.team-item:hover .team-share {
  right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .team-item .team-content {
    padding: 10px 15px 20px;
  }
}

.team-style-2 {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.team-style-2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--fa-color-theme-primary);
  border-radius: 130px 130px 85px 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.team-style-2 .team-images {
  position: relative;
  z-index: 2;
}
.team-style-2 .team-images img {
  width: 100%;
  border-radius: 100px 100px 0px 100px;
}
.team-style-2 .team-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 90%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -35px;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 2;
}
.team-style-2 .team-content .team-text .sub-title {
  display: block;
  position: relative;
  font-weight: var(--fa-fw-medium);
  color: var(--fa-color-common-white);
  max-width: 170px;
  -webkit-mask-image: url(../images/shapes/h1-team-shapes.svg);
  mask-image: url(../images/shapes/h1-team-shapes.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--fa-color-theme-bg);
  padding: 12px 30px;
  margin-bottom: 12px;
}
.team-style-2 .team-content .team-text .team-title {
  font-weight: var(--fa-fw-medium);
  margin-bottom: 8px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.team-style-2 .team-content .team-text .star-ratings {
  color: var(--fa-color-heading-primary);
  -webkit-text-stroke: 1px var(--fa-color-heading-primary);
}
.team-style-2 .team-content .team-text .star-ratings .fill-ratings {
  color: var(--fa-color-heading-primary);
}
.team-style-2 .team-content .team-text .star-ratings .empty-ratings {
  color: var(--fa-color-heading-primary);
  -webkit-text-stroke: 1px var(--fa-color-heading-primary);
}
.team-style-2:hover::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.team-style-2:hover .team-content .team-text .team-title a {
  color: var(--fa-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .team-style-2 .team-content .team-text .sub-title {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .team-style-2::before {
    border-radius: 160px 160px 85px 0;
  }
}

.team-share .team-social {
  display: inline-block;
  z-index: 2;
}
.team-share .team-social li {
  position: relative;
  list-style-type: none;
  display: inline-block;
}
.team-share .team-social li i {
  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;
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--fa-color-theme-bg);
  color: var(--fa-color-common-white);
  font-size: 16px;
  overflow: hidden;
  border-radius: 22px 22px 22px 0;
}
.team-share .team-social li .team-social-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: var(--fa-color-common-white);
  border-radius: 45px;
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 10px;
  border: 2px solid var(--fa-color-border-9);
  z-index: 4;
}
.team-share .team-social li .team-social-icon li {
  position: relative;
  overflow: hidden;
  background: var(--fa-color-common-white);
}
.team-share .team-social li .team-social-icon li a {
  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: 50px;
  height: 0px;
  font-size: 16px;
  background: var(--fa-color-common-white);
  color: var(--fa-color-common-white);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.team-share .team-social li .team-social-icon li a i {
  display: inline-block;
  text-align: center;
  color: var(--fa-color-heading-primary);
  background: var(--fa-color-common-white);
  font-size: 16px;
}
.team-share .team-social li .team-social-icon li a:hover {
  color: var(--fa-color-theme-primary);
}
.team-share .team-social li .team-social-icon li a:hover i {
  color: var(--fa-color-theme-primary);
}
.team-share .team-social li:hover i {
  opacity: 0;
  visibility: hidden;
}
.team-share .team-social li:hover .team-social-icon {
  opacity: 1;
  visibility: visible;
  bottom: 0;
  z-index: 5;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.team-share .team-social li:hover .team-social-icon li a {
  color: var(--fa-color-theme-primary);
}
.team-share .team-social li:hover .team-social-icon li a i {
  opacity: 1;
  visibility: visible;
}

.speakers-details-images img {
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 575px) {
  .speakers-details-images img {
    height: 285px;
  }
}

.speakers-details-item .speakers-details-author {
  margin-bottom: 20px;
}
.speakers-details-item .speakers-details-author .author-name {
  margin-bottom: 6px;
}
.speakers-details-item .speakers-details-author .description {
  display: block;
  color: var(--fa-color-theme-primary);
}
.speakers-details-item .speakers-details-desc p {
  margin-bottom: 15px;
}
.speakers-details-item .speakers-details-desc p:last-child {
  margin-bottom: 0;
}
.speakers-details-item .topbar-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 15px;
  margin-top: 35px;
}
.speakers-details-item .topbar-infos .infos-item {
  font-family: var(--fa-ff-heading);
  font-size: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .speakers-details-item {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .speakers-details-item .topbar-infos .infos-item {
    font-size: 18px;
  }
}

/* !END: Theme Team CSS */
/**----------------------------------------
START: Theme Attend CSS
----------------------------------------*/
.fa-attend-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 200px;
  padding-top: 165px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-attend-section {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-attend-section {
    padding-top: 80px;
    padding-bottom: 82px;
  }
}
@media (max-width: 575px) {
  .fa-attend-section {
    padding-top: 80px;
    padding-bottom: 77px;
  }
}

.attend-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  row-gap: 40px;
  position: relative;
}
.attend-main-wrapper .attend-content {
  max-width: 725px;
  width: 100%;
}
.attend-main-wrapper .attend-content .fa-heading-area {
  margin-bottom: 20px;
}
.attend-main-wrapper .attend-content .fa-heading-area .heading-title {
  color: var(--fa-color-common-white);
}
.attend-main-wrapper .attend-content .subtitle {
  display: block;
  max-width: 575px;
  width: 100%;
  font-size: 24px;
  color: var(--fa-color-theme-primary);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 15px;
  line-height: 1.3;
}
.attend-main-wrapper .attend-content .attend-desc {
  max-width: 595px;
  width: 100%;
  margin-bottom: 25px;
  line-height: 1.7;
}
.attend-main-wrapper .attend-content .attend-counter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
.attend-main-wrapper .counter-video-group {
  max-width: 40%;
  width: 100%;
  position: absolute;
  bottom: -150px;
  right: 0;
  overflow: hidden;
}
.attend-main-wrapper .counter-video-group .popup-videos-button {
  position: absolute;
  bottom: 28%;
  right: 60%;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .attend-main-wrapper .counter-video-group {
    max-width: 38%;
    bottom: -155px;
  }
  .attend-main-wrapper .counter-video-group .popup-videos-button {
    width: 70px;
    height: 70px;
  }
  .attend-main-wrapper .counter-video-group .popup-videos-button::before {
    width: 95px;
    height: 95px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .attend-main-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .attend-main-wrapper .counter-video-group {
    max-width: 100%;
    position: initial;
    text-align: center;
  }
  .attend-main-wrapper .counter-video-group .popup-videos-button {
    bottom: 17%;
    right: 57%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .attend-main-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .attend-main-wrapper .counter-video-group {
    max-width: 100%;
    position: initial;
    text-align: center;
  }
  .attend-main-wrapper .counter-video-group .popup-videos-button {
    bottom: 17%;
    right: 57%;
  }
}
@media (max-width: 575px) {
  .attend-main-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .attend-main-wrapper .attend-content .subtitle {
    font-size: 22px;
  }
  .attend-main-wrapper .attend-content .attend-desc {
    margin-bottom: 20px;
  }
  .attend-main-wrapper .attend-content .attend-counter-box {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .attend-main-wrapper .counter-video-group {
    max-width: 100%;
    position: initial;
    text-align: center;
  }
  .attend-main-wrapper .counter-video-group .popup-videos-button {
    width: 65px;
    height: 65px;
    bottom: 14%;
    right: 60%;
  }
  .attend-main-wrapper .counter-video-group .popup-videos-button::before {
    width: 85px;
    height: 85px;
  }
}

.counter-item {
  text-align: center;
}
.counter-item .number {
  font-size: 45px;
  color: var(--fa-color-theme-primary);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-bold);
  line-height: 1;
}
.counter-item .number span {
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-bold);
}
.counter-item .sub-title {
  font-size: 24px;
  color: var(--fa-color-common-white);
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-medium);
}
@media (max-width: 575px) {
  .counter-item .number {
    font-size: 35px;
  }
  .counter-item .sub-title {
    font-size: 22px;
  }
}

@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
/* !END: Theme Attend CSS */
/**----------------------------------------
START: Theme Price CSS
----------------------------------------*/
.fa-price-section {
  padding-top: 120px;
  padding-bottom: 90px;
}
.fa-price-section.v-2 {
  padding-top: 0;
}
.fa-price-section.v-2 .price-box {
  margin-bottom: 30px;
}
.fa-price-section.v-2 .price-box .price-item {
  margin-bottom: 0;
}
.fa-price-section.v-3 {
  padding-bottom: 0;
}
.fa-price-section.v-3 .price-box {
  margin-bottom: 30px;
}
.fa-price-section.v-3 .price-box .price-item {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-price-section {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .fa-price-section.v-3 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-price-section {
    padding-top: 0px;
    padding-bottom: 50px;
  }
  .fa-price-section.v-3 {
    padding-top: 80px;
  }
}

.price-item {
  padding: 35px 60px 40px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  margin-bottom: 30px;
}
.price-item .price-header {
  text-align: center;
  margin-bottom: 25px;
}
.price-item .price-header .heading-title {
  position: relative;
  margin-bottom: 20px;
}
.price-item .price-header .heading-title .price-title {
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}
.price-item .price-header .price-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.price-item .price-header .price-infos .percent {
  font-size: 42px;
  font-family: var(--fa-ff-heading);
  font-weight: var(--fa-fw-bold);
  color: var(--fa-color-theme-primary);
  line-height: 1;
}
.price-item .price-header .price-infos .date {
  font-size: 16px;
  color: var(--fa-color-grey-3);
  font-weight: var(--fa-fw-medium);
}
.price-item .price-list ul li {
  position: relative;
  font-size: 16px;
  color: var(--fa-color-grey-5);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 10px;
}
.price-item .price-list ul li:last-child {
  margin-bottom: 0;
}
.price-item .price-list ul li::before {
  position: absolute;
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--fa-color-grey-5);
}
.price-item .price-list ul li.active::before {
  content: "\f00c";
  color: var(--fa-color-theme-primary);
}
.price-item .price-button {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .price-item {
    padding: 30px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .price-item {
    padding: 30px 15px;
  }
  .price-item .price-header .price-infos .percent {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .price-item {
    padding: 30px 15px;
  }
  .price-item .price-header {
    margin-bottom: 20px;
  }
  .price-item .price-header .heading-title {
    margin-bottom: 15px;
  }
  .price-item .price-header .price-infos .percent {
    font-size: 30px;
  }
  .price-item .price-button .fa-primary-btn {
    width: 100%;
  }
}

/* !END: Theme Price CSS */
/**----------------------------------------
START: Theme Gallery CSS
----------------------------------------*/
.fa-gallery-section {
  padding-bottom: 90px;
}
.fa-gallery-section .container {
  max-width: 1710px;
}
.fa-gallery-section.v-2 {
  padding-top: 120px;
  position: relative;
}
.fa-gallery-section.v-2 .fa-heading-area {
  position: relative;
  z-index: 1;
}
.fa-gallery-section.v-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 68%;
  background-image: url(../images/bg/h3-gallery-shapes.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fa-gallery-section.v-2 .container {
  max-width: 1310px;
}
.fa-gallery-section.v-2 .fa-heading-area .heading-title {
  color: var(--fa-color-common-white);
}
.fa-gallery-section.v-2 .gallery-main-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-gallery-section {
    padding-bottom: 70px;
  }
  .fa-gallery-section.v-2 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .fa-gallery-section {
    padding-bottom: 50px;
  }
  .fa-gallery-section.v-2 {
    padding-top: 80px;
  }
  .fa-gallery-section.v-2::before {
    height: 100%;
  }
  .fa-gallery-section.v-2 .gallery-main-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .fa-gallery-section {
    padding-bottom: 50px;
  }
  .fa-gallery-section.v-2 {
    padding-top: 80px;
  }
  .fa-gallery-section.v-2::before {
    height: 100%;
  }
  .fa-gallery-section.v-2 .gallery-main-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.gallery-item::before {
  position: absolute;
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(15.89%, rgba(0, 86, 255, 0)),
    color-stop(84.34%, rgba(0, 86, 255, 0.5)),
    to(rgba(0, 86, 255, 0.6))
  );
  background: linear-gradient(
    180deg,
    rgba(0, 86, 255, 0) 15.89%,
    rgba(0, 86, 255, 0.5) 84.34%,
    rgba(0, 86, 255, 0.6) 100%
  );
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.gallery-item .gallery-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.gallery-item .gallery-content .gallery-icons {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  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: 60px;
  height: 60px;
  font-size: 22px;
  color: var(--fa-color-theme-primary);
  background: var(--fa-color-common-white);
  border-radius: 50%;
  margin-bottom: 30px;
  overflow: hidden;
}
.gallery-item .gallery-content .gallery-icons:hover .icon-box .icon-first {
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
}
.gallery-item .gallery-content .gallery-icons:hover .icon-box .icon-second {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.gallery-item .gallery-content .gallery-text {
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.gallery-item .gallery-content .gallery-text .gallery-title {
  color: var(--fa-color-common-white);
  font-family: var(--fa-fw-medium);
  margin-bottom: 10px;
}
.gallery-item .gallery-content .gallery-text .sub-title {
  display: block;
  color: var(--fa-color-common-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.gallery-item:hover::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.gallery-item:hover .gallery-content .gallery-icons {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.gallery-item:hover .gallery-content .gallery-text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .gallery-item .gallery-content {
    bottom: 30px;
  }
}

.gallery-style-2 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.gallery-style-2 .gallery-images img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-style-2 .gallery-content {
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.gallery-style-2 .gallery-content::before {
  position: absolute;
  content: "";
  width: 102%;
  height: 100%;
  background: var(--fa-color-theme-primary);
  clip-path: polygon(95% 0, 100% 100%, 100% 100%, 0 98%, 0 0);
}
.gallery-style-2 .gallery-content .gallery-text {
  background: var(--fa-color-common-white);
  padding: 20px 20px 25px;
  clip-path: polygon(95% 0, 100% 100%, 100% 100%, 0 98%, 0 0);
}
.gallery-style-2 .gallery-content .gallery-text .sub-title {
  display: block;
  font-size: 16px;
  color: var(--fa-color-theme-primary);
  font-family: var(--fa-ff-heading);
  text-transform: uppercase;
}
.gallery-style-2 .gallery-content .gallery-text .gallery-title {
  font-weight: var(--fa-fw-medium);
  margin-bottom: 0;
}
.gallery-style-2 .gallery-content .gallery-text .gallery-title a:hover {
  color: var(--fa-color-theme-primary);
}
.gallery-style-2:hover .gallery-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media (max-width: 575px) {
  .gallery-style-2 .gallery-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.icon-box {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  rotate: -45deg;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.icon-box .icon-first,
.icon-box .icon-second {
  font-size: 22px;
  color: var(--fa-color-theme-primary);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  line-height: 1;
}
.icon-box .icon-second {
  position: absolute;
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}

/* !END: Theme Gallery CSS */
/**----------------------------------------
START: Theme Video CSS
----------------------------------------*/
.fa-video-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-color: var(--fa-color-theme-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.fa-video-section .video-one-shapes {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 950px;
  width: 100%;
  position: absolute;
  bottom: -34%;
  left: 14%;
  max-width: 950px;
  width: 100%;
}
.fa-video-section .video-two-shapes {
  position: absolute;
  bottom: -80px;
  right: 24%;
}
.fa-video-section.v-2 {
  overflow: visible;
  padding-top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-video-section {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-video-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.video-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 710px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.video-main-wrapper .video-title {
  color: var(--fa-color-common-white);
  margin-top: 50px;
  margin-bottom: 0;
}
.video-main-wrapper.v-2 {
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 135px 25px 105px;
  margin-top: -120px;
}
.video-main-wrapper.v-2 .video-text {
  max-width: 730px;
  width: 100%;
}
.video-main-wrapper.v-2 .video-text .fa-video-btn {
  border-radius: 0;
}
.video-main-wrapper.v-2 .video-text .fa-video-btn::before {
  border-radius: 0;
}
.video-main-wrapper.v-2 .video-text .video-title {
  margin-top: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-main-wrapper.v-2 {
    padding: 110px 25px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-main-wrapper.v-2 {
    padding: 90px 25px 80px;
  }
  .video-main-wrapper.v-2 .video-text .video-title {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .video-main-wrapper.v-2 {
    padding: 90px 25px 80px;
  }
  .video-main-wrapper.v-2 .video-text .video-title {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .video-main-wrapper .video-title {
    margin-top: 30px;
  }
  .video-main-wrapper .fa-video-btn {
    width: 65px;
    height: 65px;
  }
  .video-main-wrapper .fa-video-btn::before {
    width: 90px;
    height: 90px;
  }
}

.fa-video-btn {
  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: 75px;
  height: 75px;
  color: var(--fa-color-common-white);
  background: var(--fa-color-theme-primary);
  border-radius: 50%;
  position: relative;
}
.fa-video-btn::before {
  position: absolute;
  content: "";
  width: 118px;
  height: 118px;
  border: 1px solid var(--fa-color-common-white);
  border-radius: 50%;
  -webkit-animation: waves 2s 1s ease-out infinite;
  animation: waves 2s 1s ease-out infinite;
}
.fa-video-btn:hover {
  color: var(--fa-color-common-white);
}

/* !END: Theme Video CSS */
/**----------------------------------------
START: Theme feature CSS
----------------------------------------*/
.fa-feature-section {
  padding-top: 120px;
  padding-bottom: 90px;
}
.fa-feature-section .fa-heading-area {
  margin-bottom: 20px;
}
.fa-feature-section.v-3 {
  padding-bottom: 0;
}
.fa-feature-section.v-3 .feature-main-wrapper {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-feature-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-feature-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.feature-content-style-2 {
  max-width: 410px;
  width: 100%;
}
.feature-content-style-2 .feature-desc {
  margin-bottom: 0;
}
.feature-content-style-2 .feature-button {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-content-style-2 {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .feature-content-style-2 {
    max-width: 100%;
  }
  .feature-content-style-2 .feature-button .fa-primary-btn {
    width: 100%;
  }
}

.feature-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 40px;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
.feature-main-wrapper .feature-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.feature-main-wrapper.v-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 0px;
  -moz-column-gap: 0px;
  column-gap: 0px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  row-gap: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-main-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feature-main-wrapper.v-2 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
  }
  .feature-main-wrapper.v-2 .feature-style-2 {
    border-right: none;
    padding: 30px 30px 30px 15px;
  }
  .feature-main-wrapper.v-2 .feature-style-2:nth-child(2),
  .feature-main-wrapper.v-2 .feature-style-2:nth-child(1) {
    border-bottom: 1px solid var(--fa-color-border-7);
  }
  .feature-main-wrapper.v-2 .feature-style-2:nth-child(3),
  .feature-main-wrapper.v-2 .feature-style-2:nth-child(1) {
    border-right: 1px solid var(--fa-color-border-7);
  }
}
@media (max-width: 575px) {
  .feature-main-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feature-main-wrapper.v-2 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0;
  }
  .feature-main-wrapper.v-2 .feature-style-2 {
    border-right: none;
    padding: 20px 30px 20px 15px;
    border-bottom: 1px solid var(--fa-color-border-7);
  }
  .feature-main-wrapper.v-2 .feature-style-2:last-child {
    border-bottom: none;
  }
  .feature-main-wrapper .feature-content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.feature-item {
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.feature-item .feature-icons {
  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: 96px;
  height: 112px;
  background: var(--fa-color-theme-primary);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0% 100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.feature-item .feature-content {
  margin-top: -35px;
}
.feature-item .feature-content .feature-images img {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}
.feature-item .feature-content .feature-text {
  position: relative;
  background: var(--fa-color-common-white);
  padding: 25px 40px;
  max-width: 96%;
  width: 100%;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  margin-left: auto;
  margin-top: -95px;
}
.feature-item .feature-content .feature-text .feature-title {
  margin-bottom: 5px;
}
.feature-item .feature-content .feature-text .sub-title {
  display: block;
  font-weight: var(--fa-fw-medium);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.feature-item:hover .feature-icons {
  -webkit-animation: wobble-horizontal-hover 1s ease-in-out 1;
  animation: wobble-horizontal-hover 1s ease-in-out 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-item .feature-content .feature-text {
    padding: 25px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .feature-item .feature-icons {
    width: 76px;
    height: 80px;
  }
  .feature-item .feature-icons img {
    max-width: 40px;
    width: 100%;
  }
  .feature-item .feature-content .feature-text {
    padding: 25px 15px;
  }
}

.feature-style-2 {
  position: relative;
  border-right: 1px solid var(--fa-color-border-7);
  padding: 40px 30px 35px 15px;
  overflow: hidden;
}
.feature-style-2:last-child {
  border-right: none;
}
.feature-style-2 .feature-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.feature-style-2 .show-text .feature-icons {
  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: 70px;
  height: 70px;
  background: var(--fa-color-grey-8);
  border-radius: 50%;
  margin-bottom: 25px;
}
.feature-style-2 .show-text .feature-icons img {
  width: 35px;
}
.feature-style-2 .show-text .feature-text .feature-title {
  margin-bottom: 20px;
}
.feature-style-2 .show-text .feature-text .feature-desc {
  margin-bottom: 0;
}
.feature-style-2 .hide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 200px;
  width: 100%;
  z-index: 2;
}
.feature-style-2 .hide-text .feature-title {
  color: var(--fa-color-common-white);
  margin-bottom: 30px;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
  opacity: 0;
  visibility: hidden;
}
.feature-style-2 .hide-text .sub-title {
  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;
  font-size: 14px;
  color: var(--fa-color-common-white);
  font-weight: var(--fa-fw-bold);
  width: 200px;
  height: 55px;
  position: relative;
  -webkit-mask-image: url(../images/shapes/feature.svg);
  mask-image: url(../images/shapes/feature.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--fa-color-theme-primary);
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
}
.feature-style-2:hover .feature-img {
  opacity: 1;
  visibility: visible;
}
.feature-style-2:hover .show-text {
  -webkit-transform: translateY(-295px);
  -ms-transform: translateY(-295px);
  transform: translateY(-295px);
}
.feature-style-2:hover .hide-text .sub-title,
.feature-style-2:hover .hide-text .feature-title {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* !END: Theme feature CSS */
/**----------------------------------------
START: Theme Brand CSS
----------------------------------------*/
.fa-brand-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--fa-color-theme-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fa-brand-section .fa-heading-area .heading-title {
  color: var(--fa-color-common-white);
}
.fa-brand-section .brand-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 130px;
  -moz-column-gap: 130px;
  column-gap: 130px;
  row-gap: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-brand-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fa-brand-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .fa-brand-section .brand-main-wrapper {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-brand-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .fa-brand-section .brand-main-wrapper {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.brand-item a {
  display: inline-block;
}
.brand-item a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* !END: Theme Brand CSS */
/**----------------------------------------
START: Theme Portfolio CSS
----------------------------------------*/
.fa-portfolio-section {
  padding-bottom: 80px;
}
.fa-portfolio-section .portfolio-main-wrapper .fa-portfolio-slider {
  padding-bottom: 40px;
}
.fa-portfolio-section .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.fa-portfolio-section.v-2 {
  padding-top: 120px;
}
.fa-portfolio-section.v-2 .portfolio-main-wrapper .fa-portfolio-slider {
  padding-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-portfolio-section {
    padding-bottom: 60px;
  }
  .fa-portfolio-section.v-2 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-portfolio-section {
    padding-bottom: 40px;
  }
  .fa-portfolio-section.v-2 {
    padding-top: 80px;
  }
}

.portfolio-item {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.portfolio-item .portfolio-content {
  position: relative;
  max-width: 85%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -75px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.portfolio-item .portfolio-content .portfolio-text {
  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;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  background: var(--fa-color-common-white);
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%, 0% 38%);
  padding: 35px 25px 20px;
}
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-header
  .sub-title {
  display: block;
  color: var(--fa-color-theme-primary);
  font-family: var(--fa-ff-heading);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-header
  .portfolio-title {
  margin-bottom: 0;
}
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-header
  .portfolio-title
  a:hover {
  color: var(--fa-color-theme-primary);
}
.portfolio-item .portfolio-content .portfolio-text .portfolio-icons {
  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: 35px;
  height: 35px;
  font-size: 12px;
  color: var(--fa-color-common-white);
  background: var(--fa-color-theme-primary);
  border-radius: 50%;
}
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-icons
  .icon-hover {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  color: var(--fa-color-common-white);
}
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-icons
  .icon-hover
  i:first-child,
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-icons
  .icon-hover
  i:last-child {
  position: relative;
  color: var(--fa-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-icons
  .icon-hover
  i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
  color: var(--fa-color-common-white);
}
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-icons:hover
  .icon-hover
  i:first-child {
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
}
.portfolio-item
  .portfolio-content
  .portfolio-text
  .portfolio-icons:hover
  .icon-hover
  i:last-child {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.portfolio-item:hover .portfolio-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .portfolio-item .portfolio-content .portfolio-text {
    padding: 30px 15px 20px;
  }
}

/* !END: Theme Portfolio CSS */
/**----------------------------------------
START: Theme Event CSS
----------------------------------------*/
.fa-event-details {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-event-details {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-event-details {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.event-details-main-wrapper .table-main-wrapper {
  background: var(--fa-color-theme-secondary);
  padding: 30px 20px;
}
.event-details-main-wrapper
  .table-main-wrapper
  .table-item
  .table-content
  .table-infos
  .table-timer
  .time {
  color: var(--fa-color-heading-primary);
}
.event-details-main-wrapper
  .table-main-wrapper
  .table-item
  .table-content
  .table-text
  .table-title {
  color: var(--fa-color-heading-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-details-main-wrapper .table-main-wrapper .table-item .table-content {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-details-main-wrapper .table-main-wrapper .table-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .event-details-main-wrapper .table-main-wrapper .table-item .table-content {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
  }
  .event-details-main-wrapper
    .table-main-wrapper
    .table-item
    .table-content
    .table-text {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event-details-main-wrapper .table-main-wrapper .table-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .event-details-main-wrapper .table-main-wrapper .table-item .table-content {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: 100%;
  }
  .event-details-main-wrapper
    .table-main-wrapper
    .table-item
    .table-content
    .table-text {
    max-width: 100%;
  }
  .event-details-main-wrapper
    .table-main-wrapper
    .table-item
    .table-content
    .table-infos
    .table-images {
    width: 90px;
    height: 90px;
  }
}
.event-details-main-wrapper
  .table-main-wrapper
  .table-menu
  .table-list
  .table-title {
  padding: 8px 112px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-details-main-wrapper
    .table-main-wrapper
    .table-menu
    .table-list
    .table-title {
    padding: 8px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-details-main-wrapper
    .table-main-wrapper
    .table-menu
    .table-list
    .table-title {
    padding: 12px 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event-details-main-wrapper
    .table-main-wrapper
    .table-menu
    .table-list
    .table-title {
    padding: 12px 35px;
  }
}
@media (max-width: 575px) {
  .event-details-main-wrapper
    .table-main-wrapper
    .table-menu
    .table-list
    .table-title {
    font-size: 22px;
    padding: 12px 14px;
  }
}

.event-details-item {
  margin-bottom: 40px;
}
.event-details-item .details-image {
  margin-bottom: 30px;
}
.event-details-item .details-image img {
  width: 100%;
}
.event-details-item .event-title {
  margin-bottom: 20px;
}
.event-details-item .event-desc p {
  margin-bottom: 25px;
}
.event-details-item .event-desc p:last-child {
  margin-bottom: 0;
}

/* !END: Theme Event CSS */
/**----------------------------------------
START: Theme Breadcrumb CSS
----------------------------------------*/
.fa-breadcrumb-area {
  background-color: #000 !important;
  background-image: none !important;
  padding-top: 385px;
  padding-bottom: 185px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fa-breadcrumb-area {
    padding-top: 320px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .fa-breadcrumb-area {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

.breadcrumb-heading .breadcrumb-title {
  font-size: 90px;
  color: var(--fa-color-common-white);
  font-weight: var(--fa-fw-medium);
  margin-bottom: 20px;
  line-height: 1;
}
.breadcrumb-heading .sub-title {
  display: block;
  color: var(--fa-color-grey-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-heading .breadcrumb-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-heading .breadcrumb-title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-heading .breadcrumb-title {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.marquee-text-slider-3 {
  background-color: transparent;
}

.marquee-text-slider-3.style-11 {
  padding: 0;
  margin-top: 50px;
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .marquee-text-slider-3.style-11 {
    margin-left: 0;
  }
}

.marquee-text-slider-3.style-11 .marquee-text-3 {
  display: flex;
  align-items: center;
  background-color: var(--fa-color-common-white);
  padding: 16px 35px;
  line-height: 1;
  border-radius: 100px;
}

.marquee-text-slider-3.style-11 .marquee-text-3.bg-cover {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.marquee-text-slider-3.style-11 .marquee-text-3.bg-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: var(--fa-color-theme-primary);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.marquee-text-slider-3.style-11 .marquee-text-3 .text-marquee {
  font-size: 16px;
  font-weight: 600;
  color: var(--fa-color-heading-primary);
  transition: all 0.4s ease-in-out;
}

.marquee-text-slider-3.style-11 .marquee-text-3:hover .text-marquee {
  color: var(--fa-color-common-white);
}

.marquee-text-slider-3.style-11 .marquee-text-3:hover.bg-cover::before {
  opacity: 1;
}

.marquee-text-slider-3.style-12 {
  padding-top: 30px;
  margin-top: 0;
  margin-right: 50px;
  padding-bottom: 30px;
}

@media (max-width: 1199px) {
  .marquee-text-slider-3.style-12 {
    padding-bottom: 100px;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .marquee-text-slider-3.style-12 {
    padding-bottom: 80px;
  }
}

.marquee-text-slider-3.style-12 .marquee-text-3 {
  display: flex;
  align-items: center;
  background-color: var(--fa-color-common-white);
  padding: 16px 35px;
  line-height: 1;
  border-radius: 100px;
}

.oimela-featured-books {
  --oimela-theme: #ff7b6b;
  --oimela-header: #11112c;
  --oimela-text: #797979;
  --oimela-bg: #ffefef;
}

.oimela-featured-books .section-padding {
  padding: 100px 0;
}

.oimela-featured-books .section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
}

.oimela-featured-books .section-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.oimela-featured-books .theme-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--oimela-theme);
  color: var(--fa-color-common-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 20px;
  border-radius: 100px;
}

.oimela-featured-books .theme-btn:before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--oimela-theme);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}

.oimela-featured-books .theme-btn:hover::before {
  width: 100%;
}

.oimela-featured-books .theme-btn.style-2 {
  background-color: transparent;
  color: var(--oimela-header);
  border: 1px solid rgba(92, 112, 126, 0.3);
}

.oimela-featured-books .theme-btn.style-2:hover {
  color: var(--fa-color-common-white);
}

.oimela-featured-books .center {
  text-align: center;
  margin: 0 auto;
}

.oimela-featured-books .shop-box-items {
  margin-top: 40px;
}

.oimela-featured-books .shop-box-items .book-thumb {
  background-color: var(--oimela-bg);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 285px;
}

.oimela-featured-books .shop-box-items .book-thumb img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  object-fit: contain;
}

.oimela-featured-books .shop-box-items:hover .book-thumb img {
  transform: scale(1.1);
}

.oimela-featured-books .shop-box-items .book-thumb .post-box {
  position: absolute;
  left: 24px;
  top: 20px;
  display: grid;
  gap: 6px;
}

.oimela-featured-books .shop-box-items .book-thumb .post-box li {
  background-color: var(--oimela-theme);
  color: var(--fa-color-common-white);
  font-weight: 600;
  display: inline-block;
  border-radius: 4px;
  padding: 8px 16px;
  line-height: 1;
}

.oimela-featured-books .shop-box-items .book-thumb .shop-icon {
  gap: 8px;
  position: absolute;
  top: 26px;
  right: 26px;
}

.oimela-featured-books .shop-box-items .book-thumb .shop-icon li {
  transform: scaleX(0);
  transition: 0.4s ease-in-out;
  cursor: pointer;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
}

.oimela-featured-books .shop-box-items:hover .book-thumb .shop-icon li {
  transform: scaleX(1);
}

.oimela-featured-books .shop-box-items .book-thumb .shop-icon li a i,
.oimela-featured-books .shop-box-items .book-thumb .shop-icon li a .icon {
  color: var(--oimela-text);
  transition: all 0.4s ease-in-out;
}

.oimela-featured-books .shop-box-items .book-thumb .shop-icon li:hover {
  background-color: var(--oimela-theme);
}

.oimela-featured-books .shop-box-items .book-thumb .shop-icon li:hover i {
  color: var(--fa-color-common-white);
}

.oimela-featured-books .shop-box-items .book-thumb .shop-icon li:hover .icon {
  filter: invert(100%) brightness(250%) contrast(100%);
}

.oimela-featured-books .shop-box-items .shop-content {
  margin-top: 20px;
}

.oimela-featured-books .shop-box-items .shop-content h5 {
  color: var(--oimela-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.oimela-featured-books .shop-box-items .shop-content h3 {
  color: var(--oimela-header);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.oimela-featured-books .shop-box-items .shop-content .price-list {
  display: flex;
  margin-top: 5px;
  justify-content: start;
  gap: 10px;
}

.oimela-featured-books .shop-box-items .shop-content .price-list li {
  font-size: 16px;
  font-weight: 700;
  color: var(--oimela-theme);
}

.oimela-featured-books .shop-box-items .shop-content .price-list del {
  color: #5c707e;
  font-weight: 500;
}

.oimela-featured-books .shop-box-items .shop-content .author-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.oimela-featured-books .shop-box-items .shop-content .author-post .authot-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oimela-featured-books .shop-box-items .shop-content .author-post li i {
  color: var(--oimela-theme);
}

.oimela-featured-books .shop-box-items .shop-button {
  margin-top: 30px;
}

.oimela-featured-books .shop-box-items .shop-button .theme-btn {
  width: 100%;
  background-color: var(--oimela-bg);
  color: var(--oimela-theme);
  border-radius: 100px;
}

.oimela-featured-books .shop-box-items .shop-button .theme-btn:hover {
  color: var(--fa-color-common-white);
}

.oimela-featured-books .book-slider {
  overflow: hidden;
}

.oimela-featured-books .book-slider .swiper-wrapper {
  display: flex;
  box-sizing: content-box;
}

.oimela-featured-books .book-slider .swiper-slide {
  height: auto;
}

.oimela-featured-books .book-slider:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.oimela-featured-books .book-slider:not(.swiper-initialized) .swiper-slide {
  width: calc(20% - 24px);
}

@media (max-width: 1399px) {
  .oimela-featured-books .book-slider:not(.swiper-initialized) .swiper-slide {
    width: calc(25% - 23px);
  }
}

@media (max-width: 1199px) {
  .oimela-featured-books .book-slider:not(.swiper-initialized) .swiper-slide {
    width: calc(33.333% - 20px);
  }
}

@media (max-width: 767px) {
  .oimela-featured-books .book-slider:not(.swiper-initialized) .swiper-slide {
    width: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .oimela-featured-books .book-slider:not(.swiper-initialized) .swiper-slide {
    width: 100%;
  }
}

.oimela-feature-under-featured {
  --oimela-theme: #ff7b6b;
  --oimela-header: #11112c;
  --oimela-text: #797979;
  --oimela-bg: #ffefef;
  --oimela-white: #ffffff;
  --oimela-border: #dfdcdc;
}

.oimela-feature-under-featured .cta-banner-wrapper {
  background-attachment: fixed;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.oimela-feature-under-featured .cta-banner-wrapper .book-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .oimela-feature-under-featured .cta-banner-wrapper .book-shape img {
    width: 250px;
  }
}

@media (max-width: 991px) {
  .oimela-feature-under-featured .cta-banner-wrapper .book-shape {
    display: none;
  }
}

.oimela-feature-under-featured .cta-banner-wrapper .book-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .oimela-feature-under-featured .cta-banner-wrapper .book-shape-2 img {
    width: 250px;
  }
}

@media (max-width: 991px) {
  .oimela-feature-under-featured .cta-banner-wrapper .book-shape-2 {
    display: none;
  }
}

.oimela-feature-under-featured .cta-banner-wrapper .cta-content span {
  position: relative;
  color: var(--oimela-white);
  font-size: 30px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .oimela-feature-under-featured .cta-banner-wrapper .cta-content span {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .oimela-feature-under-featured .cta-banner-wrapper .cta-content span {
    font-size: 20px;
  }
  .oimela-feature-under-featured .cta-banner-wrapper .cta-content span img {
    width: 80px;
  }
}

.oimela-feature-under-featured .cta-banner-wrapper .cta-content span img {
  position: absolute;
  bottom: -10px;
  left: 0;
}

.oimela-feature-under-featured .cta-banner-wrapper .cta-content h2 {
  margin-top: 10px;
  color: var(--oimela-white);
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .oimela-feature-under-featured .cta-banner-wrapper .cta-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .oimela-feature-under-featured .cta-banner-wrapper .cta-content h2 {
    font-size: 25px;
  }
  .oimela-feature-under-featured .cta-banner-wrapper .cta-content h2 br {
    display: block;
  }
}

.oimela-feature-under-featured .cta-banner-wrapper .cta-content .theme-btn {
  background-color: var(--oimela-white);
  color: var(--oimela-header);
  border: 1px solid transparent;
}

.oimela-feature-under-featured
  .cta-banner-wrapper
  .cta-content
  .theme-btn::before {
  background-color: var(--oimela-header);
}

.oimela-feature-under-featured
  .cta-banner-wrapper
  .cta-content
  .theme-btn:hover {
  border-color: var(--oimela-white);
  color: var(--oimela-white);
}

.oimela-feature-under-featured .feature-wrapper {
  background-color: var(--oimela-white);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .oimela-feature-under-featured .feature-wrapper {
    flex-wrap: wrap;
    gap: 25px;
    padding: 45px 25px;
  }
}

.oimela-feature-under-featured .feature-wrapper .feature-box-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.oimela-feature-under-featured
  .feature-wrapper
  .feature-box-items:not(:last-child) {
  border-right: 1px solid var(--oimela-border);
  padding-right: 60px;
}

@media (max-width: 1600px) {
  .oimela-feature-under-featured
    .feature-wrapper
    .feature-box-items:not(:last-child) {
    border: none !important;
    padding: 0;
  }
}

.oimela-feature-under-featured .feature-wrapper .feature-box-items .content h3 {
  font-size: 20px;
  color: var(--oimela-header);
}

.oimela-feature-under-featured .feature-wrapper .feature-box-items .content p {
  font-weight: 500;
  color: var(--oimela-text);
  margin: 0;
}

.oimela-feature-under-featured .feature-wrapper .feature-box-items .icon {
  width: 84px;
  height: 84px;
  background-color: var(--oimela-theme);
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.oimela-feature-under-featured .feature-wrapper .feature-box-items .icon i {
  font-size: 32px;
  color: var(--oimela-white);
}

.oimela-shop-extras {
  --oimela-theme: #ff7b6b;
  --oimela-header: #11112c;
  --oimela-text: #797979;
  --oimela-bg: #ffefef;
  --oimela-white: #ffffff;
  --oimela-border: #dfdcdc;
}

.oimela-shop-extras .book-shop-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

@media (max-width: 1600px) {
  .oimela-shop-extras .book-shop-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) {
  .oimela-shop-extras .book-shop-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .oimela-shop-extras .book-shop-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .oimela-shop-extras .book-shop-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box {
  background-color: var(--oimela-theme);
  padding: 20px 27px;
  margin-top: 40px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box {
    text-align: center;
    display: none;
  }
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box .girl-shape {
  position: absolute;
  bottom: 0;
  right: 15px;
}

@media (max-width: 1600px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box .girl-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box .girl-shape {
    display: block;
  }
}

@media (max-width: 991px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box .girl-shape {
    display: none;
  }
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box .girl-shape img {
  transform: scaleX(-1);
  height: 285px;
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box .circle-shape {
  position: absolute;
  bottom: -113px;
  left: 10px;
  z-index: -1;
}

@media (max-width: 1600px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box .circle-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box .circle-shape {
    display: block;
  }
}

@media (max-width: 991px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box .circle-shape {
    display: none;
  }
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box h2 {
  font-size: 36px;
  color: var(--oimela-white);
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .oimela-shop-extras .book-shop-wrapper .cta-shop-box h2 {
    font-size: 24px;
  }
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box h6 {
  color: var(--oimela-white);
  font-size: 15px;
  margin-bottom: 25px;
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box .theme-btn {
  padding: 16px 30px;
  background-color: var(--oimela-white);
  color: var(--oimela-header);
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box .theme-btn::before {
  background-color: var(--oimela-header);
}

.oimela-shop-extras .book-shop-wrapper .cta-shop-box .theme-btn:hover {
  color: var(--oimela-white);
}

.oimela-shop-extras .top-ratting-book-wrapper {
  background-color: var(--oimela-white);
  padding: 40px 35px;
  border-radius: 16px;
}

.oimela-shop-extras .top-ratting-book-wrapper .section-title-area .section-title h2 {
  font-size: 26px;
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items {
  margin-top: 30px;
  border: 1px solid var(--oimela-border);
  border-radius: 16px;
  background-color: var(--oimela-white);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 767px) {
  .oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items {
    flex-wrap: wrap;
  }
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-thumb {
  background-color: var(--oimela-bg);
  max-width: 104px;
  padding: 15px 20px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-thumb {
    max-width: 100%;
    width: 100%;
  }
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-thumb img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  object-fit: contain;
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items:hover .book-thumb img {
  transform: scale(1.1);
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content {
  width: 100%;
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content h5 {
  color: var(--oimela-text);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 470px) {
  .oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header h3 a:hover {
  color: var(--oimela-theme);
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon {
  gap: 8px;
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li {
  cursor: pointer;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li a i {
  color: var(--oimela-text);
  transition: all 0.4s ease-in-out;
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li:hover {
  background-color: var(--oimela-theme);
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li:hover i {
  color: var(--oimela-white);
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content span {
  font-weight: 700;
  color: var(--oimela-text);
  display: inline-block;
  margin-bottom: 0px;
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 470px) {
  .oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .star {
  color: var(--oimela-theme);
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn {
  background: var(--oimela-bg);
  color: var(--oimela-theme);
  padding: 12px 30px;
  border-radius: 6px;
}

@media (max-width: 575px) {
  .oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn {
    width: 100%;
  }
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn:hover {
  color: var(--oimela-white);
}

.oimela-shop-extras .top-ratting-book-wrapper .top-ratting-box-items .book-content {
  background-color: var(--oimela-theme);
}

.oimela-shop-page {
  --oimela-theme: #FF7B6B;
  --oimela-header: #11112C;
  --oimela-text: #797979;
  --oimela-bg: #FFEFEF;
  --oimela-white: #ffffff;
  --oimela-border: #DFDCDC;
}

.oimela-shop-page .breadcrumb-wrapper {
  padding: 173px 0;
}

@media (max-width: 1199px) {
  .oimela-shop-page .breadcrumb-wrapper {
    padding: 150px 0;
  }
}

@media (max-width: 991px) {
  .oimela-shop-page .breadcrumb-wrapper {
    padding: 70px 0;
  }
}

.oimela-shop-page .breadcrumb-wrapper .page-heading h1 {
  color: var(--oimela-header);
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .oimela-shop-page .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .oimela-shop-page .breadcrumb-wrapper .page-heading h1 {
    font-size: 36px;
  }
}

.oimela-shop-page .breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 575px) {
  .oimela-shop-page .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}

.oimela-shop-page .breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--oimela-theme);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.oimela-shop-page .breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--oimela-header);
  transition: all 0.4s ease-in-out;
}

.oimela-shop-page .breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--oimela-theme);
}

.oimela-shop-page .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--oimela-header);
  font-size: 12px;
}

.oimela-shop-page .shop-default-wrapper .woocommerce-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--oimela-white);
  padding: 35px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .oimela-shop-page .shop-default-wrapper .woocommerce-notices-wrapper {
    flex-wrap: wrap;
    padding: 20px 15px;
    gap: 20px;
    justify-content: center;
  }
}

.oimela-shop-page .shop-default-wrapper .woocommerce-notices-wrapper p {
  font-weight: 500;
  margin: 0;
}

.oimela-shop-page .shop-default-wrapper .woocommerce-notices-wrapper .form-clt {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 99;
}

.oimela-shop-page .shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select {
  padding: 18px 20px;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 6px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .oimela-shop-page .shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select {
    padding: 0 20px;
  }
}

.oimela-shop-page .shop-default-wrapper .woocommerce-notices-wrapper .form-clt .icon-2.active a {
  color: var(--oimela-theme);
}

.oimela-shop-page .shop-default-wrapper .main-sidebar {
  margin-top: 50px;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget {
  background-color: var(--oimela-white);
  border: 0px;
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget.mb-50 {
  margin-bottom: 50px;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .wid-title h5 {
  position: relative;
  padding-bottom: 15px;
  font-size: 22px;
  color: var(--oimela-header);
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .wid-title h5::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 2px;
  width: 83px;
  background: linear-gradient(90deg, var(--oimela-theme) 4.85%, rgba(1, 46, 74, 0) 96.39%);
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .search-input {
  width: 100%;
  height: 60px;
  padding: 16px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .search-icon {
  position: absolute;
  right: 30px;
  cursor: pointer;
  color: #888;
  top: 15px;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills {
  display: block;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link {
  display: flex;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--oimela-header);
  background-color: transparent;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link.active,
.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link:hover {
  background-color: var(--oimela-theme);
  color: var(--oimela-white);
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .slider {
  height: 6.75px;
  position: relative;
  background: var(--oimela-header);
  border-radius: 5px;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--oimela-theme);
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .range-input {
  position: relative;
  display: flex;
  justify-content: center;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .range-input input {
  position: absolute;
  width: 100%;
  height: 6.75px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  outline: none;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 7px;
  border-radius: 5px;
  background: var(--oimela-theme);
  border: 1.125px solid var(--oimela-theme);
  pointer-events: auto;
  -webkit-appearance: none;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input {
  margin-top: 10px;
  position: relative;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .separators {
  margin-left: -12px;
  padding-right: 12px;
  font-size: 24px;
  line-height: 42px;
  font-weight: 500;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .field {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .field span {
  font-size: 18px;
  font-weight: 500;
  color: var(--oimela-header);
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .field input {
  outline: none;
  background: transparent;
  border: unset;
  font-size: 16px;
  font-weight: 500;
  color: var(--oimela-header);
  padding: 0;
}

.oimela-shop-page .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .filter-btn {
  padding: 8px 30px;
  background-color: var(--oimela-theme);
  color: var(--oimela-white);
  border-radius: 6px;
}

.marquee-text-slider-3.style-12 .marquee-text-3.bg-cover {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.marquee-text-slider-3.style-12 .marquee-text-3.bg-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: var(--fa-color-theme-primary);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.marquee-text-slider-3.style-12 .marquee-text-3 .text-marquee {
  font-size: 16px;
  font-weight: 600;
  color: var(--fa-color-heading-primary);
  transition: all 0.4s ease-in-out;
}

.marquee-text-slider-3.style-12 .marquee-text-3:hover .text-marquee {
  color: var(--fa-color-common-white);
}

.marquee-text-slider-3.style-12 .marquee-text-3:hover.bg-cover::before {
  opacity: 1;
}

.gt-marque-section {
  position: relative;
}

.gt-marque-section .overlay-shape {
  position: absolute;
  left: 0;
  top: 288px;
  z-index: 999;
}

@media (max-width: 1199px) {
  .gt-marque-section .overlay-shape {
    display: none;
  }
}

.gt-marque-section .overlay-shape-2 {
  position: absolute;
  right: 0;
  top: 288px;
  z-index: 999;
}

@media (max-width: 1199px) {
  .gt-marque-section .overlay-shape-2 {
    display: none;
  }
}

/* !END: Breadcrumb CSS */ /*# sourceMappingURL=main.css.map */
