/*================================================
1. Mixins Css
2. Global CSS
3. Section Title
4. Buttons
5. Preloader
6. Pagination
7. search area
8. Mobile-menu 
9. Topbar-section
10. Header-section
11. Banner-section
12. Intro-section
13. About-section
14. Practice-area-section
15. Info-section
16. Casestudy Section
17. Attorney Section
18. Latest News Section
19. Lawyer Profile Section
20. Error-page
21. Footer-section
22. Testimonial Seciton
23. Breadcrumb-section
24. Service details
25. Faq section
26. History section

================================================*/
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --primary-color1: #008b5e;
  --primary-color1-light: rgba(0, 139, 94, 0.3);
  --primary-color1-light2: rgba(0, 139, 94, 0.7);
  --primary-color1-light3: rgba(0, 139, 94, 0.2);
  --primary-color1-light4: rgba(3, 31, 22, 0.95);
  --bg-color: #04161a;
  --bg-color2: #020b0d;
  --bg-color3: #0f0f0f;
  --bg-color4: #1e1e1e;
  --bg-dark-0: #000;
  --dark-overlay: rgba(26, 26, 26, 0.8);
  --white: #ffffff;
  --white-opacity: rgba(255, 255, 255, 0.6);
  --text-light: rgba(172, 172, 172, 1);
  --text-light2: #c2c2c2;
  --text-light3: #8d8d8d;
  --text-light4: #acacac;
  --border-color: rgba(172, 172, 172, 0.25);
  --font-kanit: "Kanit", sans-serif;
  --font-Jost: "Jost", sans-serif;
  --font-prompt: "Prompt", sans-serif;
  --radius: 8vmin;
  --frame-size: calc(var(--radius) / 3);
  --d-outer: calc(var(--radius) * 2);
  --d-inner: calc(var(--radius) * 2 - var(--frame-size));
  --font-size: calc(var(--radius) / 10);
}

::-moz-selection {
  color: var(--white);
  background: var(--primary-color1);
}

::selection {
  color: var(--white);
  background: var(--primary-color1);
}

.font h1 {
  font-size: 30px;
  color: var(--primary-color1);
  font-family: var(--font-prompt);
}

/*================================================
1. Mixins Css
=================================================*/
/*================================================
2. Global Css
=================================================*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  html {
    font-size: 97%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  html {
    font-size: 90%;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 88%;
  }
}

body {
  font-family: var(--font-Jost);
  color: #fff;
  font-size: 17px;
  margin: 0;
  background-color: var(--bg-color2);
}

button {
  outline: none;
  border: none;
}

input, .comment-form-wrapper .comment-form textarea, .contact-form textarea {
  outline: none;
  border: none;
}

a {
  text-decoration: none;
  color: var(--primary-color1);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color1);
}
a:focus {
  outline: 0 solid;
}

input:focus, .comment-form-wrapper .comment-form textarea:focus,
textarea:focus,
button:focus {
  outline: none;
}

i.bx {
  vertical-align: middle;
}

.pt-0 {
  padding-top: 0;
}

.pt-120 {
  padding-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-120 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}

.pt-xxl-120 {
  padding-top: 120px;
}
@media (max-width: 1199px) {
  .pt-xxl-120 {
    padding-top: 0;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}
@media (max-width: 991px) {
  .pb-90 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-120 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}

.pbb-120 {
  padding-top: 120px !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pbb-120 {
    padding-top: 100px !important;
  }
}
@media (max-width: 991px) {
  .pbb-120 {
    padding-top: 90px !important;
  }
}

.pb-65 {
  padding-bottom: 65px;
}

.mt-120 {
  margin-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-120 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .mt-120 {
    margin-top: 90px;
  }
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-100 {
  margin-bottom: 100px;
}

.sec-mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .sec-mb-100 {
    margin-bottom: 40px;
  }
}

.pt-80 {
  padding-top: 80px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pe-80 {
  padding-right: 80px;
}

.pb-60 {
  padding-bottom: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

.mb-70 {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .mb-70 {
    margin-bottom: 40px;
  }
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .mt-70 {
    margin-top: 40px;
  }
}

.mb-95 {
  margin-bottom: 95px;
}

.bg--light {
  background: #fafafa;
}

.eg-card {
  border-radius: 5px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
}

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

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

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

/*=======================================
 preloader
=======================================*/
.preloader {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #070707;
  z-index: 999999999;
}
.preloader::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  content: "";
  background: url(../images/icons/header1-logo.svg);
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto auto;
  text-align: center;
  opacity: 0.15;
}
@media (max-width: 991px) {
  .preloader::before {
    transform: scale(0.5);
  }
}
.preloader.active {
  transform: translateY(-120vh);
  transition: ease-in-out 1.5s;
  transition-delay: 1s;
}
.preloader .counter {
  position: relative;
  color: #fff;
  font-size: 6rem;
  font-weight: 600;
  z-index: 1;
}
.preloader .counter::after {
  content: "%";
  font-size: 80px;
}
.preloader .hide {
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}

/*=======================================
 Magic Cursor
=======================================*/
#magic-cursor {
  position: absolute;
  display: none;
  width: 25px;
  height: 25px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
}

body.tt-magic-cursor #magic-cursor {
  display: block;
}

#ball {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color1);
  pointer-events: none;
  border-style: solid;
  border-radius: 50%;
  border-color: var(--text-light2);
  /* Note: border width handled through JS */
}

/* Ball view
============= */
#ball.ball-view {
  background-color: var(--primary-color1);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
}

#ball .ball-view-inner {
  padding: 0 5px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

#ball .ball-view-inner i {
  font-size: 19px;
}

/* Ball drag
============= */
#ball .ball-drag {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color1);
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s;
}

#ball .ball-drag::before,
#ball .ball-drag::after {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  font-size: 16px;
  color: var(--primary-color1);
  height: 15px;
  line-height: 15px;
  /* Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

#ball .ball-drag::before {
  content: "\f060";
  /* Font Awesome */
  left: 0;
  transform: translate3d(-30px, 0, 0);
  transition: all 0.35s;
}

#ball .ball-drag::after {
  content: "\f061";
  /* Font Awesome */
  right: 0;
  transform: translate3d(30px, 0, 0);
  transition: all 0.35s;
}

/* Ball close
============== */
#ball.ball-close-enabled {
  opacity: 1 !important;
}

#ball .ball-close {
  position: absolute;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color1);
  line-height: 1;
  text-align: center;
}

/* Magnetic cursor
=================== */
.magnetic-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ball.magnetic-active {
  border-color: var(--primary-color1) !important;
}

/*=======================================
 3. Hover effect
=======================================*/
.direction-hover {
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  position: relative;
  overflow: hidden;
  float: left;
  margin: 1.5%;
  cursor: pointer;
}

.direction-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: -100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}

/*=======================================
 3. scroll top
=======================================*/
.circle-container {
  background: transparent;
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.07);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}
@media (max-width: 991px) {
  .circle-container {
    display: none;
    visibility: hidden;
  }
}
.circle-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.circle-container::after {
  position: absolute;
  font-family: "Bootstrap-icons";
  content: "\f145";
  text-align: center;
  line-height: 46px;
  font-size: 28px;
  color: var(--primary-color1);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.circle-container:hover::after {
  position: absolute;
  font-family: "Bootstrap-icons";
  content: "\f145";
  color: var(--green);
  transition: all 200ms linear;
}
.circle-container svg path {
  fill: none;
}
.circle-container svg.circle-progress path {
  stroke: var(--primary-color1);
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.grow {
  transform: scale(1.5);
  background-color: var(--white);
  mix-blend-mode: difference;
  border: none;
}

/*=======================================
 3. section-title
=======================================*/
.section-title-lg > span {
  display: inline-block;
  padding: 10px 20px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color1);
  font-family: var(--font-Jost);
  margin: 0 auto 30px auto;
  z-index: 1;
}
.section-title-lg > span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%) skewX(-8deg);
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color1);
  opacity: 0.3;
  z-index: -1;
}
.section-title-lg h2 {
  font-size: 4.688rem;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-prompt);
  text-align: center;
  margin-bottom: 0px;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .section-title-lg h2 {
    font-size: 2.5rem;
  }
}
.section-title-lg h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  -webkit-text-fill-color: transparent;
}
.section-title-lg h2 img {
  padding: 0px 20px;
  vertical-align: text-top;
}
@media (max-width: 767px) {
  .section-title-lg h2 img {
    max-width: 65px;
    vertical-align: baseline;
  }
}
.section-title-lg h2 strong {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.section-title-lg h2 strong img {
  padding: 0px 20px 0px 0px;
}

.section-title1 {
  text-align: center;
}
.section-title1 > span {
  display: inline-block;
  padding: 10px 20px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color1);
  font-family: var(--font-Jost);
  margin: 0 auto 15px auto;
  z-index: 22;
}
.section-title1 > span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%) skewX(-8deg);
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color1);
  opacity: 0.3;
  z-index: -1;
}
.section-title1 h2 {
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-prompt);
  margin-bottom: 0px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .section-title1 h2 {
    font-size: 2.2rem;
    font-weight: 600;
  }
}

.section-title2 {
  text-align: left;
  width: 100%;
  max-width: 450px;
}
.section-title2 span {
  display: inline-block;
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  color: transparent;
  font-family: var(--font-Jost);
  margin: 0 auto 5px auto;
  -webkit-text-stroke: 1px var(--primary-color1);
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .section-title2 span {
    font-size: 2.2rem;
  }
}
.section-title2 h2 {
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-prompt);
  margin-bottom: 0px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .section-title2 h2 {
    font-size: 2.2rem;
  }
}
.section-title2 p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light2);
  font-family: var(--font-Jost);
}

.section-title3 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .section-title3 {
    text-align: center;
  }
}
.section-title3 h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-prompt);
}
@media (max-width: 767px) {
  .section-title3 h2 {
    font-size: 2.2rem;
    font-weight: 500;
  }
}
.section-title3 h2 img,
.section-title3 h2 svg {
  margin-right: 10px;
}

.section-title4 {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-title4 span {
  position: relative;
  font-size: 17px;
  font-weight: 500;
  color: var(--primary-color1);
  font-family: var(--font-Jost);
  display: inline-block;
  padding-left: 18px;
  margin-bottom: 5px;
}
.section-title4 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color1);
}
.section-title4 h2 {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-prompt);
  line-height: 1.35;
}
@media (max-width: 767px) {
  .section-title4 h2 {
    font-size: 2.5rem;
  }
}
.section-title4 img,
.section-title4 svg {
  margin-top: -55px;
}

/*=======================================
 4. Buttons 
=======================================*/
.eg-btn {
  text-align: center;
  display: inline-flex;
  text-decoration: none;
  transition: all 0.45s ease-in-out;
  text-transform: capitalize;
  cursor: pointer;
}
.eg-btn i {
  font-weight: 200;
  vertical-align: middle;
  margin-right: 5px;
}

.btn--primary-outline {
  color: var(--white);
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
  z-index: 10;
}
.btn--primary-outline::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  transform: skewX(-20px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-49%, -50%) skewX(8deg);
  transition: all 0.45s ease-in-out;
  z-index: -1;
}
.btn--primary-outline:hover {
  color: var(--primary-color1);
}
.btn--primary-outline:hover::before {
  transform: translate(-50%, -50%) skewX(-5deg);
}

.btn--primary-outline2 {
  color: var(--white);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-kanit);
  border: 1px solid var(--primary-color1);
  overflow: hidden;
  z-index: 1;
}
.btn--primary-outline2:hover {
  color: var(--white);
}
.btn--primary-outline2:hover::before {
  opacity: 1;
  transform: scale(1);
}
.btn--primary-outline2::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color1);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.45s ease-in-out;
  z-index: -1;
  opacity: 0;
  transform: scale(0.6);
  border-radius: 30px;
}

.btn--primary {
  color: var(--white);
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
}
.btn--primary::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color1);
  border: 1px solid var(--primary-color1);
  transform: skewX(8deg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-49%, -50%) skewX(8deg);
  transition: all 0.45s ease-in-out;
  z-index: -1;
}
.btn--primary:hover {
  color: var(--white);
}
.btn--primary:hover::before {
  transform: translate(-50%, -50%) skewX(-8deg);
}

.btn--primary2 {
  color: var(--white);
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
  background-color: var(--primary-color1);
}
.btn--primary2 img,
.btn--primary2 svg {
  margin-right: 10px;
}
.btn--primary2:hover {
  color: var(--white);
}
.btn--primary2:hover::before {
  top: 0px;
  left: 0px;
  opacity: 0;
}
.btn--primary2::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  position: absolute;
  left: -8px;
  top: -8px;
  z-index: -1;
  transition: all 0.55s ease-in-out;
  opacity: 1;
}

.capsule {
  border-radius: 30px;
}

.btn--lg {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 15px 35px;
}
@media (max-width: 767px) {
  .btn--lg {
    padding: 12px 25px;
  }
}

.btn--lg2 {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 12px 50px;
}

.btn--md {
  padding: 10px 35px;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .btn--md {
    padding: 10px 40px;
  }
}

.btn--sm {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
}

/*=======================================
 5. Paginaiton
=======================================*/
.pagination-wrap .page-item.active .page-link {
  z-index: 3;
  color: var(--primary-color1) !important;
  background-color: var(--white) !important;
  border-color: var(--primary-color1);
}
.pagination-wrap .pagination {
  margin: 0;
}
.pagination-wrap .page-item:first-child .page-link {
  border-radius: 2px;
}
.pagination-wrap .page-item:last-child .page-link {
  border-radius: 2px;
}
.pagination-wrap .page-link {
  position: relative;
  display: block;
  color: var(--text-primary) !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: unset !important;
  border-radius: 8px 8px 2px 8px;
  transition: 0.42s ease;
  padding: 0px 10px !important;
}
.pagination-wrap .page-link:focus {
  box-shadow: unset;
  color: var(--primary-color1);
}
.pagination-wrap .page-link:hover {
  color: var(--primary-color1);
}
.pagination-wrap .page-item.active .page-link {
  z-index: 3;
  color: var(--primary-color1);
}

/*=======================================
 5. preloader start 
=======================================*/
/*=======================================
 6. pagination start 
=======================================*/
.pagination-wrap .page-item.active .page-link {
  z-index: 3;
  color: var(--white);
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.pagination-wrap .pagination {
  margin: 0;
}
.pagination-wrap .page-link {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--white);
  border-radius: 5px;
  transition: 0.42s ease;
  border: 1px solid rgba(41, 43, 49, 0.3);
  border-radius: 5px;
  color: rgba(41, 43, 49, 0.3);
  padding: 7px 10px;
}
.pagination-wrap .page-link i {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 600;
  transition: 0.42s ease;
  vertical-align: middle;
}
.pagination-wrap .page-link:focus {
  box-shadow: unset;
  color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.pagination-wrap .page-link:hover {
  color: var(--primary-color1) !important;
}
.pagination-wrap .page-link:hover i {
  color: var(--primary-color1);
}
.pagination-wrap .page-item.active .page-link {
  z-index: 3;
  color: var(--primary-color1);
}

.main-nav-wrapper {
  transition: all 0.7s ease-in;
  position: relative;
  width: 100%;
  z-index: 99;
}
.main-nav-wrapper .sidebar-menu-contact {
  gap: 35px;
}
.main-nav-wrapper .sidebar-menu-contact a {
  width: 45px;
  text-align: center;
}
.main-nav-wrapper .mobile-logo-area {
  padding: 14px 0px;
}
.main-nav-wrapper .main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5% !important;
  z-index: 99;
  height: 100%;
  overflow-y: auto;
  background: var(--bg-color2);
  box-shadow: 4px 3px 20px rgba(16, 33, 34, 0.06);
  transition: all 0.7s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-10vh);
  opacity: 0;
  visibility: hidden;
  gap: 30px;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.main-nav-wrapper .main-nav::before {
  content: "Explore Pages.";
  position: absolute;
  top: 45%;
  right: 10%;
  transform: translateY(-50%);
  display: block;
  font-size: 220px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-Jost);
  color: var(--text-light3);
  opacity: 0.1;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: 0;
  height: 300px;
  letter-spacing: 5px;
  text-align: right;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-nav-wrapper .main-nav::before {
    font-size: 200px;
  }
}
@media (max-width: 991px) {
  .main-nav-wrapper .main-nav::before {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .main-nav-wrapper .main-nav {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .main-nav-wrapper .main-nav {
    min-width: 100%;
    max-width: 100%;
  }
}
.main-nav-wrapper .main-nav::-webkit-scrollbar {
  width: 5px;
}
.main-nav-wrapper .main-nav::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.main-nav-wrapper .main-nav::-webkit-scrollbar-thumb {
  background: #999;
}
.main-nav-wrapper .main-nav::-webkit-scrollbar-thumb:hover {
  background: var(--border-color);
}
.main-nav-wrapper .main-nav .menu-close-btn {
  position: absolute;
  right: 5%;
  top: 35px;
  opacity: 1;
  cursor: pointer;
  border: 1px solid var(--white);
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 30px;
  opacity: 0.8;
}
.main-nav-wrapper .main-nav .menu-close-btn i {
  color: var(--white);
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul {
  float: none;
  text-align: left;
  padding: 80px 0px 40px 0px;
  margin-bottom: 0px;
  width: 100%;
  max-width: 500px;
  margin-left: 0;
  margin-right: auto;
  z-index: 3;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-nav-wrapper .main-nav .sidebar-menu-area > ul {
    padding: 45px 0px 35px 0px;
  }
}
@media (max-width: 767px) {
  .main-nav-wrapper .main-nav .sidebar-menu-area > ul {
    padding: 40px 0px 30px 0px;
  }
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li {
  display: block;
  position: relative;
  padding: 5px 5px;
  transition: all 0.2s;
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li:last-child {
  border-bottom: 1px solid transparent;
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li:hover a:before {
  width: 100%;
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li > .bi {
  position: absolute;
  right: 0;
  top: 26px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  display: none;
}
@media (max-width: 576px) {
  .main-nav-wrapper .main-nav .sidebar-menu-area > ul > li > .bi {
    top: 15px;
  }
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li a {
  padding: 4px 0px;
  display: inline-block;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-light);
  font-family: var(--font-prompt);
  transition: all 0.6s ease;
  font-style: normal;
  text-decoration: none;
  transition: all 0.55s ease;
  position: relative;
  text-transform: uppercase;
}
@supports (-webkit-text-stroke: 1px var(--text-light)) {
  .main-nav-wrapper .main-nav .sidebar-menu-area > ul > li a {
    -webkit-text-stroke: 1px var(--text-light);
    color: transparent;
  }
}
@media (max-width: 576px) {
  .main-nav-wrapper .main-nav .sidebar-menu-area > ul > li a {
    font-size: 2.2rem;
  }
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li a::before {
  overflow: hidden;
  position: absolute;
  top: 5px;
  left: 0px;
  width: 0;
  color: var(--text-light);
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.8s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li ul.sub-menu {
  position: static;
  min-width: 180px;
  background: 0 0;
  border: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  transform: none;
  transition: none;
  display: none;
  margin-top: 0 !important;
  list-style: none;
  padding-left: 20px;
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li ul.sub-menu li {
  opacity: 1;
}
.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li ul.sub-menu li a {
  font-size: 22px;
  font-weight: 400;
  padding: 7px 5px;
  font-style: normal;
  text-transform: capitalize;
  -webkit-text-stroke: unset;
  -webkit-text-fill-color: unset;
  font-family: var(--font-Jost);
  color: var(--text-light);
}
.main-nav-wrapper .main-nav.show-menu {
  transform: none;
  opacity: 1;
  visibility: visible;
}
@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateY(50px) scaleY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateY(50px) scaleY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
.main-nav-wrapper .uesr-aera {
  width: 70px;
  height: 70px;
  line-height: 72px;
  border-radius: 50%;
  text-align: center;
  background: var(--primary-color2);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.main-nav-wrapper .uesr-aera .bi {
  font-size: 35px;
  color: var(--text-primary);
}
.main-nav-wrapper .mobile-menu {
  position: relative;
  top: 2px;
  padding: 0 5px;
  border-radius: 50%;
  display: inline-block;
}

header.style-1 {
  position: relative;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 3px 3px 30px rgba(32, 35, 56, 0.06);
  z-index: 99;
  padding: 0 4%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-1 {
    padding: 0px 2%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 {
    padding: 0px 2%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header.style-1 {
    padding: 0px 4%;
    top: 0;
  }
}
@media (max-width: 767px) {
  header.style-1 {
    top: 0;
    padding: 0px 4%;
  }
}
header.style-1.sticky {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 999;
  background: var(--bg-color);
  box-shadow: 5px 3px 40px rgba(100, 100, 100, 0.1);
  -webkit-animation: smooth-header 0.65s linear;
          animation: smooth-header 0.65s linear;
}
@-webkit-keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
header.style-1 .header-logo {
  padding: 21px 0px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  header.style-1 .header-logo {
    width: 100%;
  }
}
header.style-1 .header-logo img {
  min-width: 120px;
  max-width: 100%;
}
header.style-1 .nav-right .sidebar-button {
  margin-left: 60px;
}
header.style-1 .main-menu {
  display: inline-block;
}
header.style-1 .main-menu .mobile-menu-logo {
  display: none;
}
header.style-1 .main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.style-1 .main-menu ul > li {
  display: inline-block;
  padding: 0 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 .main-menu ul > li {
    padding: 0px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header.style-1 .main-menu ul > li {
    padding: 0px 10px;
  }
}
header.style-1 .main-menu ul > li.menu-item-has-children {
  position: relative;
}
header.style-1 .main-menu ul > li:hover i {
  color: var(--primary-color1);
}
header.style-1 .main-menu ul > li a {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  display: block;
  text-transform: uppercase;
  padding: 30px 10px;
  position: relative;
  font-family: var(--font-Jost);
  transition: all 0.5s ease-out 0s;
  position: relative;
}
header.style-1 .main-menu ul > li a::before {
  content: "";
  width: 100%;
  height: 35px;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  transform: skewX(-20px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(8deg);
  opacity: 0;
  transition: all 0.5s ease-out 0s;
}
header.style-1 .main-menu ul > li a:hover {
  color: var(--primary-color1);
}
header.style-1 .main-menu ul > li a:hover::before {
  opacity: 1;
}
header.style-1 .main-menu ul > li a.active {
  color: var(--primary-color1);
  display: inline-block;
  position: relative;
}
header.style-1 .main-menu ul > li a.active::before {
  content: "";
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  transform: skewX(-20px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(8deg);
  opacity: 1;
  transition: all 0.5s ease-out 0s;
}
header.style-1 .main-menu ul > li i {
  width: 30px;
  font-size: 4px;
  text-align: center;
  color: var(--text-light2);
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 38px;
  z-index: 999;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-out 0s;
}
header.style-1 .main-menu ul > li ul.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  margin: 0;
  display: none;
  min-width: 220px;
  background: #0b0f14;
  text-align: left;
  transition: all 0.55s ease-in-out;
  transform: translateY(20px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  z-index: 9999;
}
header.style-1 .main-menu ul > li ul.sub-menu > li {
  padding: 0;
  display: block;
}
header.style-1 .main-menu ul > li ul.sub-menu > li i {
  position: absolute;
  top: 25px;
  right: 6px;
  display: none;
  padding: 0px 10px;
  color: var(--white);
}
header.style-1 .main-menu ul > li ul.sub-menu > li.menu-item-has-children {
  position: relative;
}
header.style-1 .main-menu ul > li ul.sub-menu > li a {
  display: block;
  padding: 18px 15px;
  color: #fff;
  font-weight: 300;
  margin: 0 10px;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1;
  transition: all 0.4s ease-out 0s;
  position: relative;
}
header.style-1 .main-menu ul > li ul.sub-menu > li a:hover {
  color: var(--primary-color1);
}
header.style-1 .main-menu ul > li ul.sub-menu > li a.active {
  color: var(--primary-color1);
}
header.style-1 .main-menu ul > li ul.sub-menu > li .sub-menu {
  left: 101%;
  position: absolute;
  max-width: 230px;
  min-width: 215px;
  background: #0b0f14;
  top: 0;
}
@media only screen and (max-width: 1199px) {
  header.style-1 .main-menu ul > li ul.sub-menu > li .sub-menu {
    margin-left: 10px;
    position: unset;
    max-width: 230px;
    min-width: 215px;
    background: transparent;
    top: 0;
  }
}
header.style-1 .main-menu ul > li ul.sub-menu > li .sub-menu li i {
  display: block;
}
header.style-1 .main-menu ul > li ul.sub-menu > li:last-child {
  border-bottom: none;
}
header.style-1 .main-menu ul > li:hover > ul.sub-menu {
  display: block;
  transform: translateY(0);
}
header.style-1 .main-menu ul li.menu-item-has-children > i {
  display: block;
}
@media only screen and (max-width: 991px) {
  header.style-1 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
  }
  header.style-1 .main-menu.show-menu {
    transform: translateX(0);
  }
  header.style-1 .main-menu .mobile-menu-logo {
    text-align: left;
    padding-top: 20px;
    display: block;
    padding-bottom: 8px;
  }
  header.style-1 .main-menu ul {
    float: none;
    text-align: left;
    padding: 25px 10px 25px 0;
  }
  header.style-1 .main-menu ul li {
    display: block;
    padding: 0 5px;
  }
  header.style-1 .main-menu ul li.menu-item-has-children {
    position: relative;
  }
  header.style-1 .main-menu ul li i {
    display: block;
  }
  header.style-1 .main-menu ul li a {
    padding: 10px 0;
    display: block;
    font-weight: 500;
    font-size: 18px;
  }
  header.style-1 .main-menu ul li ul.sub-menu {
    position: static;
    min-width: 200px;
    background: 0 0;
    border: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none;
    transition: none;
    display: none;
    margin-top: 0 !important;
    transform: translateY(0px);
  }
  header.style-1 .main-menu ul li ul.sub-menu > li {
    border-bottom: 1px solid transparent;
  }
  header.style-1 .main-menu ul li ul.sub-menu > li a {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 500;
  }
  header.style-1 .main-menu ul li ul.sub-menu > li a:hover {
    color: var(--primary-color1);
    margin-left: 10px;
  }
  header.style-1 .main-menu ul li ul.sub-menu > li a.active {
    color: var(--primary-color1);
  }
  header.style-1 .main-menu ul li ul.sub-menu > li i {
    color: var(--text-primary);
    right: -13px;
  }
  header.style-1 .main-menu ul li .bi {
    top: 8px;
    font-size: 16px;
  }
  header.style-1 .mobile-menu {
    position: relative;
    top: 2px;
    padding: 0 5px;
    border-radius: 50%;
    display: inline-block;
  }
  header.style-1 .cross-btn {
    display: inline-block !important;
    position: relative;
    width: 30px !important;
    height: 22px !important;
    cursor: pointer;
    border: 3px solid transparent !important;
  }
  header.style-1 .cross-btn span {
    width: 100%;
    height: 2px;
    background: var(--primary-color1);
    display: block;
    position: absolute;
    right: 0;
    transition: all 0.3s;
  }
  header.style-1 .cross-btn .cross-top {
    top: 0;
  }
  header.style-1 .cross-btn .cross-middle {
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
  header.style-1 .cross-btn .cross-bottom {
    bottom: 0;
    width: 100%;
  }
  header.style-1 .cross-btn.h-active span.cross-top {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
  }
  header.style-1 .cross-btn.h-active span.cross-middle {
    transform: translateX(-30px);
    opacity: 0;
  }
  header.style-1 .cross-btn.h-active span.cross-bottom {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
  }
}

.header-style-2 {
  background-color: var(--bg-color2);
  padding: 30px 20px;
}
@media (max-width: 991px) {
  .header-style-2 {
    padding: 20px 20px;
  }
}
.header-style-2.sticky {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 99;
  -webkit-animation: smooth-header 0.65s linear;
          animation: smooth-header 0.65s linear;
  padding: 20px 20px;
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 767px) {
  .header-style-2 .logo img {
    max-width: 140px;
  }
}

.sidebar-button {
  position: relative;
  cursor: pointer;
  padding-right: 25px;
  z-index: 2;
}
.sidebar-button:hover .sidebar-icon-border {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.sidebar-button .sidebar-icon-border {
  position: absolute;
  top: -24px;
  left: -25px;
  -webkit-animation: rotate 10s linear infinite;
          animation: rotate 10s linear infinite;
  transition: all 0.5s ease;
}
.sidebar-button .sidebar-icon-border svg {
  fill: var(--white);
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sidebar-button .sidebar-icon {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  overflow: hidden;
}
.sidebar-button .sidebar-icon svg {
  fill: var(--white);
}

/*=======================================
   11. Banner-section
=======================================*/
.swiper-slide-active span {
  -webkit-animation: fadeInDown 1.7s;
          animation: fadeInDown 1.7s;
}

.swiper-slide-active h1 {
  -webkit-animation: fadeInDown 1.7s;
          animation: fadeInDown 1.7s;
}

.swiper-slide-active h2 {
  -webkit-animation: fadeInDown 1.7s;
          animation: fadeInDown 1.7s;
}

.swiper-slide-active p {
  -webkit-animation: fadeInUp 1.7s;
          animation: fadeInUp 1.7s;
}

.swiper-slide-active .eg-btn {
  -webkit-animation: fadeInUp 1.7s;
          animation: fadeInUp 1.7s;
}

.circle-text-common {
  max-width: 150px;
  max-height: 150px;
  z-index: 10;
}
.circle-text-common img {
  position: absolute;
  left: 51%;
  top: 44%;
  transform: translate(-50%, -50%);
}
.circle-text-common svg {
  position: absolute;
  left: 51%;
  top: 44%;
  transform: translate(-50%, -50%);
  max-width: unset;
}
.circle-text-common .circle-text {
  font-size: 0.85vw;
  font-weight: 400;
  color: var(--primary-color1);
  padding: 0px;
  -webkit-animation: rotate 12s linear infinite;
          animation: rotate 12s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.banner-section1 {
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  min-height: 450px;
}
.banner-section1 .marquee_text {
  position: absolute;
  left: 0;
  top: 150px;
  min-width: 100%;
  text-align: center;
}
.banner-section1 .marquee_text h2 {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 253px;
  line-height: 304px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 1;
}
@media (max-width: 767px) {
  .banner-section1 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.banner-section1 .banner-img {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  min-height: 420px;
}
@media (max-width: 991px) {
  .banner-section1 .banner-img .banner1-bg {
    min-height: 400px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
}
.banner-section1 .banner-img .circel-tex-area1 {
  position: absolute;
  right: 0px;
  bottom: -75px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .banner-section1 .banner-img .circel-tex-area1 {
    right: 52px;
    bottom: -75px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-section1 .banner-img .circel-tex-area1 {
    right: 52px;
    bottom: -75px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-section1 .banner-img .circel-tex-area1 {
    right: 55px;
    bottom: -100px;
  }
}
@media (max-width: 767px) {
  .banner-section1 .banner-img .circel-tex-area1 {
    right: 50%;
    transform: translateX(-50%);
    bottom: -60px;
  }
}

.background-text-bg {
  position: absolute;
  left: 0;
  top: 150px;
  min-width: 100%;
  text-align: center;
  opacity: 0.2;
  display: flex;
  align-items: center;
  -webkit-animation: CSSright 30s linear infinite running;
          animation: CSSright 30s linear infinite running;
}
.background-text-bg h2 {
  background: url("../images/bg/banner1-text.png");
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 253px;
  line-height: 304px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 1;
  min-width: 100%;
  display: block;
}
@-webkit-keyframes CSSright {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-120%, 0);
  }
}
@keyframes CSSright {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-120%, 0);
  }
}

.banner1-content {
  max-width: 805px;
  margin-right: auto;
  margin-left: 0;
  position: absolute;
  left: 60px;
  bottom: 115px;
  padding: 0px 20px;
}
@media (max-width: 991px) {
  .banner1-content {
    left: 10px;
    bottom: 50%;
    transform: translateY(50%);
  }
}
.banner1-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white-opacity);
  font-family: var(--font-prompt);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .banner1-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white-opacity);
  }
}

.banner2-content {
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .banner2-content {
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .banner2-content {
    padding-left: 15px;
  }
}
.banner2-content .section-title-lg h2 {
  font-size: 5rem;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-prompt);
  text-align: start;
  margin-bottom: 0px;
  line-height: 1.3;
  margin-top: -5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .banner2-content .section-title-lg h2 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner2-content .section-title-lg h2 {
    font-size: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner2-content .section-title-lg h2 {
    font-size: 5rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .banner2-content .section-title-lg h2 {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .banner2-content .section-title-lg h2 {
    font-size: 3rem;
  }
}
.banner2-content .section-title-lg h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  -webkit-text-fill-color: transparent;
}
.banner2-content .section-title-lg h2 img {
  vertical-align: baseline;
}
.banner2-content .section-title-lg strong {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.banner2-content .section-title-lg strong img,
.banner2-content .section-title-lg strong svg {
  padding: 0px 20px 0px 0px;
}
@media (max-width: 767px) {
  .banner2-content .section-title-lg strong img,
.banner2-content .section-title-lg strong svg {
    max-width: 40px;
    padding: 0px 7px 0px 0px;
  }
}

.banner-section2 {
  position: relative;
}
.banner-section2 .social-list2 {
  position: absolute;
  right: 50px;
  top: 80px;
}
@media (min-width: 576px) and (max-width: 768px) {
  .banner-section2 .social-list2 {
    right: 20px;
  }
}
@media (max-width: 576px) {
  .banner-section2 .social-list2 {
    display: none;
    visibility: none;
  }
}
.banner-section2 .banner-top {
  background-color: var(--bg-color);
  padding-top: 70px;
  padding-bottom: 70px;
}
.banner-section2 .banner-bottom {
  padding: 130px 0px;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .banner-section2 .banner-bottom {
    padding: 65px 0px;
  }
}
.banner-section2 .banner-bottom .circle-text-banner2 {
  position: absolute;
  top: -340px;
  right: 24%;
}
.banner-section2 .banner-bottom .circle-text-banner2 img {
  width: 60px;
  height: 60px;
}
@media (max-width: 991px) {
  .banner-section2 .banner-bottom .circle-text-banner2 {
    top: -60px;
  }
}
.banner-section2 .banner-bottom .background-text .js-marquee {
  margin-right: 20px !important;
}
.banner-section2 .banner-bottom .background-text h2 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-prompt);
  text-align: center;
  margin-bottom: 0px;
  line-height: 1.4;
  opacity: 0.25;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(155, 155, 155, 0.99);
  -webkit-text-fill-color: transparent;
}
.banner-section2 .banner-bottom .background-text h2 img,
.banner-section2 .banner-bottom .background-text h2 svg {
  vertical-align: middle;
  margin-top: -20px;
  height: 40px;
  width: 40px;
  margin-right: 20px;
}
.banner-section2 .banner-bottom .banner-scroll-down {
  position: absolute;
  overflow: hidden;
  top: -12px;
  left: 37%;
  cursor: pointer;
  transform: rotate(270deg);
  opacity: 0.5;
  -webkit-animation: down 1.5s linear infinite alternate;
          animation: down 1.5s linear infinite alternate;
}
.banner-section2 .banner-bottom .banner-scroll-down:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@-webkit-keyframes down {
  0% {
    transform: translateY(0) rotate(270deg);
  }
  100% {
    transform: translateY(20px) rotate(270deg);
  }
}
@keyframes down {
  0% {
    transform: translateY(0) rotate(270deg);
  }
  100% {
    transform: translateY(20px) rotate(270deg);
  }
}
.banner-section2 .banner-bottom .banner-scroll-down a {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: #acacac;
  font-family: var(--font-kanit);
  position: relative;
  display: inline-block;
}
.banner-section2 .banner-bottom .banner-scroll-down a::after {
  content: "";
  position: absolute;
  left: -50px;
  top: 11px;
  width: 40px;
  height: 1px;
  background: #acacac;
  display: block;
}
.banner-section2 .banner-bottom .banner2-image {
  position: absolute;
  top: -333px;
  right: 20%;
  border-radius: 280px;
  overflow: hidden;
  z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .banner-section2 .banner-bottom .banner2-image {
    top: -300px;
    right: 14%;
    position: absolute;
    border-radius: 280px;
    overflow: hidden;
    z-index: 9;
    max-width: 310px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-section2 .banner-bottom .banner2-image {
    position: absolute;
    top: -400px;
    right: 10%;
    border-radius: 280px;
    overflow: hidden;
    z-index: 9;
    max-width: 310px;
  }
}
@media (max-width: 991px) {
  .banner-section2 .banner-bottom .banner2-image {
    display: none;
    visibility: none;
  }
}

.slider-big {
  height: 80vh;
  width: 100%;
}
.slider-big .swiper-slide {
  position: relative;
  z-index: 1;
}
.slider-big .swiper-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(41, 43, 49, 0.7);
}
.slider-big .swiper-button-next {
  display: none;
  visibility: hidden;
}
.slider-big .swiper-button-prev {
  display: none;
  visibility: hidden;
}

.banner-section3 {
  padding-left: 10%;
  min-height: 600px;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-section3 {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .banner-section3 {
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .banner-section3 {
    min-height: unset;
  }
}
.banner-section3 .swiper-slide {
  position: relative;
}
.banner-section3 .swiper-slide .banner3-image-mobile {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.banner-section3 .swiper-slide .banner3-image-mobile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
}
.banner-section3 .mySwiper2 {
  width: 100%;
}
.banner-section3 .mySwiper2 .swiper-slide {
  position: relative;
  z-index: 1;
}
.banner-section3 .mySwiper2 .swiper-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.banner-section3 .mySwiper {
  box-sizing: border-box;
  padding: 10px 0;
}
.banner-section3 .mySwiper .swiper-wrapper .swiper-slide img {
  height: 125px;
  width: 215px;
}
.banner-section3 .mySwiper.smalll-image {
  width: 215px;
  margin: unset;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .banner-section3 .mySwiper.smalll-image {
    width: 120px;
  }
}
@media (max-width: 1399px) {
  .banner-section3 .mySwiper.smalll-image {
    width: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-section3 .mySwiper.smalll-image {
    width: 120px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-section3 .mySwiper.smalll-image {
    width: 90px;
    background-color: transparent;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .banner-section3 .mySwiper.smalll-image {
    width: 90px;
    background-color: transparent;
  }
}
.banner-section3 .mySwiper.smalll-image::after {
  content: url("../images/icons/banner3-vector.svg");
  position: absolute;
  left: -220px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: auto;
  z-index: 2;
}
@media (max-width: 991px) {
  .banner-section3 .mySwiper.smalll-image::after {
    display: none;
    visibility: hidden;
  }
}
.banner-section3 .mySwiper .swiper-slide {
  width: 215px !important;
  height: 125px !important;
}

.banner3-content {
  padding: 170px 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner3-content {
    padding: 120px 10px 120px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner3-content {
    padding: 120px 60px 120px 60px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .banner3-content {
    padding: 120px 120px 120px 60px;
  }
}
@media (max-width: 576px) {
  .banner3-content {
    padding: 90px 10px;
    text-align: center;
  }
}
.banner3-content h2 {
  font-size: 3.9rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-prompt);
  margin-bottom: 55px;
  text-transform: capitalize;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .banner3-content h2 {
    font-size: 2.9rem;
    font-weight: 500;
    color: var(--white);
  }
}

.banner3-image {
  padding: 80px 0px;
  margin-left: -270px;
  position: relative;
  display: block;
}
.banner3-image .circel-tex-area3 {
  max-width: 150px;
  max-height: 150px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.banner3-image .circel-tex-area2 {
  position: absolute;
  bottom: 10px;
  left: 98%;
}
@media (max-width: 1399px) {
  .banner3-image {
    margin-left: -350px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner3-image {
    margin-left: -400px;
  }
}

.social-list2 {
  display: flex;
  justify-content: start;
  align-content: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-list2 li {
  position: relative;
}
.social-list2 li:first-child::after {
  content: unset;
}
.social-list2 li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: -14px;
  background-color: rgba(153, 153, 153, 0.4);
  height: 3px;
  width: 3px;
  border-radius: 50%;
}
.social-list2 li a {
  color: var(--white);
}
.social-list2 li .bx {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  background: transparent;
  transition: all 0.42s ease-in-out;
}
.social-list2 li .bx:hover {
  color: var(--primary-color1);
}

.circle-text-common2 {
  max-width: 150px;
  max-height: 150px;
  z-index: 10;
}
.circle-text-common2 img {
  position: absolute;
  left: 51%;
  top: 44%;
  transform: translate(-50%, -50%);
}
.circle-text-common2 > svg {
  position: absolute !important;
  left: 51% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
}
.circle-text-common2 .circle-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-color1);
  padding: 0px;
  -webkit-animation: rotate 12s linear infinite;
          animation: rotate 12s linear infinite;
  position: absolute;
  top: -30px;
  left: 34px;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.circel-tex-area2 {
  max-width: 150px;
  max-height: 150px;
  position: absolute;
  bottom: -60px;
  left: 0;
  z-index: 10;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .circel-tex-area2 {
    top: -446px;
    right: 19%;
  }
}
.circel-tex-area2 img {
  position: absolute;
  left: 51%;
  top: 44%;
  transform: translate(-50%, -50%);
}
.circel-tex-area2 svg {
  position: absolute;
  left: 51%;
  top: 44%;
  transform: translate(-50%, -50%);
}
.circel-tex-area2 .circle-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  padding: 0px;
  -webkit-animation: rotate 12s linear infinite;
          animation: rotate 12s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.circel-tex-area3 {
  max-width: 150px;
  max-height: 150px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/*=======================================
   11. about-me-section
=======================================*/
.about-me-section p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
  text-align: center;
  max-width: 64%;
  margin: 45px auto 0px auto;
}

@media screen and (max-width: 991px) {
  .about-me-section p {
    max-width: 90%;
  }
}
/*=======================================
   11. collection-section
=======================================*/
.latest-collection-setion3 {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.collection-section1 .swiper-wrapper {
  padding: 20px 0px;
}
.collection-section1 .swiper-slide {
  transform: scale(0.8);
  opacity: 0.5;
}
@media (max-width: 767px) {
  .collection-section1 .swiper-slide {
    padding-left: 20px;
    padding-right: 20px;
    transform: scale(1);
  }
}
.collection-section1 .swiper-slide-prev,
.collection-section1 .swiper-slide-next {
  transform: scale(0.9);
  opacity: 0.8;
}
@media (max-width: 767px) {
  .collection-section1 .swiper-slide-prev,
.collection-section1 .swiper-slide-next {
    transform: scale(1);
  }
}
.collection-section1 .swiper-slide-active {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
  opacity: 1;
}
@media (max-width: 991px) {
  .collection-section1 .swiper-slide-active {
    transform: scale(1);
  }
}
.collection-section1 .swiper-slide-active .collection-single1 {
  padding: 12px;
  border: 1px solid;
  border-color: rgba(var(--primary-color1), 0.5);
}

.collection-single1 {
  transform: skewX(2.7deg);
}
.collection-single1 img {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection-single2 {
  position: relative;
  padding: 10px 10px 0px 10px;
  border: 1px solid var(--border-color);
}
.collection-single2 .collection2-image {
  overflow: hidden;
}
.collection-single2 .collection2-title {
  padding: 15px 0;
  text-align: center;
}
.collection-single2 .collection2-title p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.collection-single2.direction-hover {
  background-color: transparent;
}

.text-circle-move {
  position: relative;
  width: var(--d-outer);
  height: var(--d-outer);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-circle-move .logo {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url("../images/icons/star.svg");
  background-size: cover;
  border-radius: 50%;
  filter: contrast(1.5);
}
.text-circle-move .text {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: rotateText 10s linear infinite;
          animation: rotateText 10s linear infinite;
}
@-webkit-keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.text-circle-move .text p span {
  position: absolute;
  left: 50%;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-Jost);
  transform-origin: 0 var(--radius);
  color: var(--white);
  letter-spacing: 3px;
}

.excellent-collect-single {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 10px 10px 15px 10px;
}
.excellent-collect-single .excellent-image {
  margin-bottom: 15px;
}
.excellent-collect-single .excellent-image img {
  width: 100% !important;
}
.excellent-collect-single .excellent-content {
  text-align: center;
}
.excellent-collect-single .excellent-content p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-Jost);
  margin-bottom: 0px;
}
.excellent-collect-single.direction-hover {
  background: transparent;
}

.excellent-collection-section .direction-hover {
  margin: 0;
}
.excellent-collection-section .row .col:nth-child(odd) {
  margin-top: -10px;
}
@media (max-width: 991px) {
  .excellent-collection-section .row .col:nth-child(odd) {
    margin-top: 20px;
  }
}

.latest-collection-section {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.latest-collection-section::after {
  content: "";
  position: absolute;
  bottom: 135px;
  width: 100%;
  height: 1px;
  background: rgb(37, 37, 37);
}
@media (max-width: 1199px) {
  .latest-collection-section::after {
    display: none;
    visibility: hidden;
  }
}
.latest-collection-section .swiper-slide {
  padding-left: 12px;
  padding-right: 12px;
}

.latest-singl2 {
  position: relative;
  padding: 15px;
}
.latest-singl2 img {
  width: 100%;
  transform: skewX(3deg);
}
.latest-singl2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  border: 1px solid;
  border-color: rgba(var(--primary-color1), 0.5);
  transform: skewX(3deg);
}
@media (max-width: 576px) {
  .latest-singl2::before {
    transform: skewX(2deg);
  }
}
.latest-singl2.sibling-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  border: 1px solid;
  border-color: rgba(var(--primary-color1), 0.5);
  transform: skewX(-3deg);
}
@media (max-width: 576px) {
  .latest-singl2.sibling-2::before {
    transform: skewX(-2deg);
  }
}

.latest-collection-single1 {
  text-align: center;
  position: relative;
  text-align: center;
}
.latest-collection-single1:hover .latest-collection-image .latest-image-overlay {
  transform: scale(1) skewX(2.5deg);
  opacity: 1;
}
.latest-collection-single1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  border: 1px solid;
  border-color: var(--primary-color1);
  opacity: 0.5;
  transform: skewX(2.5deg);
}
.latest-collection-single1 .latest-collection-image {
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  z-index: 2;
}
.latest-collection-single1 .latest-collection-image .latest-image-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: -2.1px;
  top: 0;
  z-index: 1;
  transform: scale(0.6) skewX(2.5deg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.latest-collection-single1 .latest-collection-image .latest-image-overlay a {
  z-index: 2;
  position: relative;
  line-height: 25px;
}
.latest-collection-single1 .latest-collection-image img {
  width: 100% !important;
  margin: auto;
  transform: skewX(3deg);
}
.latest-collection-single1 .latest-collection-title {
  padding: 15px;
  position: relative;
  z-index: 3;
}
.latest-collection-single1 .latest-collection-title a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-Jost);
  display: inline-block;
  transition: all 0.45s ease;
}
.latest-collection-single1 .latest-collection-title:hover a {
  color: var(--primary-color1);
}
.latest-collection-single1 span.latest-collection-serial {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-Jost);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  border: 1px solid var(--primary-color1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-animation: unset;
          animation: unset;
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-collection-single1 span.latest-collection-serial {
    bottom: -45px;
  }
}
@media (max-width: 767px) {
  .latest-collection-single1 span.latest-collection-serial {
    bottom: -45px;
  }
}

/*=======================================
   11. features-section
=======================================*/
.features-section P {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
}

.feature-item {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 991px) {
  .feature-item {
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
  }
}
.feature-item img,
.feature-item svg {
  margin-bottom: 30px;
  transition: all 0.55s ease-in-out;
}
.feature-item h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-Jost);
  margin-bottom: 12px;
}
.feature-item P {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
  margin-bottom: 0px;
}
.feature-item:hover img,
.feature-item:hover svg {
  transform: rotateY(180deg);
}
@media (max-width: 767px) {
  .feature-item {
    text-align: center;
  }
}

.feature-image {
  position: relative;
  transform: rotate(0deg);
  min-height: 575px;
  height: 100%;
}
.feature-image::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -30px;
  width: 100%;
  height: 100%;
  min-height: 575px;
  border: 1px solid var(--primary-color1);
  transform: skewX(2.7deg);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .feature-image::before {
    min-height: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .feature-image::before {
    min-height: 420px;
  }
}
.feature-image::after {
  content: url("../images/icons/star.svg");
  position: absolute;
  top: -66px;
  left: -78px;
}
.feature-image .simpleParallax img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(0deg) !important;
}

.feature3-title {
  font-size: 3.125rem;
  font-weight: 500;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-prompt);
}
@media (max-width: 991px) {
  .feature3-title {
    margin-bottom: 60px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .feature3-title {
    font-size: 2.5rem;
    text-align: center;
  }
}

.feature3-image {
  position: relative;
  z-index: 1;
}
.feature3-image .feature3-ellipse {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.feature3-image .feature3-ellipse img,
.feature3-image .feature3-ellipse svg {
  height: 100%;
  max-width: 350px;
}

.trending-collection {
  padding-left: 20px;
  padding-right: 20px;
}
.trending-collection .swiper {
  margin: -12px;
  padding: 12px;
}
.trending-collection .swiper-slide {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .trending-collection .swiper-slide {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.trending-collection .swiper-slide-active {
  opacity: 1;
  transition: all 0.5s ease;
}
.trending-collection .swiper-slide-active .trending-single1 {
  transition: all 0.55s ease-in-out;
  border: 1px solid var(--primary-color1);
  box-sizing: border-box;
}
.trending-collection .swiper-slide-active .trending-single1 .trending-image {
  position: relative;
}
.trending-collection .swiper-slide-active .trending-single1 .trending-image::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  border-top: 15px solid var(--bg-color);
  border-left: 15px solid var(--bg-color);
  border-right: 15px solid var(--bg-color);
  z-index: 99;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.trending-single1 {
  transform: skewX(2.7deg);
  border: 1px solid;
  border-color: rgba(0, 139, 94, 0.5);
  text-align: center;
}
.trending-single1 img {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.trending-single1 .trending-title {
  padding: 15px;
}
.trending-single1 .trending-title span {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-Jost);
  display: inline-block;
}

.roadmap-section {
  padding-left: 5%;
  padding-right: 5%;
}
@media (max-width: 767px) {
  .roadmap-section {
    padding-left: 0;
    padding-right: 0;
  }
}
.roadmap-section .swiper-button-next {
  display: none;
  visibility: hidden;
}
.roadmap-section .swiper-button-prev {
  display: none;
  visibility: hidden;
}
.roadmap-section .slider-arrows {
  padding: 4px;
}
.roadmap-section .slider-arrows .roadmap-prev1 {
  padding: 4px 25px;
  position: relative;
}
.roadmap-section .slider-arrows .roadmap-prev1::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%) skewX(-8deg);
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color1);
  opacity: 0.3;
}
.roadmap-section .slider-arrows .roadmap-next1 {
  padding: 4px 25px;
  position: relative;
}
.roadmap-section .slider-arrows .roadmap-next1::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%) skewX(8deg);
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color1);
  opacity: 0.3;
}
.roadmap-section .swiper-roadmap-big {
  height: auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .roadmap-section .swiper-roadmap-big {
    margin-left: 12px;
  }
}
@media (max-width: 991px) {
  .roadmap-section .swiper-roadmap-big {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .roadmap-section .swiper-roadmap-big {
    margin-left: 0;
  }
}
.roadmap-section .swiper-roadmap-small {
  position: absolute;
  left: -270px;
  height: 90px;
  top: 50%;
  box-sizing: border-box;
  padding: 10px 10px;
  width: 450px;
  transform: rotate(87deg) translate(-6%, -50%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .roadmap-section .swiper-roadmap-small {
    transform: rotate(90deg) translate(-6%, -50%);
  }
}
@media (max-width: 767px) {
  .roadmap-section .swiper-roadmap-small {
    transform: rotate(0deg) translateX(-50%);
    left: 50%;
    top: 100%;
  }
}
.roadmap-section .swiper-roadmap-small::after {
  content: "";
  height: 1px;
  width: 100%;
  border: 1px dashed #383838;
  position: absolute;
  top: 21px;
  right: 0;
  z-index: -1;
}
.roadmap-section .swiper-roadmap-small .pagenation-stat {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.roadmap-section .swiper-roadmap-small .pagenation-stat svg {
  z-index: 9;
  fill: var(--primary-color1);
  stroke: #000;
  opacity: 0.3;
}
.roadmap-section .swiper-roadmap-small .swiper-slide-active .pagenation-stat svg {
  fill: var(--primary-color1);
  opacity: 0.7;
}
.roadmap-section .swiper-roadmap-small .swiper-slide-active button.slider-button {
  color: var(--white);
}
.roadmap-section .swiper-roadmap-small .swiper-slide-active button.slider-button::before {
  background: var(--primary-color1);
  z-index: -1;
}
.roadmap-section .swiper-roadmap-small .swiper-slide {
  width: 33%;
  height: 100%;
  opacity: 1;
}
.roadmap-section .swiper-roadmap-small .swiper-slide-thumb-active {
  opacity: 1;
}
.roadmap-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.roadmap-section3 .swiper {
  padding: 12px;
  margin: -12px;
}
.roadmap-section3 .swiper-button-next {
  display: none;
  visibility: hidden;
}
.roadmap-section3 .swiper-button-prev {
  display: none;
  visibility: hidden;
}
.roadmap-section3 .swiper-roadmap3-big {
  height: auto;
  width: 100%;
}
.roadmap-section3 .swiper-roadmap3-small {
  padding: 0px 7px;
  height: 65px;
  width: 100%;
  max-width: 770px;
  box-sizing: border-box;
  margin-left: 0px;
}
.roadmap-section3 .swiper-roadmap3-small .slider-button {
  width: 100%;
}
.roadmap-section3 .swiper-roadmap3-small .swiper-slide-active button.slider-button {
  color: var(--white);
}
.roadmap-section3 .swiper-roadmap3-small .swiper-slide-active button.slider-button::before {
  background: var(--primary-color1);
  z-index: -1;
}
.roadmap-section3 .swiper-roadmap3-small .swiper-slide {
  width: 33%;
  height: 100%;
  opacity: 1;
}
.roadmap-section3 .swiper-roadmap3-small .swiper-slide-thumb-active {
  opacity: 1;
}
.roadmap-section3 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.roadmap-single {
  padding: 50px 70px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .roadmap-single {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .roadmap-single {
    padding: 30px 20px;
  }
}
.roadmap-single::after {
  content: "";
  width: 96%;
  height: 98%;
  position: absolute;
  top: 0;
  left: 50%;
  border: 1px solid var(--border-color);
  transform: skewX(3deg) translateX(-50%);
  z-index: -1;
}
@media (max-width: 991px) {
  .roadmap-single::after {
    transform: skewX(0deg) translateX(-50%);
    width: 100%;
  }
}
@media (max-width: 576px) {
  .roadmap-single::after {
    content: unset;
  }
}
.roadmap-single .roadmap-content {
  padding-right: 20px;
}
.roadmap-single .roadmap-content > span {
  display: inline-block;
  padding: 10px 20px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color1);
  font-family: var(--font-Jost);
  margin: 0 auto 15px auto;
}
.roadmap-single .roadmap-content > span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%) skewX(-10deg);
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color1);
  opacity: 0.3;
}
.roadmap-single .roadmap-content h3 {
  font-size: 2.188rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-prompt);
  margin-bottom: 20px;
}
.roadmap-single .roadmap-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
  margin-bottom: 45px;
}
.roadmap-single .roadmap-image {
  min-width: 620px;
}
@media (max-width: 1199px) {
  .roadmap-single .roadmap-image {
    display: none;
    visibility: none;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .roadmap-single .roadmap-image {
    min-width: 370px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .roadmap-single .roadmap-image {
    min-width: 300px;
  }
}

.roadmap3-single {
  border: 1px solid var(--primary-color1-light3);
  padding: 30px;
}
@media (max-width: 576px) {
  .roadmap3-single {
    padding: 25px 20px;
  }
}
.roadmap3-single .roadmap3-image {
  height: 300px;
  margin-bottom: 20px;
}
.roadmap3-single .roadmap3-image img {
  height: 300px;
}
.roadmap3-single .roadmap3-content .roadmap3-date {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color1);
  font-family: var(--font-Jost);
  margin-bottom: 10px;
}
.roadmap3-single .roadmap3-content h3 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-kanit);
  margin-bottom: 20px;
}
.roadmap3-single .roadmap3-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
}
.roadmap3-single .roadmap3-img-group {
  margin-bottom: 50px;
}
.roadmap3-single .roadmap3-img-group img {
  height: 300px;
}

.roadmap3-list {
  list-style: none;
  margin: 0 0 0 50px;
  padding: 0;
}
@media (max-width: 991px) {
  .roadmap3-list {
    margin-left: 0;
    margin-top: 20px;
  }
}
.roadmap3-list li {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-light);
  font-family: var(--font-kanit);
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.roadmap3-list li::before {
  content: url("../images/icons/check-icon.svg");
  position: absolute;
  left: 0;
  top: 3px;
  display: inline-block;
  width: 16px;
  height: 14px;
}
.roadmap3-list li:last-child {
  margin-bottom: 0px;
}
.roadmap3-list li svg {
  fill: var(--primary-color1);
  margin-right: 10px;
}

ol.roadmap-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 25px;
  counter-reset: li;
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.roadmap-list li {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
  min-width: 280px;
  padding-left: 40px;
}
ol.roadmap-list li:before {
  position: absolute;
  top: -2px;
  left: 0px;
  border: 1px solid var(--primary-color1);
  background-color: transparent;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color1);
  content: counter(li);
  counter-increment: li;
}

button.slider-button {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-Jost);
  outline: none;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  transition: all 0.45s ease-in-out;
  text-transform: capitalize;
  cursor: unset;
  position: relative;
  background-color: transparent;
  transform: skew(1deg);
  z-index: 1;
  padding: 10px 15px;
}
button.slider-button::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  border: 1px solid var(--primary-color1);
  transform: skewX(-20px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(15deg);
  transition: all 0.45s ease-in-out;
  z-index: -1;
}
button.slider-button:hover {
  color: var(--white);
}
button.slider-button:hover::before {
  background-color: var(--primary-color1);
  z-index: -1;
}

.roadmap-section2 {
  padding: 0px 175px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .roadmap-section2 {
    padding: 0px 160px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .roadmap-section2 {
    padding: 0px 40px;
  }
}
@media (max-width: 991px) {
  .roadmap-section2 {
    padding: 0px 20px;
  }
}
.roadmap-section2 .roadmap-prev2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -160px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .roadmap-section2 .roadmap-prev2 {
    left: -130px;
  }
}
.roadmap-section2 .roadmap-next2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -160px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .roadmap-section2 .roadmap-next2 {
    right: -130px;
  }
}
.roadmap-section2 .swiper-slide-active .roadmap-single-alpha .raodmap-image img,
.roadmap-section2 .swiper-slide-active .roadmap-single-beta .raodmap-image img {
  -webkit-animation: jump 3s linear infinite alternate;
          animation: jump 3s linear infinite alternate;
}
@-webkit-keyframes jump {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 767px) {
  .roadmap-single-alpha {
    text-align: center;
  }
}
.roadmap-single-alpha .raodmap-image {
  margin-bottom: 25px;
}
.roadmap-single-alpha .roadmap-content span {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color1);
  font-family: var(--font-Jost);
  margin-bottom: 20px;
}
.roadmap-single-alpha .roadmap-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-prompt);
  margin-bottom: 10px;
  line-height: 1.35;
}
.roadmap-single-alpha .roadmap-content P {
  font-family: var(--font-Jost);
  color: var(--text-light);
}

.roadmap-single-beta {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .roadmap-single-beta {
    margin-top: 0px;
    text-align: center;
    padding-top: 0px;
  }
}
.roadmap-single-beta .roadmap-content {
  margin-bottom: 20px;
}
.roadmap-single-beta .roadmap-content span {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color1);
  font-family: var(--font-Jost);
  margin-bottom: 20px;
}
.roadmap-single-beta .roadmap-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-prompt);
  margin-bottom: 10px;
  line-height: 1.35;
}
.roadmap-single-beta .roadmap-content P {
  font-family: var(--font-Jost);
  color: var(--text-light);
}

.testimonial-section {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.testimonial-section .testimonial-image {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .testimonial-section .testimonial-image img {
    max-width: 500px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section .testimonial-image img {
    max-width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section .testimonial-image img {
    max-width: 420px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-image img {
    opacity: 0.15;
  }
}

.testimonial1-single p {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--font-Jost);
  font-style: italic;
  color: var(--text-light2);
}
.testimonial1-single .testimonial-content {
  margin-bottom: 40px;
}
.testimonial1-single .testimonial-author h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--font-prompt);
  color: var(--white);
}
.testimonial1-single .testimonial-author p {
  font-size: 18px;
  font-weight: 400;
  color: var(--font-Jost);
  color: var(--text-light2);
  font-style: normal;
  margin-bottom: 0px;
}

.testimonial3-single {
  width: 100%;
  max-width: 745px;
  margin-left: 0px;
  margin-right: auto;
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .testimonial3-single {
    padding-top: 0;
  }
}
.testimonial3-single p {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--font-Jost);
  font-style: italic;
  color: var(--text-light2);
}
.testimonial3-single .testimonial-content {
  margin-bottom: 40px;
}
.testimonial3-single .testimonial-author {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.testimonial3-single .testimonial-author .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.testimonial3-single .testimonial-author .author-image img {
  width: 100%;
  height: 100%;
}
.testimonial3-single .testimonial-author .author-designation h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--font-prompt);
  color: var(--white);
}
.testimonial3-single .testimonial-author .author-designation p {
  font-size: 18px;
  font-weight: 400;
  color: var(--font-Jost);
  color: var(--text-light2);
  font-style: normal;
  margin-bottom: 0px;
}

.arrows-style-1 .swiper-prev-arrow, .arrows-style-1 .swiper-next-arrow {
  position: relative;
  width: 35px;
  height: 30px;
  line-height: 30px;
}
.arrows-style-1 .swiper-prev-arrow .bi, .arrows-style-1 .swiper-next-arrow .bi {
  color: var(--primary-color1);
}
.arrows-style-1 .swiper-prev-arrow::before, .arrows-style-1 .swiper-next-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color1);
  transform: skewX(4deg);
  transition: all 0.45s ease;
}
.arrows-style-1 .swiper-prev-arrow:hover::before, .arrows-style-1 .swiper-next-arrow:hover::before {
  transform: skewX(-4deg);
}
.arrows-style-2 .swiper-prev-arrow, .arrows-style-2 .swiper-next-arrow {
  position: relative;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  border: 1px solid var(--primary-color1);
  text-align: center;
  cursor: pointer;
}
.arrows-style-2 .swiper-prev-arrow img, .arrows-style-2 .swiper-next-arrow img {
  transition: all 0.45s ease;
}
.arrows-style-2 .swiper-prev-arrow:hover img, .arrows-style-2 .swiper-next-arrow:hover img {
  transform: scale(1.3);
}
.arrow-style-3 .swiper-prev-arrow, .arrow-style-3 .swiper-next-arrow {
  color: var(--white);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.45s ease;
}
.arrow-style-3 .swiper-prev-arrow img, .arrow-style-3 .swiper-next-arrow img,
.arrow-style-3 .swiper-prev-arrow svg,
.arrow-style-3 .swiper-next-arrow svg {
  transition: all 0.45s ease;
  margin-top: -3px;
}
.arrow-style-3 .swiper-prev-arrow:hover, .arrow-style-3 .swiper-next-arrow:hover {
  opacity: 1;
}
.arrow-style-3 .swiper-prev-arrow:hover img, .arrow-style-3 .swiper-next-arrow:hover img,
.arrow-style-3 .swiper-prev-arrow:hover svg,
.arrow-style-3 .swiper-next-arrow:hover svg {
  transform: scale(1.3) translateX(15px);
}
.arrow-style-3 .swiper-next-arrow:hover {
  opacity: 1;
}
.arrow-style-3 .swiper-next-arrow:hover img,
.arrow-style-3 .swiper-next-arrow:hover svg {
  transform: scale(1.3) translateX(-15px);
}

.swiper-pagination {
  position: absolute !important;
  bottom: 50% !important;
  text-align: center;
  transition: 300ms opacity;
  transform: translate(50%) !important;
  z-index: 10;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 98%;
  width: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 97%;
  }
}
@media (max-width: 991px) {
  .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 50%;
  }
}

.swiper-pagination-bullets {
  display: flex;
  flex-direction: column;
  width: 30px;
}
@media (max-width: 991px) {
  .swiper-pagination-bullets {
    flex-direction: row;
    width: 100%;
  }
}
.swiper-pagination-bullets span.swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
  height: 14px;
  min-width: 14px;
  background: transparent;
  border: 1px solid var(--text-light);
  opacity: 1;
  transition: 0.3s;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 1px solid var(--primary-color1) !important;
  position: relative;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--primary-color1);
  transition: 0.3s;
}

.testimonial1-slider .slider-arrows {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}

.testimonial-single2 {
  position: relative;
}
.testimonial-single2 .testimonial-content {
  padding-left: 150px;
}
@media (max-width: 991px) {
  .testimonial-single2 .testimonial-content {
    padding-left: 0px;
  }
}
.testimonial-single2 .testimonial-content .testi-quate {
  margin-bottom: 25px;
}
.testimonial-single2 .testimonial-content p {
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--white);
  font-family: var(--font-Jost);
}
@media (max-width: 767px) {
  .testimonial-single2 .testimonial-content p {
    font-size: 1.5rem;
  }
}
.testimonial-single2 .testimonial-author {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  transform: translateX(-145px);
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .testimonial-single2 .testimonial-author {
    transform: translateX(0);
    gap: 15px;
  }
}
.testimonial-single2 .testimonial-author .author-image img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .testimonial-single2 .testimonial-author .author-image img {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .testimonial-single2 .testimonial-author .author-image img {
    width: 70px;
    height: 70px;
  }
}
.testimonial-single2 .testimonial-author .author-details h5 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-light);
  font-family: var(--font-prompt);
}
.testimonial-single2 .testimonial-author .author-details p {
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color1);
}

.testimonial-section2 {
  padding-left: 20px;
  padding-right: 20px;
}
.testimonial-section2 .testimonial-slider2 {
  margin-left: -150px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section2 .testimonial-slider2 {
    margin-left: -90px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section2 .testimonial-slider2 {
    margin-left: -30px;
  }
}
@media (max-width: 991px) {
  .testimonial-section2 .testimonial-slider2 {
    margin-left: 0px;
  }
}
.testimonial-section2 .testi-arrow-2 {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: 9;
}
@media (max-width: 767px) {
  .testimonial-section2 .testi-arrow-2 {
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-section2 .testi-arrow-2 {
    display: none;
    visibility: hidden;
  }
}

.testimonial-section3 {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  z-index: 1;
}
.testimonial-section3 .mbb-120 {
  margin-bottom: 120px;
}
@media (max-width: 1199px) {
  .testimonial-section3 .mbb-120 {
    margin-bottom: 0;
  }
}
.testimonial-section3 .video-single {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -248px;
}
@media (max-width: 1199px) {
  .testimonial-section3 .video-single {
    position: relative;
    left: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media (max-width: 576px) {
  .testimonial-section3 .video-single img {
    width: 100%;
  }
}

.read-more-btn {
  font-size: 17px;
  font-weight: 400;
  color: var(--primary-color1);
  font-family: var(--font-Jost);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.read-more-btn svg {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.read-more-btn:hover {
  color: var(--primary-color1);
}
.read-more-btn:hover svg {
  margin-left: -20px;
}

@media (max-width: 991px) {
  .blog-single1-alpha {
    margin-top: 40px;
  }
}
.blog-single1-alpha .blog-single1-image {
  margin-bottom: 20px;
}
.blog-single1-alpha .blog-single1-content {
  text-align: left;
}

.blog-single1-beta {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-single1-beta {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-single1-beta {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .blog-single1-beta {
    flex-wrap: wrap;
  }
}
.blog-single1-beta .blog-single1-image {
  max-width: 365px;
  min-width: 365px;
  width: 100%;
}
@media (max-width: 1399px) {
  .blog-single1-beta .blog-single1-image {
    max-width: 290px;
    min-width: 290px;
  }
}
@media (max-width: 1199px) {
  .blog-single1-beta .blog-single1-image {
    max-width: 100%;
    width: unset;
    height: 100%;
    min-width: unset;
  }
}
.blog-single1-beta .blog-single1-content {
  position: relative;
}
.blog-single1-beta .blog-single1-content::after {
  content: url("../images/icons/blog-star2.svg");
  position: absolute;
  top: -120px;
  left: 34%;
  transform: translateX(-60%);
}
@media (max-width: 1199px) {
  .blog-single1-beta .blog-single1-content::after {
    display: none;
    visibility: hidden;
  }
}

.blog-single1-gamma {
  margin-bottom: 60px;
}
.blog-single1-gamma .blog-single1-content {
  padding-left: 10%;
  position: relative;
}
@media (max-width: 1199px) {
  .blog-single1-gamma .blog-single1-content {
    padding-left: 0px;
  }
}
.blog-single1-gamma .blog-single1-content::after {
  content: url("../images/icons/blog-star1.svg");
  position: absolute;
  left: 0;
  top: 33%;
}
@media (max-width: 1199px) {
  .blog-single1-gamma .blog-single1-content::after {
    display: none;
    visibility: hidden;
  }
}

.blog-single1-content .blog-meta-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  gap: 8px;
}
.blog-single1-content .blog-meta-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  position: relative;
  padding-left: 22px;
}
.blog-single1-content .blog-meta-list li::before {
  content: url("../images/icons/star-sm.svg");
  position: absolute;
  left: 0px;
  top: 3px;
}
.blog-single1-content .blog-meta-list li:first-child {
  padding-left: 0px;
}
.blog-single1-content .blog-meta-list li:first-child::before {
  content: unset;
}
.blog-single1-content h3 {
  margin-bottom: 20px;
}
.blog-single1-content h3 a {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-prompt);
  line-height: 1.4;
  transition: all 0.45s ease-in-out;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .blog-single1-content h3 a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
  }
}

.blog-single2 {
  position: relative;
}
.blog-single2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  border: 1px solid;
  border-color: var(--primary-color1);
  opacity: 0.3;
}
.blog-single2 .blog-image {
  position: relative;
  z-index: 2;
  padding: 10px 0px 0px 0px;
  transform: skewX(-3deg);
}
.blog-single2 .blog-image img {
  width: 100% !important;
  margin: auto;
  transform: skewX(3deg);
  padding-right: 9px;
  padding-left: 9px;
}
.blog-single2 .blog-content {
  padding: 30px 20px;
  position: relative;
  z-index: 3;
}
@media (max-width: 576px) {
  .blog-single2 .blog-content {
    padding: 30px 25px;
  }
}
.blog-single2 .blog-content span.date {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light2);
  position: relative;
  padding: 5px 15px;
  margin-bottom: 30px;
  background-color: rgba(0, 139, 94, 0.2);
}
.blog-single2 .blog-content h4 {
  margin-bottom: 0px;
}
.blog-single2 .blog-content h4 a {
  font-size: 1.563rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-prompt);
  line-height: 1.4;
}
@media (max-width: 576px) {
  .blog-single2 .blog-content h4 a {
    font-size: 1.25rem;
  }
}

.blog-single3-alpha {
  min-height: 430px;
  padding: 25px 35px 33px 35px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 576px) {
  .blog-single3-alpha {
    padding: 25px 25px;
  }
}
@media (max-width: 991px) {
  .blog-single3-alpha {
    margin-bottom: 50px;
  }
}
.blog-single3-alpha::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: var(--dark-overlay);
  width: 100%;
  height: 100%;
  display: block;
}
.blog-single3-alpha img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog-single3-alpha .blog-single3-content {
  position: relative;
  z-index: 3;
}
.blog-single3-alpha .blog-single3-content h3 {
  margin-bottom: 15px;
}
.blog-single3-alpha .blog-single3-content h3 a {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-kanit);
  line-height: 1.45;
}
.blog-single3-alpha .blog-single3-date {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-Jost);
  z-index: 3;
  min-width: 90px;
  height: auto;
  border: 1px solid var(--border-color);
  position: relative;
  padding: 5px 10px;
  transform: skewX(3deg);
  border-radius: 5px;
  text-align: center;
  background-color: var(--dark-overlay);
  margin-top: -145px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-single3-alpha .blog-single3-date {
    margin-top: -65px;
  }
}
@media (max-width: 991px) {
  .blog-single3-alpha .blog-single3-date {
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .blog-single3-alpha .blog-single3-date {
    margin-top: -160px;
  }
}
@media (max-width: 576px) {
  .blog-single3-alpha .blog-single3-date {
    margin-top: -130px;
  }
}
.blog-single3-alpha .blog-single3-date span {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-color1);
  font-family: var(--font-kanit);
}

.blog-single3-beta {
  border: 1px solid;
  border-color: rgba(0, 139, 94, 0.5);
  padding: 25px 15px 30px 15px;
  margin-bottom: 1px;
}
.blog-single3-beta .blog-single3-meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.blog-single3-beta .blog-single3-meta .blog-author, .blog-single3-beta .blog-single3-meta .blog-date {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
}
.blog-single3-beta .blog-single3-content h4 {
  margin-bottom: 20px;
}
.blog-single3-beta .blog-single3-content h4 a {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-kanit);
  line-height: 1.45;
}
.blog-single3-beta .blog-single3-content P {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 30px;
  font-family: var(--font-Jost);
}

.footer-section {
  position: relative;
}
@media (max-width: 767px) {
  .footer-section {
    padding-top: 30px;
  }
}
.footer-section .mb-200 {
  margin-bottom: 180px;
}
@media (max-width: 767px) {
  .footer-section .mb-200 {
    margin-bottom: 0;
  }
}
.footer-section .newsletter-area {
  position: relative;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
}
.footer-section .newsletter-area .section-title2 {
  margin-left: 20px;
}
@media (max-width: 576px) {
  .footer-section .newsletter-area .section-title2 {
    margin: 0 10px;
  }
}
.footer-section .newsletter-area .input-with-btn {
  margin-right: 20px;
}
@media (max-width: 576px) {
  .footer-section .newsletter-area .input-with-btn {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-section .newsletter-area.pt-120 {
    padding-top: 0;
  }
}
.footer-section .newsletter-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) skewX(4deg);
  width: 94%;
  height: 100%;
  border: 1px solid;
  border-color: var(--primary-color1);
  opacity: 0.7;
}
@media (max-width: 991px) {
  .footer-section .newsletter-area::before {
    transform: translateX(-50%) skewX(0deg);
  }
}
.footer-section .section-star {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -32px;
}
@media (max-width: 767px) {
  .footer-section .section-star {
    top: -24px;
  }
}
.footer-section .background-text {
  text-align: center;
  width: 93%;
  position: absolute;
  left: 50%;
  bottom: 45px;
  transform: translateX(-49%);
  overflow: hidden;
}
.footer-section .background-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 70px;
  -webkit-animation: CSSright 120s linear infinite running;
          animation: CSSright 120s linear infinite running;
}
.footer-section .background-text ul li a {
  font-size: 5.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-prompt);
  white-space: nowrap;
}
.footer-section .background-text ul li:nth-child(odd) a {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.35);
  -webkit-text-fill-color: transparent;
}

.input-with-btn {
  position: relative;
  z-index: 9;
}
.input-with-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid var(--primary-color1-light3);
  width: 100%;
  height: 100%;
  transform: skewX(8deg);
  z-index: -1;
  background-color: var(--bg-color);
}
.input-with-btn input[type=text], .input-with-btn .comment-form-wrapper .comment-form textarea[type=text], .comment-form-wrapper .comment-form .input-with-btn textarea[type=text], .input-with-btn .contact-form textarea[type=text], .contact-form .input-with-btn textarea[type=text],
.input-with-btn input[type=email],
.input-with-btn .comment-form-wrapper .comment-form textarea[type=email],
.comment-form-wrapper .comment-form .input-with-btn textarea[type=email],
.input-with-btn .contact-form textarea[type=email],
.contact-form .input-with-btn textarea[type=email] {
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  padding: 15px 15px;
  background-color: transparent;
}
@media (max-width: 767px) {
  .input-with-btn input[type=text], .input-with-btn .comment-form-wrapper .comment-form textarea[type=text], .comment-form-wrapper .comment-form .input-with-btn textarea[type=text], .input-with-btn .contact-form textarea[type=text], .contact-form .input-with-btn textarea[type=text],
.input-with-btn input[type=email],
.input-with-btn .comment-form-wrapper .comment-form textarea[type=email],
.comment-form-wrapper .comment-form .input-with-btn textarea[type=email],
.input-with-btn .contact-form textarea[type=email],
.contact-form .input-with-btn textarea[type=email] {
    text-align: center;
  }
}
.input-with-btn input[type=text]::-moz-placeholder, .input-with-btn .comment-form-wrapper .comment-form textarea[type=text]::-moz-placeholder, .comment-form-wrapper .comment-form .input-with-btn textarea[type=text]::-moz-placeholder, .input-with-btn .contact-form textarea[type=text]::-moz-placeholder, .contact-form .input-with-btn textarea[type=text]::-moz-placeholder, .input-with-btn input[type=email]::-moz-placeholder, .input-with-btn .comment-form-wrapper .comment-form textarea[type=email]::-moz-placeholder, .comment-form-wrapper .comment-form .input-with-btn textarea[type=email]::-moz-placeholder, .input-with-btn .contact-form textarea[type=email]::-moz-placeholder, .contact-form .input-with-btn textarea[type=email]::-moz-placeholder {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
}
.input-with-btn input[type=text]:-ms-input-placeholder, .input-with-btn .comment-form-wrapper .comment-form textarea[type=text]:-ms-input-placeholder, .comment-form-wrapper .comment-form .input-with-btn textarea[type=text]:-ms-input-placeholder, .input-with-btn .contact-form textarea[type=text]:-ms-input-placeholder, .contact-form .input-with-btn textarea[type=text]:-ms-input-placeholder, .input-with-btn input[type=email]:-ms-input-placeholder, .input-with-btn .comment-form-wrapper .comment-form textarea[type=email]:-ms-input-placeholder, .comment-form-wrapper .comment-form .input-with-btn textarea[type=email]:-ms-input-placeholder, .input-with-btn .contact-form textarea[type=email]:-ms-input-placeholder, .contact-form .input-with-btn textarea[type=email]:-ms-input-placeholder {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
}
.input-with-btn input[type=text]::placeholder, .input-with-btn .comment-form-wrapper .comment-form textarea[type=text]::placeholder, .comment-form-wrapper .comment-form .input-with-btn textarea[type=text]::placeholder, .input-with-btn .contact-form textarea[type=text]::placeholder, .contact-form .input-with-btn textarea[type=text]::placeholder,
.input-with-btn input[type=email]::placeholder,
.input-with-btn .comment-form-wrapper .comment-form textarea[type=email]::placeholder,
.comment-form-wrapper .comment-form .input-with-btn textarea[type=email]::placeholder,
.input-with-btn .contact-form textarea[type=email]::placeholder,
.contact-form .input-with-btn textarea[type=email]::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
}
.input-with-btn button {
  background: transparent;
  max-width: 230px;
}
@media (max-width: 767px) {
  .input-with-btn button {
    min-width: 100% !important;
  }
}
.input-with-btn .form-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .input-with-btn .form-inner {
    flex-wrap: wrap;
  }
}

.footer-bottom {
  padding-top: 80px;
  background-color: var(--bg-dark-0);
  background-size: cover;
  background-position: center;
}
.footer-bottom .footer-text-area {
  padding-bottom: 35px;
  text-align: center;
}
.footer-bottom .footer-text-area img {
  margin-bottom: 4px;
}
.footer-bottom .footer-text-area h3 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.4;
}
.footer-bottom .footer-text-area h3 span {
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
}

.footer-link-area {
  border-top: 1px solid rgba(153, 153, 153, 0.2);
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  padding: 30px;
}
.footer-link-area ul.footer-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-link-area ul.footer-list li a {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  transition: all 0.45s ease-in-out;
}
.footer-link-area ul.footer-list li:hover a {
  color: var(--primary-color1);
}

.copyright-area {
  padding: 20px 0px;
}
.copyright-area .copyright p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0px;
}
.copyright-area .copyright p a {
  font-size: inherit;
  font-weight: 500;
  color: var(--primary-color1);
}

ul.footer-social {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  gap: 15px;
}
@media (max-width: 991px) {
  ul.footer-social {
    justify-content: center;
  }
}
ul.footer-social li {
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 25px;
  text-align: center;
  overflow: hidden;
}
ul.footer-social li img {
  height: 18px;
  width: 18px;
  transition: all 0.45s ease-in-out;
}
ul.footer-social li a {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-kanit);
  transition: all 0.45s ease-in-out;
  opacity: 0;
}
ul.footer-social li:hover img {
  transform: translateY(-22px);
  opacity: 0;
}
ul.footer-social li:hover a {
  transform: translateY(-23px);
  opacity: 1;
}

.counter-section {
  padding-left: 20px;
  padding-right: 20px;
}
.counter-section .counter-wrapper {
  position: relative;
  z-index: 1;
}
.counter-section .counter-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  transform: skewX(4deg);
  z-index: -1;
}
@media (max-width: 767px) {
  .counter-section .counter-wrapper::after {
    transform: skewX(0deg);
  }
}

.counter-single {
  padding: 25px 0px;
}
@media (max-width: 767px) {
  .counter-single {
    padding: 20px 0px;
  }
}
.counter-single svg {
  fill: var(--primary-color1);
  transition: all 0.5s ease;
}
.counter-single:hover svg {
  transform: scale(1.2);
}
.counter-single .counter-icon {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .counter-single .counter-icon img {
    max-width: 60px;
  }
}
@media (max-width: 991px) {
  .counter-single .counter-icon {
    margin-bottom: 20px;
  }
}
.counter-single .coundown h3 {
  font-size: 3rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-kanit);
  margin-bottom: 5px;
  display: inline-block;
}
@media (max-width: 767px) {
  .counter-single .coundown h3 {
    font-size: 2rem;
  }
}
.counter-single .coundown i {
  color: var(--white);
  font-weight: 600;
  font-size: 25px;
}
@media (max-width: 767px) {
  .counter-single .coundown i {
    font-size: 16px;
  }
}
.counter-single .coundown p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-Jost);
  line-height: 1.3;
}
@media (max-width: 767px) {
  .counter-single .coundown p {
    font-size: 16px;
  }
}
.counter-single .odometer-digit {
  padding-right: 1px;
}

.rare-feature-section {
  padding-left: 20px;
  padding-right: 20px;
}

.rare-feature-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  height: 585px;
  margin-right: 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .rare-feature-image {
    margin-right: 0px;
  }
}
@media (max-width: 991px) {
  .rare-feature-image {
    margin-right: 0px;
    margin-top: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .rare-feature-image {
    height: 525px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .rare-feature-image {
    height: 525px;
  }
}
@media (max-width: 991px) {
  .rare-feature-image {
    height: 500px;
  }
}
@media (max-width: 350px) {
  .rare-feature-image {
    height: 400px;
  }
}
.rare-feature-image .circel-tex-rare-collection {
  position: absolute;
  bottom: -60px;
  left: 0%;
}
@media (max-width: 576px) {
  .rare-feature-image .circel-tex-rare-collection {
    left: 50%;
    transform: translateX(-50%);
  }
}
.rare-feature-image img {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.rare-feature-image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 430px;
  height: 100%;
  background: #1d4e3e;
  z-index: -1;
  border-radius: 300px 300px 0px 0px;
}
.rare-feature-image .rare-ellipse {
  position: absolute;
  left: -127px;
  bottom: 140px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .rare-feature-image .rare-ellipse {
    display: none;
    visibility: none;
  }
}

.rare-feature-content p {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
}
.rare-feature-content ul.rare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
@media (max-width: 576px) {
  .rare-feature-content ul.rare-list {
    flex-wrap: wrap;
  }
}
.rare-feature-content ul.rare-list li .rare-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-Jost);
}
.rare-feature-content ul.rare-list li .rare-title span {
  font-size: 4.5rem;
  font-weight: 600;
  color: transparent;
  font-family: var(--font-kanit);
  -webkit-text-stroke: 1px rgba(155, 155, 155, 0.99);
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.contact-form .form-inner {
  margin-bottom: 30px;
}
.contact-form input, .contact-form .comment-form-wrapper .comment-form textarea, .comment-form-wrapper .comment-form .contact-form textarea, .contact-form textarea {
  width: 100%;
  background-color: var(--bg-color);
  border: 1px solid;
  border-color: rgba(0, 139, 94, 0.3);
  padding: 10px 30px;
  transition: all 0.55s ease-in-out;
  color: var(--white);
  transform: skewX(0deg);
}
@media (max-width: 767px) {
  .contact-form input, .contact-form .comment-form-wrapper .comment-form textarea, .comment-form-wrapper .comment-form .contact-form textarea, .contact-form textarea {
    padding: 10px 15px;
  }
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 1px solid var(--primary-color1-light2);
}
.contact-form input::-moz-placeholder, .contact-form .comment-form-wrapper .comment-form textarea::-moz-placeholder, .comment-form-wrapper .comment-form .contact-form textarea::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light3);
}
.contact-form input:-ms-input-placeholder, .contact-form .comment-form-wrapper .comment-form textarea:-ms-input-placeholder, .comment-form-wrapper .comment-form .contact-form textarea:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light3);
}
.contact-form input::placeholder, .contact-form .comment-form-wrapper .comment-form textarea::placeholder, .comment-form-wrapper .comment-form .contact-form textarea::placeholder, .contact-form textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light3);
}
.contact-form textarea {
  transform: skewX(0deg);
  min-height: 100px;
}

.contact-section2 {
  position: relative;
  z-index: 1;
}
.contact-section2 .contact-form input, .contact-section2 .contact-form textarea {
  transform: skewX(0deg);
}
.contact-section2 .contact-form textarea {
  transform: skewX(0deg);
}
.contact-section2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 510px;
  z-index: -1;
  background-color: var(--bg-color);
  background-image: url("../images/bg/get-in-touch-bg.png");
}

.contact-form-area {
  position: relative;
  padding: 80px 70px;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-form-area {
    padding: 70px 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-area {
    padding: 70px 50px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .contact-form-area {
    padding: 60px 40px;
  }
}
@media (max-width: 576px) {
  .contact-form-area {
    padding: 50px 20px;
  }
}
.contact-form-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark-0);
  transform: skewX(2deg);
  z-index: -1;
}

/*=======================================
   11. Contact-form
=======================================*/
.comment-form-wrapper .comment-form .form-inner {
  margin-bottom: 30px;
}
.comment-form-wrapper .comment-form input, .comment-form-wrapper .comment-form textarea {
  width: 100%;
  background-color: var(--bg-color);
  border: 1px solid;
  border-color: rgba(0, 139, 94, 0.3);
  padding: 10px 30px;
  transition: all 0.55s ease-in-out;
  color: var(--white);
  transform: skewX(0deg);
}
@media (max-width: 767px) {
  .comment-form-wrapper .comment-form input, .comment-form-wrapper .comment-form textarea {
    padding: 10px 15px;
  }
}
.comment-form-wrapper .comment-form input:focus, .comment-form-wrapper .comment-form textarea:focus {
  border: 1px solid var(--primary-color1-light2);
}
.comment-form-wrapper .comment-form input::-moz-placeholder, .comment-form-wrapper .comment-form textarea::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light3);
}
.comment-form-wrapper .comment-form input:-ms-input-placeholder, .comment-form-wrapper .comment-form textarea:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light3);
}
.comment-form-wrapper .comment-form input::placeholder, .comment-form-wrapper .comment-form textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light3);
}
.comment-form-wrapper .comment-form textarea {
  transform: skewX(0deg);
  min-height: 100px;
}

.contact-section2 {
  position: relative;
  z-index: 1;
}
.contact-section2 .comment-form input, .contact-section2 .comment-form .contact-form textarea, .contact-form .contact-section2 .comment-form textarea, .contact-section2 .comment-form-wrapper .comment-form textarea, .comment-form-wrapper .contact-section2 .comment-form textarea {
  transform: skewX(0deg);
}
.contact-section2 .comment-form textarea {
  transform: skewX(0deg);
}
.contact-section2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 510px;
  z-index: -1;
  background-color: var(--bg-color);
  background-image: url("../images/bg/get-in-touch-bg.png");
}

.comment-form-area {
  position: relative;
  padding: 80px 70px;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comment-form-area {
    padding: 70px 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .comment-form-area {
    padding: 70px 50px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .comment-form-area {
    padding: 60px 40px;
  }
}
@media (max-width: 576px) {
  .comment-form-area {
    padding: 50px 20px;
  }
}
.comment-form-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark-0);
  transform: skewX(2deg);
  z-index: -1;
}

/*=======================================
   11. Choose-us
=======================================*/
.choose-us-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 525px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .choose-us-image {
    margin-bottom: 50px;
  }
}
.choose-us-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color1-light);
  transform: rotate(3deg);
  z-index: -1;
}

.choose-us-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 35px;
}

.choose-us-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 60px;
}
.choose-us-list li {
  position: relative;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-light);
  font-family: var(--font-Jost);
  padding-left: 30px;
  margin-bottom: 20px;
}
.choose-us-list li:last-child {
  margin-bottom: 0px;
}
.choose-us-list li::before {
  content: url("../images/icons/star-sm.svg");
  position: absolute;
  left: 0;
  top: 4px;
}

/*=======================================
   11. Faq-section
=======================================*/
.faq-wrap {
  position: relative;
  z-index: 1;
  padding: 50px 100px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .faq-wrap {
    padding: 40px 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq-wrap {
    padding: 40px 50px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .faq-wrap {
    padding: 40px 50px;
  }
}
@media (max-width: 576px) {
  .faq-wrap {
    padding: 35px 25px;
  }
}
.faq-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid;
  border-color: rgba(0, 139, 94, 0.3);
  transform: skewX(8deg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(4deg);
  transition: all 0.45s ease-in-out;
  z-index: -1;
}
@media (max-width: 576px) {
  .faq-wrap::before {
    transform: translate(-50%, -50%) skewX(1deg);
  }
}
.faq-wrap .faq-item {
  margin-bottom: 20px;
  border: none;
}
.faq-wrap .faq-item:last-child {
  margin-bottom: 0;
}
.faq-wrap .faq-item.hover-btn {
  padding: 1px 1px 1px 1px;
}
.faq-wrap .accordion-button {
  font-family: var(--font-kanit);
  font-weight: 300;
  font-size: 20px;
  color: var(--white);
  cursor: pointer;
  transition: 0.45s ease-in-out;
  padding: 20px 0px;
  padding-right: 60px;
  margin-bottom: 0px;
  line-height: 1.5;
  background: transparent;
  border-bottom: 1px dashed rgba(120, 120, 120, 0.6);
}
@media (max-width: 576px) {
  .faq-wrap .accordion-button {
    padding-right: 40px;
  }
}
.faq-wrap .accordion-button:focus {
  z-index: unset;
  border-color: unset;
  outline: 0;
}
.faq-wrap .accordion-button::after {
  flex-shrink: 0;
  width: unset;
  height: unset;
  margin-left: auto;
  background-image: none;
  background-repeat: unset;
  background-size: unset;
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 10px;
  top: 20px;
  content: "\f4fe";
  transition: unset;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-wrap .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: unset;
  font-family: bootstrap-icons !important;
  content: "\f2ea";
  color: var(--primary-color1);
  font-weight: 300;
}
.faq-wrap .accordion-button:hover {
  color: var(--primary-color1);
}
.faq-wrap .accordion-button:hover::after {
  color: var(--primary-color1);
}
.faq-wrap .faq-body {
  font-weight: 400;
  font-size: 18px;
  font-family: var(--font-Jost);
  color: var(--text-light);
  border-top: none;
  padding: 20px 25px;
  line-height: 28px;
  text-align: left;
  line-height: 1.7;
}
@media (max-width: 576px) {
  .faq-wrap .faq-body {
    padding: 20px 0px;
  }
}
.faq-wrap .accordion-button:not(.collapsed) {
  background: var(--primary-color4);
  color: var(--primary-color1);
  border-radius: 5px 5px 0px 0px;
}

.investor-single {
  position: relative;
  text-align: center;
  padding: 15px;
}
.investor-single img {
  opacity: 0.45;
  transition: all 0.5s ease-in-out;
}
.investor-single:hover img {
  opacity: 1;
}
.investor-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  border: 1px solid;
  border-color: var(--primary-color1);
  opacity: 0.3;
  transform: skewX(5deg);
}

.video-single {
  width: 100%;
  max-width: 320px;
}
@media (max-width: 991px) {
  .video-single {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
  }
}

.video-play {
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  z-index: 9;
  position: relative;
}
@media (max-width: 576px) {
  .video-play img {
    width: 100%;
  }
}
.video-play .video-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 62px;
  display: inline-block;
  text-align: center;
  position: relative;
  border: 1px solid var(--white);
  font-size: 30px;
  color: var(--white);
  background: transparent;
}
.video-play .video-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-animation: ripple-1 2s infinite ease-in-out;
  animation: ripple-1 2s infinite ease-in-out;
  z-index: -1;
}
.video-play .video-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  -webkit-animation: ripple-2 2s infinite ease-in-out;
  animation: ripple-2 2s infinite ease-in-out;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes ripple-1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes ripple-1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@-webkit-keyframes ripple-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
@keyframes ripple-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
/*=======================================
   11. bread-crumb-section
=======================================*/
.bread-crumb-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  background: var(--bg-color3);
  background-image: url(../images/bg/breadcrumb-bg.png);
  position: relative;
  z-index: 1;
  padding: 70px 20px;
  z-index: 1;
}
.bread-crumb-section .bacground-img .hand-btn-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 11;
}
@media (max-width: 576px) {
  .bread-crumb-section .bacground-img .hand-btn-left {
    max-width: 150px;
    width: 100%;
  }
}
.bread-crumb-section .bacground-img .hand-top-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 11;
}
@media (max-width: 576px) {
  .bread-crumb-section .bacground-img .hand-top-right {
    max-width: 150px;
    width: 100%;
  }
}
.bread-crumb-section .banner-content {
  padding: 180px 0px 150px;
  text-align: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .bread-crumb-section .banner-content {
    padding: 120px 0px 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bread-crumb-section .banner-content {
    padding: 90px 0px 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bread-crumb-section .banner-content {
    padding: 70px 0px 50px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .bread-crumb-section .banner-content {
    padding: 65px 0px 55px;
  }
}
@media (max-width: 576px) {
  .bread-crumb-section .banner-content {
    padding: 45px 0px 30px;
  }
}
.bread-crumb-section.two {
  height: 780px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .bread-crumb-section.two {
    height: 480px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .bread-crumb-section.two {
    height: 480px;
  }
}
@media (max-width: 576px) {
  .bread-crumb-section.two {
    height: 480px;
  }
}
.bread-crumb-section.two::after {
  width: 80%;
}
@media (max-width: 1700px) {
  .bread-crumb-section.two::after {
    width: 90%;
  }
}
@media (max-width: 1500px) {
  .bread-crumb-section.two::after {
    width: 93%;
  }
}
.bread-crumb-section .circel-tex-area3 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 1399px) {
  .bread-crumb-section .circel-tex-area3 {
    bottom: -6px;
  }
}
@media (max-width: 1199px) {
  .bread-crumb-section .circel-tex-area3 {
    bottom: -10px;
  }
}
@media (max-width: 991px) {
  .bread-crumb-section .circel-tex-area3 {
    bottom: -15px;
  }
}
@media (max-width: 767px) {
  .bread-crumb-section .circel-tex-area3 {
    bottom: -17px;
  }
}
@media (max-width: 576px) {
  .bread-crumb-section .circel-tex-area3 {
    display: none;
    visibility: hidden;
  }
}
.bread-crumb-section .circel-tex-area3 img {
  height: 50px;
  width: 50px;
}
.bread-crumb-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(3deg);
  width: 80%;
  height: 75%;
  border: 1px solid var(--primary-color1);
  opacity: 0.4;
  z-index: -1;
}
@media (max-width: 991px) {
  .bread-crumb-section::after {
    width: 90%;
  }
}
.bread-crumb-section .breadcrumb-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.bread-crumb-section .breadcrumb-bg img {
  height: 100%;
}
.bread-crumb-section .error-img {
  position: absolute;
  right: 0;
  top: -258px;
}
@media (max-width: 991px) {
  .bread-crumb-section .error-img {
    display: none;
    visibility: hidden;
  }
}
.bread-crumb-section .error-content {
  margin-left: 20px;
}
@media (max-width: 576px) {
  .bread-crumb-section .error-content {
    margin: 0px 10px;
  }
}
.bread-crumb-section .error-content h2 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 70px;
  line-height: 85px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}
.bread-crumb-section .error-content h2 span {
  font-weight: 300;
}
@media (max-width: 576px) {
  .bread-crumb-section .error-content h2 {
    font-size: 45px;
    line-height: 55px;
  }
}
.bread-crumb-section .error-content p {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.03em;
  color: var(--text-light4);
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .bread-crumb-section .error-content p {
    margin-bottom: 30px;
  }
}
.bread-crumb-section .error-content a {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 15px 35px;
  color: var(--white);
  background-color: var(--primary-color1);
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
  border: 1px solid var(--primary-color1);
  display: inline-flex;
  text-decoration: none;
  transition: all 0.45s ease-in-out;
  transform: skewX(6deg);
}
.bread-crumb-section .error-content a i {
  vertical-align: baseline;
  margin-right: 10px;
  margin-top: 2px;
}
.bread-crumb-section .error-content a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  transition: all 0.55s ease-in-out;
}
.bread-crumb-section .error-content a:hover::before {
  left: -8px;
  top: -8px;
  opacity: 1;
}

.bread-crumb-title {
  z-index: 9;
  font-size: 3.75rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-prompt);
}
@media (max-width: 767px) {
  .bread-crumb-title {
    font-size: 3rem;
  }
}

.breadcrumb {
  gap: 17px;
}
.breadcrumb .breadcrumb-item {
  font-family: var(--font-Jost);
  position: relative;
}
.breadcrumb .breadcrumb-item a {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color1);
}
.breadcrumb .breadcrumb-item.active {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  content: url("../images/icons/xsm-start.svg");
  position: absolute;
  left: -10px;
  top: 0px;
  height: 12px;
  width: 12px;
}

/*=======================================
   11. Collection Pages
=======================================*/
.collection-one-section .section-title-5 h2 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: var(--white);
  margin-bottom: 0;
}
.collection-one-section .multiselect-area {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
}
@media (max-width: 991px) {
  .collection-one-section .multiselect-area {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .collection-one-section .multiselect-area {
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
  }
}
.collection-one-section .multiselect-area .single-select {
  max-width: 260px;
  width: 100%;
  padding: 10px 40px;
  position: relative;
}
@media (max-width: 1399px) {
  .collection-one-section .multiselect-area .single-select {
    padding: 10px 30px;
  }
}
@media (max-width: 1199px) {
  .collection-one-section .multiselect-area .single-select {
    padding: 10px 20px;
  }
}
@media (max-width: 991px) {
  .collection-one-section .multiselect-area .single-select {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .collection-one-section .multiselect-area .single-select {
    max-width: 250px;
  }
}
.collection-one-section .multiselect-area .single-select::after {
  content: "";
  height: 62px;
  width: 1px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: absolute;
  right: 0;
  top: 0;
}
.collection-one-section .multiselect-area .single-select:last-child::after {
  display: none;
  visibility: hidden;
}
@media (max-width: 991px) {
  .collection-one-section .multiselect-area .single-select:nth-child(2)::after {
    display: none;
    visibility: hidden;
  }
}
@media (max-width: 991px) {
  .collection-one-section .multiselect-area .single-select:nth-child(4)::after {
    display: none;
    visibility: hidden;
  }
}
@media (max-width: 576px) {
  .collection-one-section .multiselect-area .single-select::after {
    display: none;
    visibility: hidden;
  }
}
.collection-one-section .multiselect-area .single-select .nice-select {
  width: 100%;
  background-color: transparent;
  border: none;
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 16px;
  color: #acacac;
}
@media (max-width: 1399px) {
  .collection-one-section .multiselect-area .single-select .nice-select {
    padding-left: 0;
  }
}
.collection-one-section .multiselect-area .single-select .nice-select:after {
  content: "";
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
  display: block;
  height: 10px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transition: all 0.15s ease-in-out;
  width: 10px;
}
.collection-one-section .multiselect-area .single-select .nice-select .list {
  width: 100%;
  top: 122%;
  border-radius: 0;
  background-color: var(--bg-color);
  z-index: 999;
}
.collection-one-section .multiselect-area .single-select .nice-select .option {
  min-height: 30px;
  line-height: 30px;
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 16px;
  padding: 5px 10px;
}
.collection-one-section .multiselect-area .single-select .nice-select .option:hover,
.collection-one-section .multiselect-area .single-select .nice-select .option.focus,
.collection-one-section .multiselect-area .single-select .nice-select .option.selected.focus {
  background-color: var(--primary-color1);
  color: var(--white);
}
@media (max-width: 576px) {
  .collection-one-section .collection-single2 .collection2-image img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .collection-one-section .direction-hover {
    margin: 0;
  }
}

.pagination {
  margin: 0;
  padding: 0;
  gap: 24px;
}
@media (max-width: 991px) {
  .pagination {
    margin-bottom: 60px;
  }
}
.pagination .page-item a.current::before {
  opacity: 1;
}
.pagination .page-item a {
  background-color: transparent;
  border: none;
  position: relative;
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  padding: 3px 10px;
  transition: all 0.5s ease;
  z-index: 1;
  height: 30px;
  line-height: 28px;
}
.pagination .page-item a svg {
  fill: var(--primary-color1-light2) !important;
  vertical-align: baseline;
  transition: all 0.5s ease;
}
.pagination .page-item a:focus {
  box-shadow: unset;
}
.pagination .page-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--primary-color1);
  transform: skewX(6deg);
  transition: all 0.5s ease;
  opacity: 0;
  background-color: var(--primary-color1);
}
.pagination .page-item a.active::before {
  opacity: 1;
}
.pagination .page-item a:hover svg {
  fill: var(--white) !important;
}
.pagination .page-item a:hover::before {
  opacity: 1;
}
.pagination .page-item:first-child .page-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--primary-color1-light2);
  transform: skewX(6deg);
  transition: all 0.5s ease;
  opacity: 1;
  background-color: transparent;
}
.pagination .page-item:last-child .page-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--primary-color1-light2);
  transform: skewX(6deg);
  transition: all 0.5s ease;
  opacity: 1;
  background-color: transparent;
}

/*=======================================
   11. Blog Standart Pages
=======================================*/
.widget-area .single-widgets {
  margin-bottom: 60px;
}
.widget-area .single-widgets .widget-title h3 {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 28px;
  line-height: 45px;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 40px;
  position: relative;
}
.widget-area .single-widgets .widget-title h3::after {
  content: url("../images/icons/widget-title-vec.svg");
  position: absolute;
  bottom: -25px;
  left: 0;
}
.widget-area .widget_sidebar-author {
  padding: 45px 40px;
  position: relative;
  z-index: 1;
}
.widget-area .widget_sidebar-author::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 1px solid var(--primary-color1);
  opacity: 0.3;
}
.widget-area .widget_sidebar-author .author-img {
  margin-bottom: 25px;
}
.widget-area .widget_sidebar-author .author-name h4 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--white);
  margin-bottom: 0;
}
.widget-area .widget_sidebar-author .author-name span {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--primary-color1);
}
.widget-area .widget_sidebar-author .author-content {
  padding-top: 10px;
}
.widget-area .widget_sidebar-author .author-content p {
  font-family: var(--font-Jost);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: var(--text-light4);
  margin-bottom: 0;
}
.widget-area .widget_egns_recent_post .recent-post-wraper .widget-cnt {
  padding: 30px;
  border: 1px solid;
  border-color: rgba(0, 139, 94, 0.3);
}
.widget-area .widget_egns_recent_post .recent-post-wraper .widget-cnt .wi {
  margin-bottom: 25px;
}
.widget-area .widget_egns_recent_post .recent-post-wraper .widget-cnt .wc span {
  font-family: var(--font-Jost);
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-transform: capitalize;
  color: var(--text-light2);
  display: inline-block;
  position: relative;
  padding: 5px 20px;
  margin-bottom: 25px;
  background-color: rgba(var(--primary-color1), 0.2);
}
.widget-area .widget_egns_recent_post .recent-post-wraper .widget-cnt .wc h4 {
  margin-bottom: 0;
}
.widget-area .widget_egns_recent_post .recent-post-wraper .widget-cnt .wc h4 a {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 24px;
  line-height: 37px;
  text-transform: capitalize;
  color: var(--white);
  transition: 0.35s;
}
.widget-area .widget_egns_recent_post .recent-post-wraper .widget-cnt .wc h4 a:hover {
  color: var(--primary-color1);
}
.widget-area .widget_egns_tag .wp-block-categoris-cloud {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-area .widget_egns_tag .wp-block-categoris-cloud li {
  margin-right: 12px;
}
.widget-area .widget_egns_tag .wp-block-categoris-cloud li a {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 20px;
  line-height: 45px;
  text-transform: capitalize;
  color: var(--text-light4);
  transition: 0.35s;
}
.widget-area .widget_egns_tag .wp-block-categoris-cloud li a svg {
  fill: rgba(var(--primary-color1), 0.7);
  margin-right: 5px;
  vertical-align: baseline;
}
.widget-area .widget_egns_tag .wp-block-categoris-cloud li a:hover {
  color: var(--primary-color1);
}
.widget-area .widget_egns_social {
  margin-bottom: 0;
}
.widget-area .widget_egns_social .social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-area .widget_egns_social .social-link li {
  margin-bottom: 10px;
}
.widget-area .widget_egns_social .social-link li a {
  margin-left: -20px;
  transition: 0.35s;
}
.widget-area .widget_egns_social .social-link li a i {
  font-size: 16px;
  vertical-align: sub;
  color: var(--primary-color1);
  transition: 0.35s;
  opacity: 0;
}
.widget-area .widget_egns_social .social-link li a span {
  font-family: var(--font-Jost);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  text-transform: uppercase;
  color: var(--text-light4);
  transition: 0.35s;
}
.widget-area .widget_egns_social .social-link li a:hover {
  margin-left: 0;
}
.widget-area .widget_egns_social .social-link li a:hover i {
  opacity: 1;
}
.widget-area .widget_egns_social .social-link li a:hover span {
  color: var(--primary-color1);
  border-bottom: 1px solid var(--primary-color1);
}

.blog-standard {
  background-color: var(--bg-color2);
}
.blog-standard .blog-st-wrap {
  margin-bottom: 60px;
}
.blog-standard .blog-st-wrap .blog-img img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-standard .blog-st-wrap .blog-standard-single {
  margin-bottom: 50px;
  position: relative;
}
.blog-standard .blog-st-wrap .blog-standard-single .blog-img {
  margin-bottom: 25px;
}
.blog-standard .blog-st-wrap .blog-content .blog-meta {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .blog-standard .blog-st-wrap .blog-content .blog-meta {
    flex-wrap: wrap;
  }
}
.blog-standard .blog-st-wrap .blog-content .blog-meta li a {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-transform: capitalize;
  color: var(--text-light2);
}
.blog-standard .blog-st-wrap .blog-content .blog-meta li a svg {
  fill: var(--primary-color1);
  margin-right: 5px;
}
.blog-standard .blog-st-wrap .blog-content .blog-title {
  margin-bottom: 15px;
}
.blog-standard .blog-st-wrap .blog-content .blog-title h3 {
  margin-bottom: 0;
}
.blog-standard .blog-st-wrap .blog-content .blog-title h3 a {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.6;
  color: var(--white);
}

/*=======================================
   11. Contact  Pages
=======================================*/
.contact-section .comment-form-area {
  position: relative;
  padding: 70px 45px;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 576px) {
  .contact-section .comment-form-area {
    padding: 70px 20px;
  }
}
.contact-section .comment-form-area .section-title {
  margin-bottom: 35px;
}
.contact-section .comment-form-area .section-title h3 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 35px;
  line-height: 45px;
  text-transform: capitalize;
  color: var(--white);
}
.contact-section .comment-form-area .form-inner input,
.contact-section .comment-form-area .form-inner textarea {
  transform: skewX(0deg);
  background-color: transparent;
}
.contact-section .comment-form-area .form-inner input::after,
.contact-section .comment-form-area .form-inner textarea::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transform: skewX(0deg);
  z-index: -1;
}
.contact-section .comment-form-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transform: skewX(0deg);
  z-index: -1;
}
.contact-section .comment-form-area .submit-btn {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 15px 35px;
  color: var(--primary-color1);
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
  border: 1px solid var(--primary-color1);
  background-color: transparent;
  display: inline-flex;
  text-decoration: none;
  transition: all 0.45s ease-in-out;
  transform: skewX(4deg);
}
.contact-section .comment-form-area .submit-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  transition: all 0.55s ease-in-out;
}
.contact-section .comment-form-area .submit-btn:hover {
  background-color: var(--primary-color1);
  color: var(--white);
}
.contact-section .comment-form-area .submit-btn:hover::before {
  left: -8px;
  top: -8px;
  opacity: 1;
}
.contact-section .address-area {
  max-width: 584px;
  width: 100%;
  text-align: center;
  padding: 70px 40px;
  position: relative;
  z-index: 1;
  margin-left: auto;
}
@media (max-width: 1399px) {
  .contact-section .address-area {
    padding: 70px 25px;
  }
}
@media (max-width: 991px) {
  .contact-section .address-area {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact-section .address-area {
    padding: 50px 25px;
  }
}
.contact-section .address-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.3;
  border: 1px solid var(--primary-color1);
  transform: skewX(2deg);
  z-index: -1;
}
@media (max-width: 576px) {
  .contact-section .address-area::after {
    transform: skewX(0deg);
  }
}
.contact-section .address-area .section-title h2 {
  font-family: var(--font-prompt);
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  line-height: 58px;
  text-transform: capitalize;
  color: var(--white);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-section .address-area .section-title h2 {
    font-size: 37px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .contact-section .address-area .section-title h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 500;
  }
}
.contact-section .address-area .address-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-section .address-area .address-list li {
  margin-bottom: 50px;
}
.contact-section .address-area .address-list li:last-child {
  margin-bottom: 0;
}
.contact-section .address-area .address-list li .text h4 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 35px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--primary-color1);
  margin-bottom: 20px;
}
.contact-section .address-area .address-list li .text a {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: var(--text-light4);
}

/*=======================================
   11. Faq  Pages
=======================================*/
.faq-section {
  background-color: var(--bg-color2);
}
.faq-section .faq-sidebar .faq-title {
  margin-bottom: 40px;
}
.faq-section .faq-sidebar .faq-title h2 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 50px;
  line-height: 35px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 13px;
}
.faq-section .faq-sidebar .faq-title p {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0.03em;
  color: var(--text-light4);
}
.faq-section .faq-sidebar .faq-feature {
  padding: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .faq-section .faq-sidebar .faq-feature {
    margin-bottom: 0;
  }
}
.faq-section .faq-sidebar .faq-feature::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.3;
  border: 1px solid var(--primary-color1);
  transform: skewX(0deg);
  z-index: -1;
}
.faq-section .faq-sidebar .faq-feature ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-section .faq-sidebar .faq-feature ul li {
  margin-bottom: 25px;
}
.faq-section .faq-sidebar .faq-feature ul li:last-child {
  margin-bottom: 0;
}
.faq-section .faq-sidebar .faq-feature ul li a {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: var(--white);
  transition: 0.35s;
}
.faq-section .faq-sidebar .faq-feature ul li a img {
  vertical-align: text-top;
  margin-left: 6px;
  opacity: 0;
  transition: 0.35s;
  margin-top: 7px;
}
.faq-section .faq-sidebar .faq-feature ul li a:hover {
  color: var(--primary-color1);
}
.faq-section .faq-sidebar .faq-feature ul li a:hover img {
  opacity: 1;
}
.faq-section .faq-sidebar .faq-contact .title {
  margin-bottom: 45px;
}
.faq-section .faq-sidebar .faq-contact .title h3 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 35px;
  line-height: 45px;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 0;
}
.faq-section .faq-sidebar .faq-contact .form-inner {
  margin-bottom: 35px;
}
.faq-section .faq-sidebar .faq-contact .form-inner input, .faq-section .faq-sidebar .faq-contact .form-inner .contact-form textarea, .contact-form .faq-section .faq-sidebar .faq-contact .form-inner textarea, .faq-section .faq-sidebar .faq-contact .form-inner .comment-form-wrapper .comment-form textarea, .comment-form-wrapper .comment-form .faq-section .faq-sidebar .faq-contact .form-inner textarea {
  height: 58px;
}
.faq-section .faq-sidebar .faq-contact .form-inner input,
.faq-section .faq-sidebar .faq-contact .form-inner textarea {
  transform: skewX(0deg);
  background-color: transparent;
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 15px;
  color: #878787;
}
.faq-section .faq-sidebar .faq-contact .submit-btn {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 15px 35px;
  color: var(--white);
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
  border: 1px solid var(--primary-color1);
  background-color: transparent;
  display: inline-flex;
  text-decoration: none;
  transition: all 0.45s ease-in-out;
  transform: skewX(4deg);
}
.faq-section .faq-sidebar .faq-contact .submit-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  transition: all 0.55s ease-in-out;
}
.faq-section .faq-sidebar .faq-contact .submit-btn:hover {
  background-color: var(--primary-color1);
  color: var(--white);
}
.faq-section .faq-sidebar .faq-contact .submit-btn:hover::before {
  left: -8px;
  top: -8px;
  opacity: 1;
}
.faq-section .single-faq {
  margin-bottom: 70px;
}
@media (max-width: 576px) {
  .faq-section .single-faq {
    margin-bottom: 40px;
  }
}
.faq-section .single-faq .faq-title {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .faq-section .single-faq .faq-title {
    margin-bottom: 10px;
  }
}
.faq-section .single-faq .faq-title h3 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .faq-section .single-faq .faq-title h3 {
    font-size: 26px;
    line-height: 35px;
  }
}
.faq-section .single-faq .faq-content p {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: var(--text-light4);
  margin-bottom: 0;
}

/*=======================================
   11. Error Pages
=======================================*/
.error-marque {
  background-color: var(--bg-color2);
  overflow: hidden;
  padding: 70px 0px 50px;
}
.error-marque ul {
  list-style: none;
  -webkit-animation: CSSright 30s linear infinite running;
          animation: CSSright 30s linear infinite running;
  gap: 20px;
}
.error-marque ul:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.error-marque ul li {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 75px;
  line-height: 95px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.error-marque ul li img {
  vertical-align: baseline;
  padding: 0px 20px;
}
@keyframes CSSright {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-120%, 0);
  }
}

/*=======================================
   11. Blog Details Pages
=======================================*/
.blog-standard-section {
  background-color: var(--bg-color2);
}

.blog-details {
  background-color: var(--bg-color2);
}
@media (max-width: 991px) {
  .blog-details .blog-st-wrap {
    margin-bottom: 60px;
  }
}
.blog-details .blog-st-wrap .blog-img {
  margin-bottom: 40px;
}
.blog-details .blog-st-wrap .blog-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details .blog-st-wrap .blog-content .blog-meta {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
  margin-bottom: 20px;
}
.blog-details .blog-st-wrap .blog-content .blog-meta li a {
  font-family: var(--font-Jost);
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-transform: capitalize;
  color: var(--text-light2);
}
.blog-details .blog-st-wrap .blog-content .blog-meta li a svg {
  fill: var(--primary-color1);
  vertical-align: middle;
  margin-right: 9px;
}
.blog-details .blog-st-wrap .blog-content .blog-title {
  margin-bottom: 35px;
}
.blog-details .blog-st-wrap .blog-content .blog-title h3 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-details .blog-st-wrap .blog-content .blog-title h3 {
    line-height: 40px;
  }
}
.blog-details .blog-st-wrap .blog-content .blog-title h3 a {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.4;
}
.blog-details p {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: var(--text-light4);
}
.blog-details blockquote {
  padding: 50px;
  position: relative;
  z-index: 1;
  margin-top: 60px;
  margin-bottom: 60px;
  border: none;
}
@media (max-width: 576px) {
  .blog-details blockquote {
    padding: 25px;
  }
}
.blog-details blockquote p {
  font-weight: 300;
  font-size: 25px;
  line-height: 51px;
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .blog-details blockquote p {
    font-size: 22px;
    line-height: 40px;
  }
}
.blog-details blockquote .author-area h4 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--white);
  margin-bottom: 0;
}
.blog-details blockquote .author-area span {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-light4);
}
.blog-details h3 {
  font-family: var(--font-prompt);
  color: var(--white);
}
@media (max-width: 576px) {
  .blog-details h3 {
    font-size: 32px;
  }
}
.blog-details .post-thumb {
  padding-top: 25px;
  margin-bottom: 60px;
}
.blog-details .post-thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details .blog-tag-social {
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}
.blog-details .blog-tag-social .blog-tag {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-details .blog-tag-social .blog-tag li a {
  font-family: var(--font-Jost);
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-transform: capitalize;
  color: var(--text-light2);
  transition: 0.35s;
}
.blog-details .blog-tag-social .blog-tag li a:hover {
  color: var(--primary-color1);
}
.blog-details .blog-tag-social .blog-tag li a svg {
  fill: var(--primary-color1);
  margin-right: 5px;
}
.blog-details .blog-tag-social .social-area {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 30px;
}
.blog-details .blog-tag-social .social-area li a {
  font-size: 20px;
  color: rgb(255, 255, 255);
  transition: 0.35s;
}
.blog-details .blog-tag-social .social-area li a:hover {
  color: var(--primary-color1);
}
.blog-details .blog-slider-btn-content {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.1);
  padding: 20px 0 25px;
}
.blog-details .blog-slider-btn-content .blog-dt-content-slider {
  gap: 100px;
}
@media (max-width: 767px) {
  .blog-details .blog-slider-btn-content .blog-dt-content-slider {
    gap: 50px;
  }
}
@media (max-width: 576px) {
  .blog-details .blog-slider-btn-content .blog-dt-content-slider {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.blog-details .blog-slider-btn-content .blog-dt-content-slider .blog-dt-slider-content {
  padding-top: 20px;
}
.blog-details .blog-slider-btn-content .blog-dt-content-slider .blog-dt-slider-content h5 {
  margin-bottom: 0;
}
.blog-details .blog-slider-btn-content .blog-dt-content-slider .blog-dt-slider-content h5 a {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  opacity: 0.5;
  transition: 0.35s;
}
.blog-details .blog-slider-btn-content .blog-dt-content-slider .blog-dt-slider-content h5 a:hover {
  color: var(--primary-color1);
}
.blog-details .mbb-70 {
  margin-bottom: 70px;
}
.blog-details .comments-area .comment-title {
  margin-bottom: 55px;
}
@media (max-width: 576px) {
  .blog-details .comments-area .comment-title {
    margin-bottom: 40px;
  }
}
.blog-details .comments-area .comment-title h3 {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 35px;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .blog-details .comments-area .comment-title h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.blog-details .comments-area .comment-title h3 img,
.blog-details .comments-area .comment-title h3 svg {
  vertical-align: baseline;
}
.blog-details .comments-area .comment-list-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-details .comments-area .comment-list-area .comment-list li .single-comment {
  margin-bottom: 20px;
}
.blog-details .comments-area .comment-list-area .comment-list li .single-comment .comment-image {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .blog-details .comments-area .comment-list-area .comment-list li .single-comment .comment-image img {
    max-width: 40px;
  }
}
.blog-details .comments-area .comment-list-area .comment-list li .single-comment .comment-content .c-header {
  margin-bottom: 12px;
}
.blog-details .comments-area .comment-list-area .comment-list li .single-comment .comment-content .c-header h5 a {
  font-family: var(--font-prompt);
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  text-transform: capitalize;
  color: var(--white);
}
.blog-details .comments-area .comment-list-area .comment-list li .single-comment .comment-content .c-header .c-date {
  font-family: var(--font-Jost);
  font-weight: 500;
  font-size: 15px;
  line-height: 170%;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--text-light4);
}
.blog-details .comments-area .comment-list-area .comment-list li .single-comment .comment-content .c-body p {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0.03em;
  color: var(--text-light4);
}
.blog-details .comments-area .comment-list-area .comment-list li .single-comment .replay-btn a {
  font-family: var(--font-Jost);
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.03em;
  color: var(--primary-color1);
  text-decoration: none;
}
.blog-details .comments-area .comment-list-area .comment-list li .comment-reply {
  padding-left: 100px;
  list-style: none;
}
@media (max-width: 767px) {
  .blog-details .comments-area .comment-list-area .comment-list li .comment-reply {
    padding-top: 20px;
    padding-left: 15px;
  }
}
.blog-details .comments-area .submit-btn {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 15px 35px;
  color: var(--primary-color1);
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
  border: 1px solid var(--primary-color1);
  background-color: transparent;
  display: inline-flex;
  text-decoration: none;
  transition: all 0.45s ease-in-out;
  transform: skewX(4deg);
}
.blog-details .comments-area .submit-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  transition: all 0.55s ease-in-out;
}
.blog-details .comments-area .submit-btn:hover {
  background-color: var(--primary-color1);
  color: var(--white);
}
.blog-details .comments-area .submit-btn:hover::before {
  left: -8px;
  top: -8px;
  opacity: 1;
}

/*=======================================
   11. Collection Details Pages
=======================================*/
@media (max-width: 991px) {
  .collection-details .collection-details-content {
    padding-top: 50px;
  }
}
.collection-details .collection-details-content .section-title {
  margin-bottom: 14px;
}
.collection-details .collection-details-content .section-title h3 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: var(--white);
  margin-bottom: 20px;
}
.collection-details .collection-details-content .section-title h3 span {
  color: var(--primary-color1);
}
.collection-details .collection-details-content .section-title h4 {
  font-family: var(--font-Jost);
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: var(--text-light4);
  margin-bottom: 0;
}
.collection-details .collection-details-content p {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: var(--text-light4);
}
.collection-details .collection-details-content .collection-timer p {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-family: var(--font-prompt);
}
.collection-details .collection-details-content .collection-timer h3 {
  margin-bottom: 0;
  font-family: var(--font-Jost);
  font-weight: 600;
  font-size: 35px;
  line-height: 35px;
  color: var(--white);
}
.collection-details .collection-details-content .collection-feature {
  padding-top: 15px;
}
.collection-details .collection-details-content .collection-feature .features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}
.collection-details .collection-details-content .collection-feature .features li {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--text-light4);
  margin-right: 12px;
}
.collection-details .collection-details-content .collection-feature .features li svg {
  fill: var(--primary-color1);
}
.collection-details .collection-details-content .single-features {
  background: var(--bg-color3);
  border: 1px solid rgba(0, 139, 94, 0.1);
  border-radius: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  transition: 0.35s;
  position: relative;
}
.collection-details .collection-details-content .single-features span {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-transform: capitalize;
  color: var(--primary-color1);
  display: inline-block;
  margin-bottom: 5px;
  transition: 0.35s;
}
.collection-details .collection-details-content .single-features h5 {
  margin-bottom: 0;
  font-family: var(--font-prompt);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  text-transform: capitalize;
  color: #c2c2c2;
  transition: 0.35s;
}
.collection-details .collection-details-content .single-features:hover {
  background-color: var(--primary-color1);
}
.collection-details .collection-details-content .single-features:hover span {
  color: var(--white);
}
.collection-details .collection-details-content .nft-collection-btn {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .collection-details .collection-details-content .nft-collection-btn {
    flex-wrap: wrap;
  }
}
.collection-details .collection-details-content .open-btn {
  padding-top: 25px;
  width: 100%;
}
.collection-details .collection-details-content .open-btn svg {
  margin-right: 8px;
}
.collection-details .collection-details-content .open-btn a {
  width: 100%;
  padding: 15px 35px;
  color: #fff;
  font-weight: 600;
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
  border: 1px solid var(--primary-color1);
  background-color: transparent;
  display: inline-flex;
  text-decoration: none;
  transition: all 0.45s ease-in-out;
  transform: skewX(6deg);
}
.collection-details .collection-details-content .open-btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  transition: all 0.55s ease-in-out;
}
.collection-details .collection-details-content .open-btn a:hover {
  background-color: var(--primary-color1);
  color: var(--white);
}
.collection-details .collection-details-content .open-btn a:hover::before {
  left: -8px;
  top: -8px;
  opacity: 1;
}
.collection-details .collection-thumb-slider {
  padding: 25px 25px 57px;
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .collection-details .collection-thumb-slider {
    padding: 25px 25px 30px;
  }
}
.collection-details .collection-thumb-slider .slider-btn {
  margin-top: -62px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .collection-details .collection-thumb-slider .slider-btn {
    margin-top: 30px;
  }
}
.collection-details .collection-thumb-slider .slider-btn .swiper-button-next1 {
  border: 1px solid;
  border-color: rgba(var(--primary-color1), 0.3);
  transform: skewX(6deg);
  width: 35px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.collection-details .collection-thumb-slider .slider-btn .swiper-button-next1 i {
  color: rgba(var(--primary-color1), 0.3);
  font-size: 22px;
  transition: 0.35s;
}
.collection-details .collection-thumb-slider .slider-btn .swiper-button-next1:hover {
  border-color: var(--primary-color1);
}
.collection-details .collection-thumb-slider .slider-btn .swiper-button-next1:hover i {
  color: var(--primary-color1);
}
.collection-details .collection-thumb-slider .slider-btn .swiper-button-prev1 {
  border: 1px solid;
  border-color: rgba(0, 139, 94, 0.3);
  transform: skewX(-6deg);
  width: 35px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.collection-details .collection-thumb-slider .slider-btn .swiper-button-prev1 i {
  color: rgba(var(--primary-color1), 0.3);
  font-size: 22px;
  transition: 0.35s;
}
.collection-details .collection-thumb-slider .slider-btn .swiper-button-prev1:hover {
  border-color: var(--primary-color1);
}
.collection-details .collection-thumb-slider .slider-btn .swiper-button-prev1:hover i {
  color: var(--primary-color1);
}
.collection-details .collection-thumb-slider .collection-thumb-slider02 {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.collection-details .collection-thumb-slider .collection-thumb-slider02:first-child img {
  opacity: 1;
}
.collection-details .collection-thumb-slider .collection-thumb-slider02 img {
  width: 100%;
  opacity: 0.3;
}
.collection-details .collection-thumb-slider .collection-thumb-slider01 {
  margin-bottom: 30px;
}
.collection-details .collection-thumb-slider .collection-thumb-slider01 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.collection-details .swiper-slide.swiper-slide-visible.swiper-slide-active.swiper-slide-thumb-active img {
  opacity: 1;
}

.section-title-lg-list > span {
  display: inline-block;
  padding: 10px 20px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color1);
  font-family: var(--font-prompt);
  margin: 0 auto 30px auto;
}
.section-title-lg-list > span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%) skewX(-8deg);
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color1);
  opacity: 0.3;
}
.section-title-lg-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.section-title-lg-list ul li {
  font-size: 4.688rem;
  font-weight: 400;
  color: var(--white);
  font-family: var(--font-prompt);
  text-align: center;
  margin-bottom: 0px;
  line-height: 1.45;
  display: flex;
}
@media (max-width: 767px) {
  .section-title-lg-list ul li {
    font-size: 2.5rem;
  }
}
.section-title-lg-list ul li:nth-child(3) {
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  -webkit-text-fill-color: transparent;
}
.section-title-lg-list ul li img {
  padding: 0px 20px;
}
@media (max-width: 767px) {
  .section-title-lg-list ul li img {
    max-width: 65px;
    vertical-align: baseline;
  }
}

.contact-section .contact-form-area {
  position: relative;
  padding: 70px 45px;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 576px) {
  .contact-section .contact-form-area {
    padding: 70px 20px;
  }
}
.contact-section .contact-form-area .section-title {
  margin-bottom: 35px;
}
.contact-section .contact-form-area .section-title h3 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 35px;
  line-height: 45px;
  text-transform: capitalize;
  color: var(--white);
}
.contact-section .contact-form-area .form-inner input,
.contact-section .contact-form-area .form-inner textarea {
  transform: skewX(0deg);
  background-color: transparent;
}
.contact-section .contact-form-area .form-inner input::after,
.contact-section .contact-form-area .form-inner textarea::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transform: skewX(0deg);
  z-index: -1;
}
.contact-section .contact-form-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transform: skewX(0deg);
  z-index: -1;
}
.contact-section .contact-form-area .submit-btn {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 15px 35px;
  color: var(--primary-color1);
  border-radius: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-prompt);
  border: 1px solid var(--primary-color1);
  background-color: transparent;
  display: inline-flex;
  text-decoration: none;
  transition: all 0.45s ease-in-out;
  transform: skewX(4deg);
}
.contact-section .contact-form-area .submit-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  transition: all 0.55s ease-in-out;
}
.contact-section .contact-form-area .submit-btn:hover {
  background-color: var(--primary-color1);
  color: var(--white);
}
.contact-section .contact-form-area .submit-btn:hover::before {
  left: -8px;
  top: -8px;
  opacity: 1;
}
.contact-section .address-area {
  max-width: 584px;
  width: 100%;
  text-align: center;
  padding: 70px 40px;
  position: relative;
  z-index: 1;
  margin-left: auto;
}
@media (max-width: 1399px) {
  .contact-section .address-area {
    padding: 70px 25px;
  }
}
@media (max-width: 991px) {
  .contact-section .address-area {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact-section .address-area {
    padding: 50px 25px;
  }
}
.contact-section .address-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.3;
  border: 1px solid var(--primary-color1);
  transform: skewX(2deg);
  z-index: -1;
}
@media (max-width: 576px) {
  .contact-section .address-area::after {
    transform: skewX(0deg);
  }
}
.contact-section .address-area .section-title h2 {
  font-family: var(--font-prompt);
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  line-height: 58px;
  text-transform: capitalize;
  color: var(--white);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-section .address-area .section-title h2 {
    font-size: 37px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .contact-section .address-area .section-title h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 500;
  }
}
.contact-section .address-area .address-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-section .address-area .address-list li {
  margin-bottom: 50px;
}
.contact-section .address-area .address-list li:last-child {
  margin-bottom: 0;
}
.contact-section .address-area .address-list li .text h4 {
  font-family: var(--font-prompt);
  font-weight: 600;
  font-size: 35px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--primary-color1);
  margin-bottom: 20px;
}
.contact-section .address-area .address-list li .text a {
  font-family: var(--font-Jost);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: var(--text-light4);
}

.form-inner input[type=submit]:hover, .form-inner .contact-form textarea[type=submit]:hover, .contact-form .form-inner textarea[type=submit]:hover, .form-inner .comment-form-wrapper .comment-form textarea[type=submit]:hover, .comment-form-wrapper .comment-form .form-inner textarea[type=submit]:hover {
  color: #fff;
  transform: skew(-8deg);
}

.collection-section1 .first-collection a:hover {
  color: var(--primary-color1);
}

.collection-section1 a:hover {
  color: var(--primary-color1);
}

.latest-collection-setion3 a:hover {
  color: var(--primary-color1);
}

header.style-1 .main-menu ul li.menu-item-has-children > i {
  display: block !important;
}

header.style-1 .main-menu ul > li ul.sub-menu > li .sub-menu li i {
  display: none;
}

.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li.menu-item-has-children > .bi {
  display: block !important;
}

.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li ul.sub-menu li i {
  display: none !important;
}

.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li ul.sub-menu li.menu-item-has-children i {
  display: inline-block !important;
}

.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li ul.sub-menu li .sub-menu i {
  display: none !important;
}

.main-nav-wrapper .main-nav .sidebar-menu-area > ul > li ul.sub-menu li .sub-menu li.menu-item-has-children i {
  display: inline-block !important;
}

@media screen and (max-width: 768px) {
  .roadmap-section .swiper-roadmap-small {
    display: none;
  }
}
.feature-one-section {
  margin-bottom: 50px;
}

.testimonial-one-section {
  margin-bottom: 50px;
}

.current-menu-item > a {
  color: var(--primary-color1) !important;
}

header.style-1 .main-menu ul > li.current-menu-item > a::before {
  content: "";
  width: 100%;
  height: 35px;
  background-color: transparent;
  border: 1px solid var(--primary-color1);
  transform: skewX(-20px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(8deg);
  opacity: 1;
  transition: all 0.5s ease-out 0s;
}

.collection-section1 svg path {
  fill: var(--primary-color1);
  stroke: var(--primary-color1);
}

.features-section svg path {
  fill: var(--primary-color1);
  stroke: var(--primary-color1);
}

.roadmap-section svg path {
  fill: var(--primary-color1);
  stroke: var(--primary-color1);
}

.trending-single1 {
  border-color: var(--primary-color1);
}

.blog-section svg path {
  stroke: var(--primary-color1);
}

.counter-single svg path {
  fill: var(--primary-color1);
}

.testimonial-section2 svg path {
  fill: var(--primary-color1);
}

.roadmap-section3 svg path {
  fill: var(--primary-color1);
}

.blog-section3 svg path {
  stroke: var(--primary-color1);
  fill: var(--primary-color1);
}

.feature-item svg path {
  fill: var(--primary-color1);
}

.feature3-image svg path {
  stroke: var(--primary-color1);
}

.rare-feature-image .rare-ellipse svg path {
  stroke: var(--primary-color1);
}

.comments-area .comment-title svg path {
  fill: var(--primary-color1);
}

.error-area-wrapper h3 {
  font-size: 40px;
  color: #fff;
  margin: 40px 0 20px 0;
  font-weight: bold;
}

.error-area-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.error-area-wrapper form {
  display: flex;
  justify-content: center;
}

.sidebar-widget.page-search form input, .sidebar-widget.page-search form .contact-form textarea, .contact-form .sidebar-widget.page-search form textarea, .sidebar-widget.page-search form .comment-form-wrapper .comment-form textarea, .comment-form-wrapper .comment-form .sidebar-widget.page-search form textarea {
  width: 100%;
  margin-right: -5px;
  color: #666666;
  border-radius: 5px 0px 0px 5px;
  border: 1px solid #eeeeee;
  padding: 10px;
}

.error-area-wrapper button.searchbtnn {
  transform: unset;
}

button.searchbtnn:hover {
  background-color: var(--primary-color1) !important;
  color: #fff;
}

button.searchbtnn i {
  margin-top: 13px;
}

.error-area-wrapper button.searchbtnn {
  transform: unset;
  padding: 0 15px;
  min-width: 60px;
  border-radius: 0 5px 5px 0;
}

.hss {
  width: 120px !important;
  border: 1px solid #ddd;
  line-height: 45px;
  border-radius: 5px;
  color: var(--primary-color1);
}

.hss:hover {
  background: var(--primary-color1);
  color: #fff;
  transition: 0.3s ease;
}

.footer-text-area .wp-block-image {
  margin-top: 0;
  margin-bottom: 15px;
}

.blog-content svg path {
  fill: var(--primary-color1);
  stroke: var(--primary-color1);
}

.contact-form button {
  transform: unset;
}

.contact-form-area button {
  transform: unset;
}

.choose-us-section .section-title4 {
  margin-right: 0;
  margin-left: 0;
}

.bread-crumb-section {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.mc4wp-alert.mc4wp-error p {
  position: absolute;
  margin-top: 15px;
}

.blog-content p {
  color: var(--text-light4);
}

.breadcrumb .breadcrumb-item.active {
  color: var(--text-light4);
}

.form-inner .btn--primary:before {
  left: 50%;
}

form#commentform p.logged-in-as {
  color: var(--text-light4);
}

.comments-area .comment-title h3 svg {
  vertical-align: baseline;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: red;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0em 1em;
  padding: 0.2em 1em;
  border: 2px solid var(--primary-color1);
}

@media screen and (max-width: 767px) {
  a.eg-btn.btn--md.btn--primary.mt-4 {
    min-width: 100%;
  }
}
body.logged-in.admin-bar .main-nav-wrapper .main-nav.show-menu {
  margin-top: 32px;
}

.swiper.swiper-roadmap-small::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: 0;
  width: 20px;
  height: 21px;
  background: #020b0d;
  transform: rotate(69deg);
  z-index: 9;
  border: none;
}

.swiper.swiper-roadmap-small::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 38px;
  width: 20px;
  height: 20px;
  transform: rotate(69deg);
  background: #020b0d;
  z-index: 9;
  border: none;
}

.breadcrumb {
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .section-title-lg-list ul li img {
    display: none;
  }
  .section-title-lg-list ul li {
    margin: 0 15px;
  }
}
.comments-area .comment-respond {
  margin-bottom: 60px;
}/*# sourceMappingURL=style.css.map */