/*-------------------------------------------------------------------
Theme Name: Raizen
Author: Bug Finder
Author URI: https://themeforest.net/user/bug-finder/portfolio
Version: 1.0.0 
Description: Raizen - Personal Portfolio
---------------------------------------------------------------------
    CSS TABLE OF CONTENTS
---------------------------------------------------------------------
    01. Mixins
    02. Variables
    03. Typography
    04. Extend
    05. Animation
    06. Buttons
    07. Card
    08. Common
    09. Container
    10. Form
    11. Gutter
    12. Helping
    13. Meanmenu
    14. Preloader
    15. Spacing
    16. Text Slider
    17. Title
    18. Footer
    19. Header
    20. About
    21. Achievement
    22. Advantage
    23. Blog
    24. Brand
    25. Contact
    26. Counter
    27. Intro
    28. Professional
    29. Projects
    30. Services
    31. Social Media
    32. Team
    33. Testimonials
-------------------------------------------------------------------*/
/* ==========================================================================
   01. Mixins
   ========================================================================== */
/* ==========================================================================
   02. Variables
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
:root {
  /* --- Main Colors --- */
  --body: #ffffff;
  --black: #0A0909;
  --white: #ffffff;
  /* --- Theme Colors --- */
  --theme: #d9ff00;
  --theme-2: #D9FF00;
  --theme-3: #D9FF00;
  --theme-4: #C4F112;
  --theme-5: #0E0E0E;
  --theme-6: #1D1D1D;
  --orange: #F74F22;
  /* --- Typography Colors --- */
  --header-color: #241442;
  --title-color: #9A9A9A;
  --text-color: #0a0909;
  --btn-text: #252525;
  --pra-text: #616161;
  /* --- Background Colors --- */
  --bg-color: #F1F1F1;
  --bg-color-2: #F5F5F5;
  --gray1: #F6F8F0;
  /* --- Border Colors --- */
  --border: #E4E4E4;
  --border-2: #3D3D3D;
  --border-3: #F2F2F2;
  --border-4: #C0C0C0;
  --border-old-1: #D0D0D0;
  --border-old-2: #D4DCED;
  /* --- Shadows & Effects --- */
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  /* --- Font Families --- */
  --font-primary: "Satoshi", sans-serif;
  --font-secondary: "Satoshi", sans-serif;
  --font-body: "Satoshi", sans-serif;
  /* --- Icon Fonts --- */
  --fa: "Font Awesome 6 Pro";
}

/* ==========================================================================
   03. Typography
   ========================================================================== */
/* ==========================================================================
   Template Default Fonts & Typography Styles
   ========================================================================== */
/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--black);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
input:focus {
  color: var(--text-color);
  outline: none;
}

input::-moz-placeholder {
  color: #767771;
}

input::placeholder {
  color: #767771;
}

/* ==========================================================================
   Heading Styles
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin: 0px;
  padding: 0;
  color: var(--text-color);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-weight: 700;
  font-size: 180px;
  line-height: 180px;
}
@media (max-width: 1800px) {
  h1 {
    font-size: 170px;
    line-height: 170px;
  }
}
@media (max-width: 1399px) {
  h1 {
    font-size: 75px;
    line-height: 75px;
  }
}

h2 {
  font-size: 80px;
  font-weight: 500;
  line-height: 150%;
  color: var(--black);
}
h2 span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--pra-text);
}
@media (max-width: 1700px) {
  h2 {
    font-size: 60px;
    line-height: 140%;
  }
}
@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  h2 {
    text-align: center;
    margin-left: 0;
    font-size: 35px;
    line-height: 135%;
  }
}
@media (max-width: 500px) {
  h2 {
    font-size: 29px;
    line-height: 32px;
  }
}

h3 {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--black);
}
@media (max-width: 1399px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  color: var(--black);
}

h6 {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  color: var(--pra-text);
}
@media (max-width: 991px) {
  h6 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  h6 {
    font-size: 16px;
  }
}

/* ==========================================================================
   Heading Links
   ========================================================================== */
h2 a {
  font-size: 80px;
  font-weight: 500;
  line-height: 150%;
  color: var(--black);
}
@media (max-width: 767px) {
  h2 a {
    font-size: 45px !important;
  }
}
@media (max-width: 575px) {
  h2 a {
    font-size: 28px !important;
  }
}

h3 a {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  display: inline-block;
}
@media (max-width: 767px) {
  h3 a {
    font-size: 16px;
  }
}

h4 a {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--black);
  display: inline-block;
}
@media (max-width: 1399px) {
  h4 a {
    font-size: 20px;
  }
}

h5 a {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  display: inline-block;
}

h6 a {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  color: var(--white);
  display: inline-block;
}

/* ==========================================================================
   Inline Elements & Global Links
   ========================================================================== */
a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header-color);
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: var(--orange) !important;
}

p {
  margin: 0px;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--pra-text);
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  transition: all 0.4s ease-in-out;
}

span a {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

/* ==========================================================================
   04. Extend
   ========================================================================== */
/* Theme Button Base */
.bf-btn-wrap .bf-theme-btn {
  display: flex;
  align-items: center;
  gap: 8px; /* Standardized gap */
  flex-direction: row;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 60px;
}

/* Sub-title Style */
.sub-title {
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 4px 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Flexbox Helpers
   ========================================================================== */
.service-wrapper.style-three .service-card .service-card-items .items-content-wrap, .service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide .thumb-teb-content, .service-wrapper .custom-container .section-title .content-right, .professional-wrapper .experience-content-wrap .experience-list-item, .about-wrapper.style-three .about-counter .about-counter-wrap, .section-top-title .content-right, .blog-card.card-2 .blog-card-content .meta-cta, .blog-card.card-2, .blog-card {
  display: flex;
  align-items: center;
}

.team-wrapper .custom-container .team-slider .team-slider-active .thumb-content ul, .project-wrapper.style-three .bf-btn-wrap, .professional-wrapper .experience-content-wrap .icon, .professional-wrapper .skill-content-wrap ul li .progress-counter, .professional-wrapper .skill-content-wrap ul li .icon, .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon, .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content .achievement-btn, .about-wrapper.style-two .about-bottom-content .about-btn, .footer-wrapper.style-two .footer-main-content .footer-nav, .footer-wrapper .footer-top-content .footer-button, .testimonial-card .middle-content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-wrapper.style-three .service-card .service-card-items, .service-wrapper.style-two .nav .nav-link, .service-wrapper .custom-container .section-title, .professional-wrapper .skill-content-wrap ul li, .inner-wrapper.style-three .inner-container, .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content, .about-wrapper.style-three .about-right-content .about-bottom-content, .footer-wrapper.style-two .footer-top-content, .footer-wrapper .footer-top-content, .section-top-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-wrapper.style-two .custom-container .inner-cta, .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper, .about-wrapper.style-three .about-right-content, .about-wrapper .about-banner-img .about-thumb-cta, .blog-card-wrapper {
  display: flex;
  flex-direction: column;
}

.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide .thumb-teb-content p {
  display: flex;
  flex-direction: row;
}

.mr-auto {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

/* ==========================================================================
   Positioning & Transform Helpers
   ========================================================================== */
.service-wrapper.style-three .service-card .service-card-items .service-btn .cir-btn .arrow-svg {
  top: 50%;
  transform: translateY(-50%);
}

.circle-thumb .shape-line-svg-2, .circle-thumb .shape-line-svg-1 {
  left: 50%;
  transform: translateX(-50%);
}

/* ==========================================================================
   Common Section Elements
   ========================================================================== */
/* Circle Shape */
.circle-thumb .text-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 100px;
}
@media (max-width: 500px) {
  .circle-thumb .text-shape {
    width: 55px;
    height: 55px;
  }
}

/* ==========================================================================
   05. Animation
   ========================================================================== */
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
.cir36 {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}

.cir36:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-x {
  0% {
    transform: translateX(30px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounce-x {
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.img-custom-anim-right {
  animation: img-anim-right 0.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 0.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1s forwards;
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-fix {
  opacity: 0;
  animation: img-anim-tops 2s ease-out forwards;
}

@keyframes img-anim-tops {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/* Hero Animation */
.tp-image-distortion {
  position: relative;
  overflow: hidden;
}

.tp-image-distortion canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  display: block;
}

/* Thumb Hover Animation */
.hover-thumb {
  position: relative;
  overflow: hidden;
}

.hover-thumb img {
  width: 100%;
  border-radius: 10px;
}

.hover-thumb .thumb-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out;
  background-size: cover;
}

@media (max-width: 767px) {
  .hover-thumb .thumb-2 {
    width: 100%;
  }
}
.hover-thumb:hover img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.hover-thumb:hover img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

.wave-wrapper {
  width: 100%;
  overflow: hidden;
}

.wave {
  width: 200%;
  animation: waveMove 6s linear infinite;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.svg-dash {
  stroke: #616161;
  stroke-width: 1;
  stroke-dasharray: 6 10;
  animation: svg-dash-move 1s linear infinite;
}

@keyframes svg-dash-move {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -16;
  }
}
.bar {
  fill: linear-gradient(180deg, #181818, #474747);
  transform: translateY(-120%);
  opacity: 0;
  animation: fall 0.9s ease-out forwards;
}

/* Stagger Delay */
.bar:nth-child(1) {
  animation-delay: 0s;
}

.bar:nth-child(2) {
  animation-delay: 0.2s;
}

.bar:nth-child(3) {
  animation-delay: 0.4s;
}

.bar:nth-child(4) {
  animation-delay: 0.6s;
}

.bar:nth-child(5) {
  animation-delay: 0.8s;
}

.bar:nth-child(6) {
  animation-delay: 1s;
}

@keyframes fall {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes smoothSlideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ==========================================================================
   06. Buttons
   ========================================================================== */
/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/
.bf-btn-wrap .bf-theme-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #d9ff00;
  border-radius: 60px;
  border: 1px solid transparent;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bf-btn-wrap .bf-theme-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--black);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: -1;
}
.bf-btn-wrap .bf-theme-btn span,
.bf-btn-wrap .bf-theme-btn svg {
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
}
.bf-btn-wrap .bf-theme-btn:hover::before {
  transform: translateX(0);
}
.bf-btn-wrap .bf-theme-btn:hover span {
  color: var(--white);
}
.bf-btn-wrap .bf-theme-btn:hover svg {
  transform: translateX(3px);
}
.bf-btn-wrap .bf-theme-btn:hover svg path {
  fill: var(--white);
}
.bf-btn-wrap .bf-theme-btn.black-btn {
  background: var(--black);
}
.bf-btn-wrap .bf-theme-btn.black-btn::before {
  background: #d9ff00;
}
.bf-btn-wrap .bf-theme-btn.black-btn span {
  color: var(--white);
}
.bf-btn-wrap .bf-theme-btn.black-btn svg path {
  fill: var(--white);
}
.bf-btn-wrap .bf-theme-btn.black-btn:hover span {
  color: var(--black);
}
.bf-btn-wrap .bf-theme-btn.black-btn:hover svg {
  transform: translateX(3px);
}
.bf-btn-wrap .bf-theme-btn.black-btn:hover svg path {
  fill: var(--black);
}
.bf-btn-wrap .bf-theme-btn span {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
}

.gt-hover-btn-wrapper {
  display: inline-block;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
  font-weight: 400 !important;
  font-size: 18px;
  line-height: 170%;
  text-align: center;
  color: var(--pra-text);
  text-transform: capitalize;
  border: 1px solid var(--border) !important;
  z-index: 1;
  width: 200px;
  height: 200px;
  border: 0;
  background: var(--white);
}
.gt-hover-btn-wrapper .gt-btn-circle-2:hover {
  color: var(--black) !important;
}
.gt-hover-btn-wrapper .gt-btn-circle-2:hover .gt-btn-circle-dot {
  width: 520px;
  height: 520px;
}
.gt-hover-btn-wrapper .gt-btn-circle-2:hover.bg-2 {
  border: 1px solid var(--border);
  background: var(--theme) !important;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: var(--theme);
  line-height: 20px;
  border-radius: 50%;
  transition: all 0.5s ease-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-dot.bg-2 {
  background-color: var(--theme);
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2 {
  display: block;
  padding: 0 30px;
  align-items: center;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2:hover {
  color: var(--black) !important;
}

/* ==========================================================================
   07. Card
   ========================================================================== */
/* Social Media card*/
.social-media-card .card-content {
  margin-bottom: 44px;
  text-align: center;
}
@media (max-width: 767px) {
  .social-media-card .card-content {
    margin-bottom: 20px;
  }
}
.social-media-card .card-content .card-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
  color: var(--black);
}
.social-media-card .card-content p {
  margin-bottom: 4px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--pra-text);
}

/* Testimonial Media*/
.testimonial-card {
  position: relative;
  min-height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.testimonial-card .quotation-icon {
  position: absolute;
  right: 0;
  top: 0;
}
.testimonial-card h2 {
  color: var(--white);
  margin-bottom: 60px;
}
.testimonial-card .middle-content-wrap {
  margin-bottom: 80px;
  gap: 120px;
}
.testimonial-card .middle-content-wrap .animation-border-wrap {
  width: 419px;
}
@media (max-width: 991px) {
  .testimonial-card .middle-content-wrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .testimonial-card .middle-content-wrap {
    margin-bottom: 30px;
  }
}
.testimonial-card .main-review {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .testimonial-card .main-review {
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .testimonial-card .main-review {
    margin-bottom: 20px;
  }
}
.testimonial-card .main-review p {
  text-align: center;
  color: var(--white);
  max-width: 1636px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 575px) {
  .testimonial-card .main-review p {
    font-size: 14px;
  }
}
.testimonial-card .main-review p span {
  color: var(--pra-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 991px) {
  .testimonial-card .main-review p span {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .testimonial-card .main-review p span {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .testimonial-card .main-review p span {
    font-size: 14px;
  }
}
.testimonial-card .clint-info {
  text-align: center;
}
.testimonial-card .clint-info .name {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
}
.testimonial-card.style-two {
  margin: 0 auto;
  background: var(--white);
  padding: 80px 46px 56px 46px;
  position: relative;
  z-index: 99;
  border-radius: 16px;
}
@media (max-width: 575px) {
  .testimonial-card.style-two {
    padding: 25px;
    width: 100%;
  }
}
.testimonial-card.style-two .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 575px) {
  .testimonial-card.style-two .shape {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .testimonial-card.style-two .shape img {
    width: 100%;
  }
}
.testimonial-card.style-two .icon {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 575px) {
  .testimonial-card.style-two .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
  }
}
.testimonial-card.style-two .text {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .testimonial-card.style-two .text {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .testimonial-card.style-two .text {
    font-size: 12px;
  }
}
.testimonial-card.style-two .title {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  text-align: center;
  color: #000;
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .testimonial-card.style-two .title {
    font-size: 16px;
  }
}
.testimonial-card.style-two .position {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .testimonial-card.style-two .position {
    margin-bottom: 15px;
  }
}
.testimonial-card.style-two .thumb {
  text-align: center;
}
.testimonial-card.style-three {
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  padding: 80px 46px 56px 46px;
  position: relative;
  z-index: 99;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .testimonial-card.style-three {
    padding: 40px;
  }
}
.testimonial-card.style-three .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.testimonial-card.style-three .icon {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1399px) {
  .testimonial-card.style-three .icon {
    margin-bottom: 20px;
  }
}
.testimonial-card.style-three .text {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .testimonial-card.style-three .text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.testimonial-card.style-three .title {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  text-align: center;
  color: #000;
  margin-bottom: 4px;
}
.testimonial-card.style-three .position {
  text-align: center;
  margin-bottom: 50px;
}
.testimonial-card.style-three .thumb {
  text-align: center;
}

/* Blog Card*/
.blog-card-wrapper {
  align-items: end;
  gap: 60px;
}
@media (max-width: 991px) {
  .blog-card-wrapper {
    gap: 30px;
  }
}

/* Blog Media*/
.blog-card:nth-child(2) {
  margin-right: 285px;
}
@media (max-width: 1399px) {
  .blog-card:nth-child(2) {
    margin-right: 70px;
  }
}
@media (max-width: 1199px) {
  .blog-card:nth-child(2) {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .blog-card:nth-child(2) {
    margin-right: 0;
  }
}
.blog-card .thumb {
  min-width: 187px;
}
.blog-card.card-2 {
  gap: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 1110px;
  background: var(--white);
}
@media (max-width: 1600px) {
  .blog-card.card-2 {
    width: 1000px;
  }
}
@media (max-width: 1199px) {
  .blog-card.card-2 {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .blog-card.card-2 {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .blog-card.card-2 {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .blog-card.card-2 .thumb {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .blog-card.card-2 .thumb img {
    width: 100%;
  }
}
.blog-card.card-2 .blog-card-content .meta-cta {
  display: inline-flex;
  gap: 40px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .blog-card.card-2 .blog-card-content .meta-cta {
    margin-bottom: 0;
  }
}
@media (max-width: 450px) {
  .blog-card.card-2 .blog-card-content .meta-cta {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
.blog-card.card-2 .blog-card-content .meta-cta p {
  position: relative;
}
.blog-card.card-2 .blog-card-content .meta-cta p:first-child::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pra-text);
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  right: -22px;
}
.blog-card.card-2 .blog-card-content .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .blog-card.card-2 .blog-card-content .title {
    font-size: 18px;
    margin-top: 10px;
  }
}
.blog-card.card-2 .blog-card-content .blog-btn a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--pra-text);
}
.blog-card.card-2 .blog-card-content .blog-btn a span {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  display: inline-block;
  border-radius: 100%;
  position: relative;
}
.blog-card.card-2 .blog-card-content .blog-btn a span .arrow-svg {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.blog-card.card-2 .blog-card-content .blog-btn a span .arrow-svg path {
  transition: all 0.4s ease-in-out;
}
.blog-card.card-2 .blog-card-content .blog-btn a:hover span {
  border: 1px solid var(--orange);
}
.blog-card.card-2 .blog-card-content .blog-btn a:hover .arrow-svg path {
  fill: var(--orange);
}

/*Blog Page Card */
.blog-page-card .thumb img {
  border-radius: 16px;
}
@media (max-width: 991px) {
  .blog-page-card .thumb img {
    width: 100%;
  }
}
.blog-page-card .blog-page-card-content {
  padding: 40px 66px 40px 40px;
  background: var(--border-3);
  border-radius: 16px;
}
@media (max-width: 767px) {
  .blog-page-card .blog-page-card-content {
    padding: 25px;
  }
}
.blog-page-card .blog-page-card-content .meta-date {
  position: relative;
  color: var(--black);
  margin-left: 30px;
  margin-bottom: 24px;
}
.blog-page-card .blog-page-card-content .meta-date::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--black);
  border-radius: 100%;
}
.blog-page-card .blog-page-card-content .title a {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--black);
  display: inline-block;
}
@media (max-width: 991px) {
  .blog-page-card .blog-page-card-content .title a {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .blog-page-card .blog-page-card-content .title a {
    margin-bottom: 20px;
  }
}
.blog-page-card .blog-page-card-content p {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .blog-page-card .blog-page-card-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 350px) {
  .blog-page-card .blog-page-card-content p {
    font-size: 14px;
  }
}
.blog-page-card .blog-page-card-content .blog-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.blog-page-card .blog-page-card-content .blog-author .blog-thumb {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-page-card .blog-page-card-content .blog-author .thumb-content .author-name {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--black);
  margin-bottom: 10px;
}
.blog-page-card .blog-page-card-content .blog-author .thumb-content .position {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--pra-text);
}
.blog-page-card .blog-page-card-content .blog-author .bf-btn-wrap .bf-theme-btn {
  background: transparent;
  border: 1px solid var(--border);
}
.blog-page-card .blog-page-card-content.style-two {
  background: transparent;
  padding: 0;
}
.blog-page-card .blog-page-card-content.style-two .meta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.blog-page-card .blog-page-card-content.style-two .meta-content span {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--pra-text);
}
.blog-page-card .blog-page-card-content.style-two .title a {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--black);
}

/*Experience Card*/
.experience-content-card {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 153px;
  background: var(--border-3);
  padding: 60px 24px 32px 23px;
  border-radius: 16px;
}
.experience-content-card.thumb-card {
  background: transparent !important;
  padding: 0;
}
.experience-content-card.thumb-card .thumb {
  height: 611px;
  border-radius: 16px;
}
.experience-content-card.thumb-card .thumb img {
  height: 100% !important;
  border-radius: 16px;
  margin-top: -150;
}
.experience-content-card .experience {
  position: relative;
  width: 100%;
}
@media (max-width: 1199px) {
  .experience-content-card .experience {
    display: none;
  }
}
@media (max-width: 1199px) {
  .experience-content-card .experience.experience {
    display: block !important;
  }
}
.experience-content-card .experience .title {
  font-weight: 700;
  font-size: 260px;
  line-height: 197px;
  text-align: left;
  color: var(--black);
  text-align: center;
}
@media (max-width: 1600px) {
  .experience-content-card .experience .title {
    font-size: 220px;
  }
}
@media (max-width: 1600px) {
  .experience-content-card .experience .title {
    font-size: 193px;
  }
}
.experience-content-card .experience span {
  background-color: var(--theme);
  padding: 8px 32px;
  border-radius: 60px;
  display: inline-block;
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%) rotate(-28.08deg);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: var(--black);
}
@media (max-width: 1600px) {
  .experience-content-card .experience span {
    padding: 8px 20px;
    font-size: 12px;
  }
}
@media (max-width: 1399px) {
  .experience-content-card .experience span {
    padding: 8px 10px;
    font-size: 12px;
    width: 100%;
    left: 10px;
  }
}
@media (max-width: 1199px) {
  .experience-content-card .experience span {
    width: 250px;
    left: 50%;
    transform: translateX(-50%) rotate(-28.08deg);
    text-align: center;
  }
}
@media (max-width: 450px) {
  .experience-content-card .experience span {
    width: 208px;
    left: 50%;
    transform: translateX(-50%) rotate(-28.08deg);
    text-align: center;
  }
}
.experience-content-card .experience .rating-title {
  font-weight: 500;
  font-size: 80px;
  line-height: 150%;
  color: var(--black);
}
.experience-content-card .text {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--pra-text);
}

/*Gallery Card */
.gallery-wrapper .thumb {
  border-radius: 16px;
}
.gallery-wrapper .thumb img {
  border-radius: 16px;
}

/* Team Three*/
.team-slider-three .swiper-wrapper {
  overflow: visible !important;
}
.team-slider-three .swiper-wrapper > .swiper-slide {
  overflow: visible !important;
}
.team-slider-three .swiper-wrapper > .swiper-slide:nth-child(odd) {
  margin-top: 60px;
}

/*Team Card Three*/
.team-card .thumb {
  position: relative;
}
.team-card .thumb .personal-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  bottom: -1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
}
.team-card .thumb .personal-info .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--black);
}
.team-card .thumb:hover .personal-info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.team-card .thumb:hover .social-info {
  display: flex;
  transform: translateX(0);
  pointer-events: auto;
}
.team-card .thumb .social-info {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--white);
  border-radius: 8px 0 0 0;
  padding: 12px 10px;
  display: none;
}
.team-card .thumb .social-info ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team-card .thumb .social-info ul li {
  list-style: none;
}
.team-card .thumb .social-info ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}
.team-card .thumb .social-info ul li a svg {
  width: 16px;
  height: 16px;
  fill: var(--black);
}
.team-card .thumb .social-info ul li a:hover {
  background: var(--theme);
}
.team-card .thumb .social-info ul li a:hover svg {
  fill: var(--white);
}

/* Common Card */
.inner-page-section-card-wrapper .inner-page-section-card {
  padding-top: 39px;
  border-top: 1px dotted var(--title-color);
  margin-bottom: 60px;
}
.inner-page-section-card-wrapper .inner-page-section-card:last-child {
  margin-bottom: 0;
}
.inner-page-section-card-wrapper .inner-page-section-card .left-content span {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--pra-text);
}
.inner-page-section-card-wrapper .inner-page-section-card .medial-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}
.inner-page-section-card-wrapper .inner-page-section-card .medial-content .medial-top-content .title a {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--black);
}
.inner-page-section-card-wrapper .inner-page-section-card .medial-content .medial-top-content .text {
  max-width: 498px;
}
.inner-page-section-card-wrapper .inner-page-section-card .medial-content .medial-bottom-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 429px;
  max-width: 570px;
}
.inner-page-section-card-wrapper .inner-page-section-card .medial-content .medial-bottom-content span {
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 4px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--black);
}
@media (max-width: 450px) {
  .inner-page-section-card-wrapper .inner-page-section-card .medial-content .medial-bottom-content span {
    font-size: 16px;
    padding: 4px 20px;
  }
}
.inner-page-section-card-wrapper .inner-page-section-card .medial-content .thumb img {
  border-radius: 16px;
}

.inner-page-section-card-wrapper-two .inner-page-section-card .thumb {
  margin-bottom: 32px;
}
.inner-page-section-card-wrapper-two .inner-page-section-card .thumb img {
  border-radius: 16px;
}
.inner-page-section-card-wrapper-two .inner-page-section-card .bottom-content .title {
  margin-bottom: 32px;
}
.inner-page-section-card-wrapper-two .inner-page-section-card .bottom-content .title a {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--black);
}
.inner-page-section-card-wrapper-two .inner-page-section-card .bottom-content .card-meta-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.inner-page-section-card-wrapper-two .inner-page-section-card .bottom-content .card-meta-box span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 32px;
}
@media (max-width: 1399px) {
  .inner-page-section-card-wrapper-two .inner-page-section-card .bottom-content .card-meta-box span {
    font-size: 16px;
    padding: 4px 20px;
  }
}

.inner-page-section-card-wrapper-three .inner-page-section-card {
  padding: 60px 39px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  position: relative;
  height: 100%;
}
@media (max-width: 1199px) {
  .inner-page-section-card-wrapper-three .inner-page-section-card {
    padding: 20px;
  }
}
.inner-page-section-card-wrapper-three .inner-page-section-card .bg-color {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--border-3);
  opacity: 0.8;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transition: all 0.4s ease-in-out;
}
.inner-page-section-card-wrapper-three .inner-page-section-card .icon {
  min-width: 140px;
  min-height: 140px;
  background: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1399px) {
  .inner-page-section-card-wrapper-three .inner-page-section-card .icon {
    min-width: 100px;
    min-height: 100px;
  }
}
@media (max-width: 1399px) {
  .inner-page-section-card-wrapper-three .inner-page-section-card .icon svg {
    width: 60px;
    height: 60px;
  }
}
.inner-page-section-card-wrapper-three .inner-page-section-card .bottom-content {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}
.inner-page-section-card-wrapper-three .inner-page-section-card .bottom-content .title {
  text-align: center;
  margin-bottom: 38px;
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
  color: var(--black);
}
@media (max-width: 1199px) {
  .inner-page-section-card-wrapper-three .inner-page-section-card .bottom-content .title {
    margin-bottom: 0;
  }
}
.inner-page-section-card-wrapper-three .inner-page-section-card .bottom-content .title a {
  display: inline-block;
}
.inner-page-section-card-wrapper-three .inner-page-section-card .bottom-content p {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .inner-page-section-card-wrapper-three .inner-page-section-card .bottom-content p {
    margin-bottom: 0;
  }
}
.inner-page-section-card-wrapper-three .inner-page-section-card .bottom-content .bf-btn-wrap .bf-theme-btn {
  display: inline-flex !important;
}
.inner-page-section-card-wrapper-three .inner-page-section-card:hover .bg-color {
  background: var(--theme);
}

.page-details-wrapper {
  padding-top: 240px;
}
@media (max-width: 1199px) {
  .page-details-wrapper {
    padding-top: 180px;
  }
}
@media (max-width: 991px) {
  .page-details-wrapper {
    padding-top: 150px;
  }
}
.page-details-wrapper .page-details-inner {
  margin: 0 325px;
}
@media (max-width: 1800px) {
  .page-details-wrapper .page-details-inner {
    margin: 0 225px;
  }
}
@media (max-width: 1700px) {
  .page-details-wrapper .page-details-inner {
    margin: 0 125px;
  }
}
@media (max-width: 1399px) {
  .page-details-wrapper .page-details-inner {
    margin: 0;
  }
}
.page-details-wrapper .page-details-content .title {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .page-details-wrapper .page-details-content .title {
    margin-bottom: 20px;
  }
}
.page-details-wrapper .page-details-content .blog-title {
  max-width: 967px;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .page-details-wrapper .page-details-content .blog-title {
    text-align: center !important;
  }
}
.page-details-wrapper .page-details-content .big-thumb {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .page-details-wrapper .page-details-content .big-thumb {
    margin-bottom: 20px;
  }
}
.page-details-wrapper .page-details-content .big-thumb img {
  border-radius: 16px;
  width: 100%;
}
.page-details-wrapper .page-details-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--black);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .page-details-wrapper .page-details-content .text {
    font-size: 16px;
  }
}
.page-details-wrapper .page-details-content .list {
  margin-bottom: 40px;
}
.page-details-wrapper .page-details-content .list.service-list ul li {
  list-style: decimal;
  font-weight: 400;
  font-size: 18px;
  color: var(--pra-text);
}
.page-details-wrapper .page-details-content .list.service-list ul li span {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--black);
}
.page-details-wrapper .page-details-content .list ul {
  margin-left: 25px;
}
.page-details-wrapper .page-details-content .list ul li {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--black);
  margin-bottom: 22px;
  list-style: disc;
}
@media (max-width: 767px) {
  .page-details-wrapper .page-details-content .list ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .page-details-wrapper .page-details-content .list ul li {
    font-size: 13px;
  }
}
.page-details-wrapper .page-details-content .list ul li:last-child {
  margin-bottom: 0;
}
.page-details-wrapper .page-details-content .meta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .page-details-wrapper .page-details-content .meta-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .page-details-wrapper .page-details-content .meta-content {
    margin-bottom: 20px;
  }
}
.page-details-wrapper .page-details-content .meta-content .social-icon-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-details-wrapper .page-details-content .meta-content .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 350px) {
  .page-details-wrapper .page-details-content .meta-content {
    flex-direction: column;
    gap: 20px;
  }
}
.page-details-wrapper .page-details-content .meta-content li a {
  border-radius: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border-3);
}
.page-details-wrapper .page-details-content .meta-content li a:hover {
  background: var(--theme);
}
.page-details-wrapper .page-details-content .meta-content span {
  font-weight: 400;
  color: var(--pra-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-details-wrapper .page-details-content .content-group {
  margin-bottom: 40px;
}
.page-details-wrapper .page-details-content .content-group h5 {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .page-details-wrapper .page-details-content .content-group h5 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .page-details-wrapper .page-details-content .content-group h5 {
    margin-bottom: 20px;
  }
}
.page-details-wrapper .page-details-content .content-group:last-child {
  margin-bottom: 0;
}
.page-details-wrapper .page-details-content .content-group p {
  font-weight: 400;
  color: var(--pra-text);
}
@media (max-width: 767px) {
  .page-details-wrapper .page-details-content .content-group p {
    font-size: 16px;
  }
}
.page-details-wrapper .page-details-content .thumb-wrap {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .page-details-wrapper .page-details-content .thumb-wrap {
    margin-bottom: 20px;
  }
}
.page-details-wrapper .page-details-content .thumb-wrap .thumb img {
  width: 100%;
}

.error-page-wrapper {
  padding: 220px 0px;
}
@media (max-width: 1399px) {
  .error-page-wrapper {
    padding-top: 180px;
  }
}
@media (max-width: 767px) {
  .error-page-wrapper {
    padding-top: 130px;
  }
}
.error-page-wrapper .error-type {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.error-page-wrapper .error-type h2 {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 400px;
  color: var(--black);
}
@media (max-width: 1399px) {
  .error-page-wrapper .error-type h2 {
    font-size: 300px;
  }
}
@media (max-width: 767px) {
  .error-page-wrapper .error-type h2 {
    font-size: 160px;
  }
}
@media (max-width: 350px) {
  .error-page-wrapper .error-type h2 {
    font-size: 100px;
  }
}
.error-page-wrapper .error-type span {
  border-radius: 120px;
  width: 217px;
  height: 337px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  perspective: 1000px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .error-page-wrapper .error-type span {
    width: 217px;
    height: 255px;
  }
}
@media (max-width: 767px) {
  .error-page-wrapper .error-type span {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 350px) {
  .error-page-wrapper .error-type span {
    width: 100px;
    height: 100px;
  }
}
.error-page-wrapper .error-type span svg {
  transform-style: preserve-3d;
  will-change: transform;
}
@media (max-width: 767px) {
  .error-page-wrapper .error-type span svg {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 350px) {
  .error-page-wrapper .error-type span svg {
    width: 70px;
    height: 70px;
  }
}

/* ==========================================================================
   08. Common
   ========================================================================== */
.star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.star ul li i {
  color: var(--orange);
}

/* Mouse Cursor Start */
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--orange);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--orange);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.fix-visible {
  overflow: visible;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mask-content {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center center;
  -webkit-mask-position: center center;
  width: 100%;
}

/* animation btn  */
.line-shape-1 {
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 5px, transparent 5px, transparent 10px);
  animation: dash-3 1s linear infinite;
}

.line-shape-2 {
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 5px, transparent 5px, transparent 10px);
  animation: dash-4 1s linear infinite;
}

.line-shape-3 {
  height: 1px;
  background: repeating-linear-gradient(to right, #3D3D3D, #3D3D3D 5px, transparent 5px, transparent 10px);
  animation: dash-3 1s linear infinite;
}

.line-shape-4 {
  height: 1px;
  background: repeating-linear-gradient(to right, #3D3D3D, #3D3D3D 5px, transparent 5px, transparent 10px);
  animation: dash-4 1s linear infinite;
}

.circle-thumb {
  position: relative;
  width: 147.55px;
  height: 147.55px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 500px) {
  .circle-thumb {
    width: 80px;
    height: 80px;
  }
}
.circle-thumb .shape-line-svg-1 {
  position: absolute;
  top: -210px;
}
.circle-thumb .shape-line-svg-2 {
  position: absolute;
  bottom: -210px;
}
.circle-thumb:hover .cir36 {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

/* nav bar */
.nav-bar-wrap .swiper-button-next {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--title-color);
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .nav-bar-wrap .swiper-button-next {
    right: 20px;
  }
}
.nav-bar-wrap .swiper-button-next::after {
  display: none;
}
.nav-bar-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  right: -76px;
  width: 40px;
  height: 1px;
  background: var(--title-color);
}
.nav-bar-wrap .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--title-color);
}
@media (max-width: 1399px) {
  .nav-bar-wrap .swiper-button-prev {
    left: 20px;
  }
}
.nav-bar-wrap .swiper-button-prev::after {
  display: none;
}
.nav-bar-wrap .swiper-button-prev::before {
  content: "";
  position: absolute;
  left: -76px;
  width: 40px;
  height: 1px;
  background: var(--title-color);
}

/* swiper pagination styling */
.swiper-pagination {
  position: absolute;
  right: 0 !important;
  left: auto !important;
  bottom: 153px !important;
  width: 40px;
  background-color: #1d1d1d;
  border-radius: 60px;
  padding: 10px 10px 17px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1700px) {
  .swiper-pagination {
    right: -80px !important;
    bottom: 170px !important;
  }
}
@media (max-width: 1600px) {
  .swiper-pagination {
    right: 50% !important;
    transform: translateX(50%);
    bottom: -80px !important;
    flex-direction: row !important;
  }
}
@media (max-width: 1399px) {
  .swiper-pagination {
    right: 50% !important;
    transform: translateX(50%);
    bottom: -60px !important;
    flex-direction: row !important;
  }
}
@media (max-width: 1199px) {
  .swiper-pagination {
    right: 50% !important;
    transform: translateX(50%);
    bottom: -45px !important;
    flex-direction: row !important;
  }
}
@media (max-width: 767px) {
  .swiper-pagination {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
  }
}

/* Bullets wrapper */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto !important;
  display: flex !important;
  flex-direction: column;
  gap: 8px;
}

/* Default bullet style */
.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #777 !important;
  opacity: 1 !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active bullet */
.swiper-pagination-bullet-active {
  background: var(--theme) !important;
}

/* transition multiple */
.text-shape-2 {
  width: 110px !important;
  height: 110px !important;
}

.bor-card {
  width: 603px;
}

.bg-transparent {
  background: transparent !important;
}

.svg-shape {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 603 246'%3E%3Cpath d='M112.008 0.5H581C592.874 0.5 602.5 10.1259 602.5 22V185.632C602.5 197.506 592.874 207.132 581 207.132H542.492C529.659 207.132 519.256 217.535 519.256 230.368C519.256 238.725 512.481 245.5 504.124 245.5H22C10.1259 245.5 0.5 235.874 0.5 224V120.83C0.5 108.956 10.1259 99.3301 22 99.3301H68.0078C80.4339 99.3298 90.5076 89.2562 90.5078 76.8301V22C90.5078 10.1259 100.134 0.5 112.008 0.5Z' stroke='%23B8B8B8' fill='none'/%3E%3C/svg%3E") no-repeat;
  background-size: 100%;
  padding: 30px 40px 40px 130px;
  min-height: 246px;
  position: relative;
}
.svg-shape p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .col-xxs-6 {
    width: 33.3% !important;
  }
}
@media (max-width: 470px) {
  .col-xxs-6 {
    width: 50% !important;
  }
}

@media (max-width: 1399px) {
  .col-xxsl-6 {
    width: 50% !important;
  }
}
@media (max-width: 991px) {
  .col-xxsl-6 {
    width: 100% !important;
  }
}

.inner-page-section-card .thumb {
  text-align: right;
}
.inner-page-section-card .thumb .grow {
  width: 35%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 437px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .inner-page-section-card .thumb .grow {
    width: 100% !important;
    min-height: 100% !important;
  }
}
.inner-page-section-card .thumb .grow.grow-two {
  min-height: 237px !important;
}

.title-anim {
  overflow: hidden;
}

.title-anim .line {
  display: block;
}

.title-anim span {
  display: inline;
}

@media (max-width: 1399px) {
  .lest-col {
    display: none !important;
  }
}

.back-to-top {
  border-radius: 12px;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header-color);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/* ==========================================================================
   09. Container
   ========================================================================== */
@media (min-width: 1600px) {
  .custom-container {
    margin: 0 120px;
  }
}
@media (max-width: 1599px) {
  .custom-container {
    margin: 0 100px;
  }
}
@media (max-width: 1399px) {
  .custom-container {
    margin: 0 90px;
  }
}
@media (max-width: 1199px) {
  .custom-container {
    margin: 0 50px;
  }
}
@media (max-width: 991px) {
  .custom-container {
    margin: 0 40px;
  }
}
@media (max-width: 767px) {
  .custom-container {
    margin: 0 20px;
  }
}
/* ==========================================================================
   10. Form
   ========================================================================== */
.contact-form.style2 {
  width: 630px;
  height: 593px;
  padding: 60px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
}
@media (max-width: 767px) {
  .contact-form.style2 {
    display: none;
  }
}
.contact-form.style2 form {
  display: flex;
  flex-direction: column;
}
.contact-form.style2 form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .contact-form.style2 form .form-row {
    flex-direction: column;
  }
}
.contact-form.style2 form .form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form.style2 form .form-row .form-group label {
  color: #131313;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}
.contact-form.style2 form .form-row .form-group .input-field,
.contact-form.style2 form .form-row .form-group .textarea-field {
  max-width: 240px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #d0d0d0;
  padding: 19px 30px;
  color: #565969;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  outline: none;
}
.contact-form.style2 form .form-row .form-group .input-field::-moz-placeholder, .contact-form.style2 form .form-row .form-group .textarea-field::-moz-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.contact-form.style2 form .form-row .form-group .input-field::placeholder,
.contact-form.style2 form .form-row .form-group .textarea-field::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.contact-form.style2 form .form-row .form-group .textarea-field {
  border-radius: 20px;
  height: 110px;
  padding: 11px 20px;
  max-width: 100%;
}
.contact-form.style2 form .form-row .form-group.select-field {
  position: relative;
}
.contact-form.style2 form .form-row .form-group.select-field select.input-field {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form.style2 form .form-row .form-group.select-field .icon {
  position: absolute;
  top: 72%;
  right: 20px;
  transform: translateY(-72%);
  pointer-events: none;
}
.contact-form.style2 form .form-row .form-group.select-field .icon i {
  color: var(--theme);
  font-size: 16px;
}
.contact-form.style2 form .form-row .full-width {
  width: 100%;
}
.contact-form.style2 .btn-wrapper .gt-btn.style4 {
  display: inline;
}
.contact-form.style3 {
  width: 629px;
  border-radius: 20px;
  background: var(var(--title-color));
}
@media (max-width: 1399px) {
  .contact-form.style3 {
    width: 585px;
  }
}
@media (max-width: 1199px) {
  .contact-form.style3 {
    width: 640px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact-form.style3 {
    width: 100%;
  }
}
.contact-form.style3 form {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .contact-form.style3 form {
    margin: 0 15px;
  }
}
.contact-form.style3 form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .contact-form.style3 form .form-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .contact-form.style3 form .form-row {
    flex-direction: column;
  }
}
.contact-form.style3 form .form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form.style3 form .form-row .form-group .input-field,
.contact-form.style3 form .form-row .form-group .textarea-field {
  max-width: 100%;
  border-radius: 999px;
  background: var(var(--title-color));
  border: 2px solid rgba(208, 208, 208, 0.2);
  padding: 15px 30px;
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  outline: none;
}
@media (max-width: 1399px) {
  .contact-form.style3 form .form-row .form-group .input-field,
  .contact-form.style3 form .form-row .form-group .textarea-field {
    max-width: 95%;
  }
}
.contact-form.style3 form .form-row .form-group .input-field::-moz-placeholder, .contact-form.style3 form .form-row .form-group .textarea-field::-moz-placeholder {
  color: var(--white);
}
.contact-form.style3 form .form-row .form-group .input-field::placeholder,
.contact-form.style3 form .form-row .form-group .textarea-field::placeholder {
  color: var(--white);
}
.contact-form.style3 form .form-row .form-group .textarea-field {
  border-radius: 20px;
  height: 140px;
  padding: 11px 20px;
  max-width: 100%;
}
.contact-form.style3 form .form-row .form-group.select-field {
  position: relative;
}
.contact-form.style3 form .form-row .form-group.select-field select.input-field {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form.style3 form .form-row .form-group.select-field .icon {
  position: absolute;
  top: 60%;
  right: 20px;
  transform: translateY(-60%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .contact-form.style3 form .form-row .form-group.select-field .icon {
    right: 40px;
  }
}
.contact-form.style3 form .form-row .form-group.select-field .icon i {
  color: var(--theme);
  font-size: 16px;
}
.contact-form.style3 form .form-row .full-width {
  width: 100%;
}
.contact-form.style3 .btn-wrapper .gt-btn.style4 {
  display: inline;
}

/* ==========================================================================
   11. Gutter
   ========================================================================== */
@media (min-width: 1600px) {
  .gx-40 {
    --bs-gutter-x: 40px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-64 {
    --bs-gutter-x: 64px;
  }
  .gx-47 {
    --bs-gutter-x: 47px;
  }
  .gx-74 {
    --bs-gutter-x: 74px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
  .gx-97 {
    --bs-gutter-x: 97px;
  }
  .gx-120 {
    --bs-gutter-x: 120px;
  }
  .gx-134 {
    --bs-gutter-x: 134px;
  }
  .gx-140 {
    --bs-gutter-x: 140px;
  }
  .gx-165 {
    --bs-gutter-x: 165px;
  }
}
.gx-0 {
  --bs-gutter-x: 0px;
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gy-40 {
  --bs-gutter-y: 40px;
}
@media (max-width: 1399px) {
  .gy-40 {
    --bs-gutter-y: 20px;
  }
}

.gy-60 {
  --bs-gutter-y: 60px;
}
@media (max-width: 991px) {
  .gy-60 {
    --bs-gutter-y: 30px;
  }
}

.gy-80 {
  --bs-gutter-y: 80px;
}
@media (max-width: 991px) {
  .gy-80 {
    --bs-gutter-y: 40px;
  }
}

/* ==========================================================================
   12. Helping
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--orange);
  -webkit-box-shadow: inset 0 0 5px var(--orange);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* ==========================================================================
   Basic Helper Classes
   ========================================================================== */
.fix {
  overflow: hidden;
}

.mega-hover {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Responsive Line Break Control */
@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* Background Helpers */
.bg-cover {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative !important;
  background-position: center !important;
}

.bg-cover-2 {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative !important;
  background-position: center !important;
  width: 100% !important;
  height: 100% !important;
}

/* Layout Helpers */
.center {
  text-align: center;
  margin: 0 auto;
}

.p-relative {
  position: relative;
}

img {
  max-width: 100%;
  height: auto !important;
}

/* ==========================================================================
   Custom Cursor & Interactive Elements
   ========================================================================== */
.no-cursor {
  pointer-events: auto;
  cursor: pointer;
}

.cursor-content {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(47.5px);
  backdrop-filter: blur(47.5px);
  border-radius: 100%;
  white-space: nowrap;
  z-index: 2;
  color: var(--gt-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

.hover-item {
  position: relative;
  display: inline-block;
}

/* ==========================================================================
   Clip Animation Styles
   ========================================================================== */
.tp-clip-anim {
  width: 100%;
  display: grid;
  display: -ms-grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}

.tp-clip-anim.tp-anim-img {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.tp-clip-anim.mask {
  background-size: cover;
  background-position: center;
  transform: scale(1.005);
}

.tp-clip-anim > * {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.mr {
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
}

/* ==========================================================================
   13. Meanmenu
   ========================================================================== */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* ==========================================================================
   14. Preloader
   ========================================================================== */
body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 110vh;
  fill: #121212;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 62px;
  font-weight: 500;
  letter-spacing: 0px;
  text-transform: uppercase;
  z-index: 20;
  color: var(--white);
}
@media (max-width: 991px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 20px;
  }
}

.load-text span {
  animation: loading 1s infinite alternate;
  font-size: 82px !important;
}

.load-text span:nth-child(1) {
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  animation-delay: 0.6s;
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ==========================================================================
   15. Spacing
   ========================================================================== */
.mt-0 {
  margin-top: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

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

.mt-15 {
  margin-top: 15px !important;
}

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

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

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

.mt-120 {
  margin-top: 120px !important;
}

.mt-124 {
  margin-top: 124px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

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

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-36 {
  margin-bottom: 36px !important;
}

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

.mb-60 {
  margin-bottom: 60px !important;
}

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

.mr-0 {
  margin-right: 0px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.pl-120 {
  padding-left: 120px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-260 {
  padding-top: 260px !important;
}

.pt-499 {
  padding-top: 499px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

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

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-260 {
  padding-bottom: 260px !important;
}

.gy-32 {
  --bs-gutter-y: 32px;
}

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

@media (max-width: 1399px) {
  .pt-120 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1199px) {
  .pt-120 {
    padding-top: 80px !important;
  }
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 60px !important;
  }
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 40px !important;
  }
}
@media (max-width: 1399px) {
  .pb-120 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1199px) {
  .pb-120 {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 1399px) {
  .mb-120 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1199px) {
  .mb-120 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .mb-120 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .mb-120 {
    margin-bottom: 40px !important;
  }
}
/* ==========================================================================
   16. Text Slider
   ========================================================================== */
.scrolling-wrap.style1 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  border-radius: 4px;
  background: var(--white);
  padding: 17px 16px;
  position: relative;
  z-index: -1;
}
.scrolling-wrap.style1 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  cursor: pointer;
  gap: 35px;
}
.scrolling-wrap.style1 .comm .cmn-textslide-1 {
  color: var(--theme-5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
}
.scrolling-wrap.style1 .comm .cmn-textslide-2 {
  color: var(--theme-5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
}
.scrolling-wrap.style1:hover .comm {
  animation-play-state: paused;
}
.scrolling-wrap.style3 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  background-color: transparent;
  position: relative;
  z-index: 999;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .scrolling-wrap.style3 {
    padding-bottom: 40px;
  }
}
.scrolling-wrap.style3 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 40px;
  cursor: pointer;
}
.scrolling-wrap.style3 .comm .cmn-textslide-1 {
  color: var(--white);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 8px;
}
@media (max-width: 575px) {
  .scrolling-wrap.style3 .comm .cmn-textslide-1 {
    font-size: 40px;
  }
}
.scrolling-wrap.style3 .comm .cmn-textslide-1:nth-child(2n) {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  color: transparent;
  background: transparent;
}
.scrolling-wrap.style3:hover .comm {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* ==========================================================================
   17. Title
   ========================================================================== */
.sub-title {
  transform: rotate(35deg);
}

.section-top-title {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .section-top-title.section-top-title-2 {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 991px) {
  .section-top-title {
    flex-direction: column !important;
    margin-bottom: 40px;
    gap: 20px;
  }
}
.section-top-title .content-right {
  justify-content: start;
  gap: 20px;
}
@media (max-width: 991px) {
  .section-top-title .content-right.content-right-2 {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 991px) {
  .section-top-title .content-right {
    flex-direction: column !important;
    gap: 20px !important;
  }
}
.section-top-title .content-right .sub-title {
  transform: rotate(-35deg);
}
@media (max-width: 991px) {
  .section-top-title .content-right .sub-title {
    transform: rotate(0) !important;
  }
}
.section-top-title .content-right .animation-border-wrap {
  width: 312px;
}
@media (max-width: 1700px) {
  .section-top-title .content-right .animation-border-wrap {
    width: 180px;
  }
}
@media (max-width: 991px) {
  .section-top-title .content-right .animation-border-wrap {
    width: 400px;
  }
}
@media (max-width: 991px) {
  .section-top-title .content-right .animation-border-wrap {
    width: 300px;
  }
}
.section-top-title .title {
  max-width: 1018px;
  text-align: start !important;
}
@media (max-width: 991px) {
  .section-top-title .title {
    text-align: center !important;
  }
}

/* ==========================================================================
   18. Footer
   ========================================================================== */
@media (max-width: 575px) {
  .footer-wrapper .footer-top-content {
    flex-direction: column;
    gap: 40px;
  }
}
.footer-wrapper .footer-top-content .footer-button {
  border-radius: 100%;
  background: linear-gradient(180deg, #464545 0%, #000 100%);
  stroke-width: 1px;
  stroke: var(--black-border);
  width: 474px;
  height: 474px;
  flex-direction: column;
}
@media (max-width: 1800px) {
  .footer-wrapper .footer-top-content .footer-button {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1700px) {
  .footer-wrapper .footer-top-content .footer-button {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper .footer-top-content .footer-button {
    width: 250px;
    height: 250px;
  }
}
.footer-wrapper .footer-top-content .footer-button p {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: left;
  color: #9a9a9a;
  max-width: 250px;
  margin-bottom: 60px;
}
@media (max-width: 1800px) {
  .footer-wrapper .footer-top-content .footer-button p {
    margin-bottom: 15px;
  }
}
@media (max-width: 1700px) {
  .footer-wrapper .footer-top-content .footer-button p {
    display: none;
  }
}
.footer-wrapper .footer-top-content .footer-button span {
  max-width: 250px;
  line-height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: rgb(255, 255, 255);
  font-size: 80px;
  line-height: 1.1;
  transition: 0.5s;
}
@media (max-width: 1800px) {
  .footer-wrapper .footer-top-content .footer-button span {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media (max-width: 1700px) {
  .footer-wrapper .footer-top-content .footer-button span {
    font-size: 40px;
    line-height: 1.2;
    justify-content: center;
  }
}
.footer-wrapper .footer-top-content .footer-button span svg {
  width: 60px;
  height: 60px;
}
.footer-wrapper .footer-top-content .counter-items-wrap .counter-items h5 {
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .footer-wrapper .footer-top-content .footer-title {
    display: none;
  }
}
.footer-wrapper .footer-top-content .footer-title h2 {
  background: linear-gradient(90deg, #c8c8c8 0%, #e5ff4e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1600px) {
  .footer-wrapper .footer-top-content .footer-title h2 {
    font-size: 51px;
    line-height: 65px;
  }
}
@media (max-width: 1199px) {
  .footer-wrapper .footer-top-content .footer-title h2 {
    font-size: 38px;
    line-height: 36px;
  }
}
@media (max-width: 1600px) {
  .footer-wrapper .footer-top-content .footer-title svg {
    width: 423px;
  }
}
@media (max-width: 1199px) {
  .footer-wrapper .footer-top-content .footer-title svg {
    width: 323px;
  }
}
.footer-wrapper .footer-top-content .footer-thumb {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 270px;
  padding: 30px 31px;
}
.footer-wrapper .footer-top-content .footer-thumb .thumb {
  background: var(--theme);
  text-align: center;
  border-radius: 270px;
  width: 368px;
  height: 505px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .footer-wrapper .footer-top-content .footer-thumb .thumb {
    width: 219px;
    height: 300px;
  }
}
.footer-wrapper .footer-top-content .footer-thumb .thumb img {
  margin-top: 125px;
}
.footer-wrapper .footer-bottom {
  margin-top: 50px;
}
@media (max-width: 1600px) {
  .footer-wrapper .footer-bottom svg {
    width: 100%;
    height: 100%;
  }
}
.footer-wrapper.style-two {
  position: relative;
}
.footer-wrapper.style-two .footer-top-content {
  gap: 93px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1600px) {
  .footer-wrapper.style-two .footer-top-content {
    gap: 55px;
  }
}
@media (max-width: 1399px) {
  .footer-wrapper.style-two .footer-top-content {
    flex-direction: column;
    gap: 30px;
  }
}
.footer-wrapper.style-two .footer-top-content .footer-two-title {
  width: 724px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-two .footer-top-content .footer-two-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-two .footer-top-content .footer-two-title {
    flex-direction: column;
    gap: 20px;
  }
}
.footer-wrapper.style-two .footer-top-content .footer-two-title h2 {
  font-weight: 400;
}
.footer-wrapper.style-two .footer-top-content .footer-two-title h2 span {
  font-weight: 500;
  color: var(--black);
}
.footer-wrapper.style-two .footer-top-content .footer-two-title .title-2 {
  margin-left: 300px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-two .footer-top-content .footer-two-title .title-2 {
    margin-left: 0;
  }
}
.footer-wrapper.style-two .footer-top-content .circle-thumb {
  width: 146px;
  height: 146px;
}
.footer-wrapper.style-two .footer-top-content .circle-thumb img {
  min-width: 146px;
  min-height: 146px;
}
.footer-wrapper.style-two .footer-top-content .text {
  max-width: 603px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-two .footer-top-content .text {
    text-align: center;
  }
}
.footer-wrapper.style-two .footer-main-content {
  position: relative;
  z-index: 99;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  padding: 60px 60px 0 60px;
}
@media (max-width: 575px) {
  .footer-wrapper.style-two .footer-main-content {
    padding: 25px 25px 0 25px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-two .footer-main-content {
    padding: 15px;
  }
}
.footer-wrapper.style-two .footer-main-content .logo {
  margin-bottom: 20px;
}
.footer-wrapper.style-two .footer-main-content .cta-text {
  max-width: 365px;
  margin-bottom: 20px;
}
.footer-wrapper.style-two .footer-main-content .mail a {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--black);
}
.footer-wrapper.style-two .footer-main-content .footer-nav {
  flex-direction: column;
}
@media (max-width: 1199px) {
  .footer-wrapper.style-two .footer-main-content .footer-nav {
    align-items: start;
  }
}
.footer-wrapper.style-two .footer-main-content .footer-nav .nav-title {
  font-weight: 500;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--black);
}
.footer-wrapper.style-two .footer-main-content .nav-lists li {
  margin-bottom: 10px;
}
.footer-wrapper.style-two .footer-main-content .nav-lists li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--pra-text);
  display: inline-block;
}
@media (max-width: 575px) {
  .footer-wrapper.style-two .footer-main-content .nav-lists li a {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .footer-wrapper.style-two .footer-main-content .nav-lists li a {
    font-size: 18px;
  }
}
.footer-wrapper.style-two .footer-main-content .nav-lists li:last-child {
  margin-bottom: 0;
}
.footer-wrapper.style-two .footer-main-content .meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-left: 56px;
}
@media (max-width: 1899px) {
  .footer-wrapper.style-two .footer-main-content .meta-grid {
    margin-left: 0;
  }
}
@media (max-width: 1600px) {
  .footer-wrapper.style-two .footer-main-content .meta-grid {
    gap: 10px;
  }
}
.footer-wrapper.style-two .footer-main-content .meta-grid .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  min-width: 142px;
  min-height: 142px;
}
@media (max-width: 1600px) {
  .footer-wrapper.style-two .footer-main-content .meta-grid .thumb {
    min-width: 100px;
    min-height: 100px;
  }
}
.footer-wrapper.style-two .footer-main-content .meta-grid .thumb img {
  width: 100%;
  display: block;
}
.footer-wrapper.style-two .footer-main-content .meta-grid .thumb .icon a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 2;
  display: none;
  transition: all 0.3s ease;
  pointer-events: none;
}
.footer-wrapper.style-two .footer-main-content .meta-grid .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}
.footer-wrapper.style-two .footer-main-content .meta-grid .thumb:hover::before {
  opacity: 1;
  visibility: visible;
}
.footer-wrapper.style-two .footer-main-content .meta-grid .thumb:hover .icon a {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.footer-wrapper.style-two .footer-main-content .bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-bottom: 28px;
}
@media (max-width: 991px) {
  .footer-wrapper.style-two .footer-main-content .bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   19. Header
   ========================================================================== */
.header-section-1 {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 150;
}
@media (max-width: 1199px) {
  .header-section-1 {
    top: 15px;
  }
}

.header-section-2 {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 150;
}
@media (max-width: 1199px) {
  .header-section-2 {
    top: 15px;
  }
}

.main-header-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1899px) {
  .main-header-wrapper {
    gap: 70px;
  }
}
@media (max-width: 1600px) {
  .main-header-wrapper {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper {
    padding: 15px 0;
  }
}
.main-header-wrapper .main-header-items {
  width: 100%;
}
.main-header-wrapper .main-header-items .header-contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  border: 1px solid #d4dced;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    display: none;
  }
}
@media (max-width: 575px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    gap: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
  border-right: 1px solid #d4dced;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
    border-right: none;
    padding-right: 0;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(30, 32, 35, 0.1);
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    width: 54px;
    height: 54px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content p {
  color: var(--text-color);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
  font-size: 20px;
  color: var(--title);
  text-transform: initial;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 18px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
  color: var(--title);
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items.style-2 {
  border: none;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .header-button .theme-btn {
    font-size: 14px;
    padding: 24px 27px;
  }
}

.header-1 {
  background-color: transparent;
}
.header-1.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-1 .header-left .logo .header-logo-2 {
  display: none;
}
.header-1 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  margin: 0 120px;
  background: transparent !important;
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper {
    margin: 0 70px;
  }
}
@media (max-width: 991px) {
  .header-1 .mega-menu-wrapper {
    margin: 0 40px;
  }
}
@media (max-width: 767px) {
  .header-1 .mega-menu-wrapper {
    margin: 0 20px;
  }
}
@media (max-width: 470px) {
  .header-1 .mega-menu-wrapper {
    margin: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
.header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
  padding: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7000000477;
  color: var(--white);
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 20px;
  }
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1899px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-1 .mega-menu-wrapper .header-main .main-menu ul li .submenu a {
  padding: 8px 30px;
  color: var(--black);
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 55px;
  height: 55px;
  border-radius: 90px;
  border: 1px solid var(--border-color-1);
  background: var(--white);
  transition: all 0.4s ease-in-out;
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle span {
  width: 24px;
  height: 1px;
  background: var(--theme-5);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle:hover {
  background: var(--theme-2);
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle:hover span {
  background: var(--white);
}

.header-2 {
  background-color: transparent;
}
.header-2.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-2 .header-left .logo .header-logo {
  display: none;
}
.header-2 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  margin: 0 120px;
  background: transparent !important;
}
@media (max-width: 1199px) {
  .header-2 .mega-menu-wrapper {
    margin: 0 70px;
  }
}
@media (max-width: 991px) {
  .header-2 .mega-menu-wrapper {
    margin: 0 40px;
  }
}
@media (max-width: 767px) {
  .header-2 .mega-menu-wrapper {
    margin: 0 20px;
  }
}
@media (max-width: 470px) {
  .header-2 .mega-menu-wrapper {
    margin: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-2 .mega-menu-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-2 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
.header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
  padding: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7000000477;
  color: var(--black);
}
.header-2 .mega-menu-wrapper .header-main .main-menu ul li a:hover, .header-2 .mega-menu-wrapper .header-main .main-menu ul li a.active {
  color: var(--orange) !important;
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 20px;
  }
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
  }
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 16px;
  }
}
@media (max-width: 1899px) {
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-2 .mega-menu-wrapper .header-main .main-menu ul li .submenu a {
  padding: 8px 30px;
  color: var(--black);
}
.header-2 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 55px;
  height: 55px;
  border-radius: 90px;
  border: 1px solid var(--theme);
  background: var(--white);
  transition: all 0.4s ease-in-out;
}
.header-2 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle span {
  width: 24px;
  height: 1px;
  background: var(--theme-5);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.header-2 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle:hover {
  background: var(--theme-2);
}
.header-2 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle:hover span {
  background: var(--white);
}
.header-2 .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-2 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-2 .header-right {
    gap: 5px !important;
  }
}
@media (max-width: 767px) {
  .header-2 .header-right .header-button {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header-2 .header-right .header__canvas__hamburger .sidebar__toggle {
    display: none;
  }
}
.header-2 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
  background: var(--white);
}
@media (max-width: 1399px) {
  .header-2 .header-right .sidebar__toggle {
    color: var(--theme);
  }
}

.header-3 {
  background-color: transparent;
}
.header-3.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-3 .header-left .logo .header-logo-2 {
  display: none;
}
.header-3 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  margin: 0 120px;
  background: transparent !important;
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-3 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
  padding: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7000000477;
  color: var(--white);
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a:hover, .header-3 .mega-menu-wrapper .header-main .main-menu ul li a.active {
  color: var(--orange) !important;
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 20px;
  }
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1899px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li .submenu a {
  padding: 8px 30px;
  color: var(--black);
}
.header-3 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 55px;
  height: 55px;
  border-radius: 90px;
  border: 1px solid var(--border-color-1);
  background: var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .header-3 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle {
    width: 40px;
    height: 40px;
  }
}
.header-3 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle span {
  width: 24px;
  height: 1px;
  background: var(--theme-5);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.header-3 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle:hover {
  background: var(--theme-2);
}
.header-3 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle:hover span {
  background: var(--white);
}

.line {
  max-width: 100%;
}
.line svg {
  max-width: 100%;
}

.header-right {
  gap: 30px;
}
@media (max-width: 767px) {
  .header-right .bf-btn-wrap {
    display: none;
  }
}
@media (max-width: 1399px) {
  .header-right {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-right {
    gap: 5px;
  }
  .header-right .theme-btn {
    display: none;
  }
}
.header-right .search-icon {
  color: var(--title);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--title);
  font-size: 20px;
  font-weight: 900;
  border-right: 1px solid var(--title);
  padding-right: 25px;
}
.header-right .header__cart {
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .header-right .header__cart {
    padding: 0px 10px;
  }
}
.header-right .header__cart:hover > a {
  color: var(--theme);
}
.header-right .header__cart:hover .header__right__dropdown__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition: 0.3s;
}
.header-right .header__cart > a {
  font-size: 18px;
  color: var(--text-color);
  padding: 15px 0;
  position: relative;
}
.header-right .header__cart > a::before {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  padding: 0 4px;
  content: "3";
  text-align: center;
  border-radius: 100%;
  background: var(--theme);
  color: var(--white);
}
@media (max-width: 991px) {
  .header-right .header__cart > a::before {
    top: 7px;
    right: 11px;
  }
}
.header-right .header__cart .header__right__dropdown__wrapper {
  position: absolute;
  width: 300px;
  max-height: 700px;
  padding: 20px;
  border-bottom: 3px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.15);
  top: 100%;
  left: -235px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
@media (max-width: 767px) {
  .header-right .header__cart .header__right__dropdown__wrapper {
    left: -220px;
  }
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close {
  position: absolute;
  right: 0;
  top: -10px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close a :hover {
  color: var(--theme-2);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner {
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 30px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img {
  width: 30%;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img a {
  display: inline-block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img img {
  width: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content {
  text-align: left;
  width: 70%;
  margin-left: 15px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--title);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a:hover {
  color: var(--theme-2);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p {
  color: var(--title);
  font-size: 14px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p span {
  color: var(--theme);
}
.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price {
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}
.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price span {
  float: right;
  color: var(--theme);
  font-weight: 700;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 10px 0px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color {
  border: 1px solid var(--theme-2);
  margin-bottom: 20px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color:hover {
  background: var(--theme-2);
  color: var(--white);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color {
  background: var(--title);
  color: var(--white);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color:hover {
  background: var(--theme-2);
}

.sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--text-color);
}

/* ==========================================================================
   Header Main Styles
========================================================================== */
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  height: 60px;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  padding: 18px 0;
  text-align: left;
  position: relative;
  color: var(--title);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px;
  /* 160% */
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li a {
    letter-spacing: 1px;
  }
}
.header-main .main-menu ul li a i {
  color: var(--title);
  font-family: "Font Awesome 6 Pro";
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.header-main .main-menu ul li a:hover, .header-main .main-menu ul li a.active {
  color: var(--theme-2) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  width: -moz-max-content;
  width: max-content;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--title);
  border-top: 6px solid var(--theme);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 999;
  color: var(--title);
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: var(--title);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li a.active, .header-main .main-menu ul li .submenu li a:hover {
  background-color: var(--theme-2);
  color: var(--title) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--white);
  color: var(--theme) !important;
  padding: 11px 35px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-2);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 565px;
  padding: 30px 24px 10px 24px;
  opacity: 0;
  left: -100px;
  visibility: hidden;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  position: relative;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--title) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  background-color: var(--theme-2);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--title);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.header-main .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-main .header-right {
    gap: 5px !important;
  }
}
@media (max-width: 767px) {
  .header-main .header-right .header-button {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header-main .header-right .header__canvas__hamburger .sidebar__toggle {
    display: none;
  }
}
.header-main .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right .sidebar__toggle {
    color: var(--theme);
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--title);
}

/* ==========================================================================
   Sticky Header Styles
========================================================================== */
.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  /* Smooth entrance animation */
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  will-change: transform, opacity;
  /* Hide decorative lines on sticky */
  /* Dark background variation for sticky */
}
.sticky .line {
  display: none;
}
.sticky.header-1, .sticky.header-2, .sticky.header-3, .sticky.header-4 {
  background: var(--white);
}
@media (max-width: 450px) {
  .sticky.header-1, .sticky.header-2, .sticky.header-3, .sticky.header-4 {
    padding: 0;
  }
}
.sticky.header-1 .logo, .sticky.header-2 .logo, .sticky.header-3 .logo, .sticky.header-4 .logo {
  display: block;
}
.sticky.header-1 .header-left .logo .header-logo, .sticky.header-2 .header-left .logo .header-logo, .sticky.header-3 .header-left .logo .header-logo, .sticky.header-4 .header-left .logo .header-logo {
  display: none;
}
.sticky.header-1 .header-left .logo .header-logo-2, .sticky.header-2 .header-left .logo .header-logo-2, .sticky.header-3 .header-left .logo .header-logo-2, .sticky.header-4 .header-left .logo .header-logo-2 {
  display: block !important;
}
.sticky.header-1 .header-main, .sticky.header-2 .header-main, .sticky.header-3 .header-main, .sticky.header-4 .header-main {
  margin: 8px 0;
}
.sticky.header-1 .header-main .main-menu ul li a, .sticky.header-2 .header-main .main-menu ul li a, .sticky.header-3 .header-main .main-menu ul li a, .sticky.header-4 .header-main .main-menu ul li a {
  color: var(--black);
}
.sticky.header-1 .header-main .main-menu ul li a:hover, .sticky.header-1 .header-main .main-menu ul li a.active, .sticky.header-2 .header-main .main-menu ul li a:hover, .sticky.header-2 .header-main .main-menu ul li a.active, .sticky.header-3 .header-main .main-menu ul li a:hover, .sticky.header-3 .header-main .main-menu ul li a.active, .sticky.header-4 .header-main .main-menu ul li a:hover, .sticky.header-4 .header-main .main-menu ul li a.active {
  color: var(--orange) !important;
}
.sticky.header-1 .header-main .main-menu ul li .submenu li a, .sticky.header-2 .header-main .main-menu ul li .submenu li a, .sticky.header-3 .header-main .main-menu ul li .submenu li a, .sticky.header-4 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-1 .theme-btn, .sticky.header-2 .theme-btn, .sticky.header-3 .theme-btn, .sticky.header-4 .theme-btn {
  background: var(--white);
  color: var(--title);
}
.sticky.sticky-bg-dark {
  background-color: #161921;
}
.sticky.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}

/* ==========================================================================
   Offcanvas Info Styles
========================================================================== */
.offcanvas__info {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  background: var(--title) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  /* For Firefox */
  /* Transform Hide State */
  transform: translateX(calc(100% + 80px));
  /* Smooth Transition */
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  /* Hide Webkit Scrollbar */
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
  background-color: transparent;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
  font-size: 20px;
  margin-top: 5px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  color: var(--theme-2);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme-2);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
  justify-content: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--title) !important;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
/* ==========================================================================
   Breadcrumb Section Styles
========================================================================== */
.breadcrumb-wrapper {
  padding-top: 200px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper {
    padding-top: 150px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-one {
  padding-bottom: 254px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper.about-breadcrumb-one {
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper.about-breadcrumb-one {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper.about-breadcrumb-one {
    padding-bottom: 40px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-section-title {
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-section-title {
    margin-bottom: 20px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-section-title .title {
  font-weight: 700;
  font-size: 120px;
  text-align: right;
  color: var(--black);
  line-height: 150%;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-section-title .title {
    font-size: 85px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-section-title .title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-section-title .title {
    font-size: 60px;
  }
}
@media (max-width: 500px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-section-title .title {
    font-size: 45px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-one .border-shape {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper.about-breadcrumb-one .border-shape {
    margin-bottom: 30px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-one .border-shape svg {
  width: 100%;
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content {
  position: relative;
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .section-top-title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 217px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .section-top-title {
    gap: 30px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .section-top-title .content-right .sub-title {
  width: 150px;
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .section-top-title .title {
  max-width: 985px;
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--black);
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .section-top-title .title {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .section-top-title .title {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .section-top-title .title {
    font-size: 20px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-left: 170px;
  background: var(--white);
  transform: rotate(-33deg);
  padding: 21px 40px;
  border-radius: 8px 80px 80px 8px;
  position: absolute;
  right: 0;
  top: 150px;
}
@media (max-width: 1899px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info {
    top: 200px;
    transform: rotate(-20deg);
  }
}
@media (max-width: 1800px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info {
    margin-left: 0;
  }
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info {
    top: 250px;
    transform: rotate(0deg);
  }
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info {
    display: none;
  }
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info .vector-wrap {
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info .vector-wrap .vector {
  margin-left: -25px;
  background: var(--white);
  border-radius: 100%;
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info .vector-wrap .vector img {
  border-radius: 100%;
  border: 1px solid var(--white);
}
.breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info span {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--pra-text);
  width: 238px;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info span {
    font-size: 25px;
    line-height: 145%;
  }
}
@media (max-width: 450px) {
  .breadcrumb-wrapper.about-breadcrumb-one .breadcrumb-content .clint-info span {
    font-size: 16px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-section-title .breadcrumb-btn-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-section-title .breadcrumb-btn-wrap .simple-btn {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--black);
  border: 1px solid var(--pra-text);
  border-radius: 60px;
  padding: 12px 20px;
}
@media (max-width: 450px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-section-title .breadcrumb-btn-wrap .simple-btn {
    font-size: 15px;
    padding: 6px 10px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-section-title .breadcrumb-btn-wrap span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pra-text);
  border-radius: 100%;
  cursor: pointer;
}
@media (max-width: 450px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-section-title .breadcrumb-btn-wrap span {
    width: 40px;
    height: 40px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title {
  display: inline-flex;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}
.breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
  font-size: 476px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.8;
  background-image: url("/assets/images/shape/breadcrumbThumb1_1.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 50%;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
  min-width: 100%;
  margin: 0 auto;
  animation: textLoop 25s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1899px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 417px;
  }
}
@media (max-width: 1800px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 375px;
  }
}
@media (max-width: 1700px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 340px;
  }
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 293px;
  }
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 253px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 195px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 170px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 145px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 110px;
  }
}
@media (max-width: 500px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 90px;
  }
}
@media (max-width: 350px) {
  .breadcrumb-wrapper.about-breadcrumb-two .breadcrumb-content .section-top-title .title {
    font-size: 80px;
  }
}
@keyframes textLoop {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: -2000px 50%;
  }
}
.breadcrumb-wrapper.about-breadcrumb-three .left-content-two {
  margin-left: 285px;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-title .sub-title {
  transform: rotate(0deg);
}
.breadcrumb-wrapper.about-breadcrumb-three .brn-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper.about-breadcrumb-three .brn-wrap {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper.about-breadcrumb-three .brn-wrap a span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper.about-breadcrumb-three .custom-remove {
    display: none;
  }
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  opacity: 0.8;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 40px;
  height: 100%;
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta {
    padding: 20px;
  }
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta .cta-left {
  width: 50%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100%;
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta .cta-left .counter {
  display: flex;
  align-items: center;
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta .cta-left .counter span {
  font-weight: 500;
  font-size: 80px;
  line-height: 150%;
  color: var(--black);
  display: inline-block;
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta .cta-left .cta-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--pra-text);
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta .cta-right {
  width: 50%;
  position: relative;
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta .cta-right .cta-line {
  position: absolute;
  left: 68%;
  transform: translateX(-68%);
  top: 0;
}
@media (max-width: 1800px) {
  .breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta .cta-right .cta-line {
    left: 60%;
    transform: translateX(-60%);
  }
}
.breadcrumb-wrapper.about-breadcrumb-three .breadcrumb-cta .cta-right .footer-top-content {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 185px;
}

/* ==========================================================================
   20. About
   ========================================================================== */
.about-wrapper .experience {
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper .experience {
    display: none;
  }
}
.about-wrapper .experience .title {
  font-weight: 700;
  font-size: 260px;
  line-height: 197px;
  text-align: left;
  color: var(--black);
}
.about-wrapper .experience span {
  background-color: var(--theme);
  padding: 8px 32px;
  border-radius: 60px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-28.08deg);
}
.about-wrapper .about-right-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .about-wrapper .about-right-top-content {
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 15px;
  }
}
.about-wrapper .about-right-top-content .clint-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 170px;
}
@media (max-width: 1800px) {
  .about-wrapper .about-right-top-content .clint-info {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .about-wrapper .about-right-top-content .clint-info {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-right-top-content .clint-info {
    flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-right-top-content .clint-info {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-right-top-content .clint-info {
    flex-direction: row;
    gap: 20px;
  }
}
.about-wrapper .about-right-top-content .clint-info .vector-wrap {
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.about-wrapper .about-right-top-content .clint-info .vector-wrap .vector {
  margin-left: -25px;
}
.about-wrapper .about-right-top-content .clint-info .vector-wrap .vector img {
  border-radius: 100%;
  border: 1px solid var(--white);
}
.about-wrapper .about-right-top-content .clint-info span {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--pra-text);
  width: 238px;
}
@media (max-width: 575px) {
  .about-wrapper .about-right-top-content .clint-info span {
    font-size: 25px;
    line-height: 145%;
  }
}
@media (max-width: 450px) {
  .about-wrapper .about-right-top-content .clint-info span {
    font-size: 16px;
  }
}
.about-wrapper .about-right-top-content .content-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .about-wrapper .about-right-top-content .content-right {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-right-top-content .content-right .sub-title {
    transform: rotate(0);
  }
}
.about-wrapper .about-right-top-content .animation-border-wrap {
  width: 312px;
}
@media (max-width: 1700px) {
  .about-wrapper .about-right-top-content .animation-border-wrap {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-right-top-content .animation-border-wrap {
    width: 300px;
  }
}
.about-wrapper .title {
  margin-left: -30px;
  text-align: end;
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--black);
}
.about-wrapper .title.style-one {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 80px;
  line-height: 150%;
  text-align: right;
  color: var(--black);
}
@media (max-width: 1700px) {
  .about-wrapper .title.style-one {
    font-size: 60px;
  }
  .about-wrapper .title.style-one span {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  .about-wrapper .title.style-one {
    font-size: 50px;
  }
  .about-wrapper .title.style-one span {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .title.style-one {
    text-align: center;
    margin-left: 0;
    font-size: 35px;
  }
  .about-wrapper .title.style-one span {
    font-size: 35px;
  }
}
@media (max-width: 500px) {
  .about-wrapper .title.style-one {
    text-align: center;
    font-size: 29px !important;
    line-height: 32px !important;
  }
  .about-wrapper .title.style-one span {
    font-size: 29px !important;
    line-height: 32px !important;
  }
}
.about-wrapper .about-banner-img {
  position: relative;
  overflow: hidden;
}
.about-wrapper .about-banner-img img {
  border-radius: 10px;
  position: relative;
}
.about-wrapper .about-banner-img .about-thumb-cta {
  background: var(--white);
  position: absolute;
  top: -133px;
  left: 76px;
  padding: 24px;
  border-radius: 300px;
  height: 405px;
  width: 198px;
  justify-content: end;
}
@media (max-width: 767px) {
  .about-wrapper .about-banner-img .about-thumb-cta {
    top: -224px;
    width: 198px;
  }
}
@media (max-width: 500px) {
  .about-wrapper .about-banner-img .about-thumb-cta {
    top: -263px;
    width: 129px;
  }
}
.about-wrapper.style-two {
  padding-top: 668px;
}
@media (max-width: 1399px) {
  .about-wrapper.style-two {
    padding-top: 300px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style-two {
    padding-top: 250px;
  }
}
@media (max-width: 991px) {
  .about-wrapper.style-two {
    padding-top: 215px;
  }
}
@media (max-width: 767px) {
  .about-wrapper.style-two {
    padding-top: 105px;
  }
}
@media (max-width: 767px) {
  .about-wrapper.style-two {
    padding-top: 75px;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.style-two .title {
    text-align: center !important;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.style-two .section-top-title {
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.style-two .section-top-title .content-right {
    flex-direction: column !important;
    margin-bottom: 40px;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.style-two .section-top-title .content-right .sub-title {
    transform: rotate(0) !important;
  }
}
.about-wrapper.style-two .about-text-content {
  border-bottom: 1px solid var(--border);
  padding-bottom: 60px;
}
@media (max-width: 1600px) {
  .about-wrapper.style-two .about-text-content {
    text-align: center;
  }
}
.about-wrapper.style-two .about-text-content .text {
  max-width: 638px;
}
@media (max-width: 1600px) {
  .about-wrapper.style-two .about-text-content .text {
    margin: 0 auto;
  }
}
.about-wrapper.style-two .about-bottom-content {
  margin-top: 60px;
}
.about-wrapper.style-two .about-bottom-content .right-shape {
  position: relative;
}
.about-wrapper.style-two .about-bottom-content .right-shape .main-thumb {
  -webkit-mask-image: url(/assets/images/about/aboutVector2_2.png);
          mask-image: url(/assets/images/about/aboutVector2_2.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .about-wrapper.style-two .about-bottom-content .right-shape .main-thumb {
    display: none;
  }
}
.about-wrapper.style-two .about-bottom-content .right-shape .shape {
  position: absolute;
  top: -7px;
  left: -9px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .about-wrapper.style-two .about-bottom-content .right-shape .shape {
    top: 11px;
    left: 14px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style-two .about-bottom-content .right-shape .shape {
    top: -300px !important;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style-two .about-bottom-content .right-shape .shape {
    top: -150px !important;
    left: 50%;
    transform: translate(-50%);
    width: 200px;
    height: 200px;
  }
}
.about-wrapper.style-two .about-bottom-content .thumb {
  border-radius: 10px;
  height: 546px;
  width: 540px;
}
@media (max-width: 1600px) {
  .about-wrapper.style-two .about-bottom-content .thumb {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .about-wrapper.style-two .about-bottom-content .thumb {
    width: 100%;
  }
}
.about-wrapper.style-two .about-bottom-content .thumb.thumb-2 {
  width: 825px;
  height: 546px;
}
@media (max-width: 991px) {
  .about-wrapper.style-two .about-bottom-content .thumb.thumb-2 {
    width: 100%;
    height: auto;
  }
}
.about-wrapper.style-two .about-bottom-content .thumb img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .about-wrapper.style-two .about-bottom-content .thumb img {
    width: 100%;
  }
}
.about-wrapper.style-two .about-bottom-content .about-btn {
  margin-bottom: 245px;
}
@media (max-width: 991px) {
  .about-wrapper.style-two .about-bottom-content .about-btn {
    margin-bottom: 30px;
  }
}
.about-wrapper.style-three {
  position: relative;
  z-index: 99;
}
.about-wrapper.style-three .section-text {
  text-align: center;
}
.about-wrapper.style-three .section-text .heading-sub-title {
  color: var(--pra-text);
  max-width: 1270px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
  color: var(--pra-text);
}
@media (max-width: 991px) {
  .about-wrapper.style-three .section-text .heading-sub-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-three .section-text .heading-sub-title {
    font-size: 26px;
  }
}
@media (max-width: 470px) {
  .about-wrapper.style-three .section-text .heading-sub-title {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .about-wrapper.style-three .section-text .heading-sub-title {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .about-wrapper.style-three .section-text .heading-sub-title {
    font-size: 16px;
  }
}
.about-wrapper.style-three .about-shape {
  border-radius: 100%;
  background: linear-gradient(180deg, #cef200 0%, #fff 100%);
  stroke-width: 1px;
  stroke: var(--border);
  filter: blur(10px);
  width: 358px;
  height: 358px;
  position: absolute;
  left: 120px;
  bottom: 190px;
  z-index: -1;
}
.about-wrapper.style-three .about-box {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .about-wrapper.style-three .about-box {
    width: 100%;
  }
}
.about-wrapper.style-three .about-box:first-child {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 25px;
}
@media (max-width: 575px) {
  .about-wrapper.style-three .about-box:first-child {
    margin-right: 0;
    justify-content: center;
  }
}
.about-wrapper.style-three .about-box:last-of-type .about-counter {
  margin-left: 60px;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .about-wrapper.style-three .about-box:last-of-type .about-counter {
    margin-left: 0;
    justify-content: center;
  }
}
.about-wrapper.style-three .about-counter {
  border: 1px solid var(--border-3);
  border-radius: 16px;
  background: var(--white);
  padding: 33px 40px;
  width: 375px;
}
@media (max-width: 500px) {
  .about-wrapper.style-three .about-counter {
    width: 100%;
  }
}
.about-wrapper.style-three .about-counter .about-counter-wrap {
  align-items: start;
  gap: 7px;
  margin-bottom: 13px;
}
.about-wrapper.style-three .about-counter .about-counter-wrap span {
  font-weight: 700;
  font-size: 160px;
  text-align: center;
  line-height: 160px;
  color: var(--black);
}
.about-wrapper.style-three .about-counter .about-counter-wrap .counters-item-2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--black);
}
.about-wrapper.style-three .about-counter .about-counter-wrap .text-plus {
  font-weight: 700;
  font-size: 60px;
  color: var(--theme);
  line-height: 60px;
  stroke: black;
  text-shadow: -1px 0 0 #000, 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000;
}
.about-wrapper.style-three .about-counter .about-counter-wrap .text-plus-2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--black);
}
.about-wrapper.style-three .about-counter .about-counter-wrap h2 {
  line-height: normal;
  color: var(--pra-text);
}
.about-wrapper.style-three .about-counter .about-counter-title {
  color: var(--pra-text);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  color: var(--black);
}
.about-wrapper.style-three .about-right-content {
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .about-wrapper.style-three .about-right-content {
    gap: 20px;
  }
}
.about-wrapper.style-three .about-right-content .pra-text {
  max-width: 933px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .about-wrapper.style-three .about-right-content .about-bottom-content {
    justify-content: center;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.style-three .about-right-content .border-shape {
    max-width: 100%;
  }
  .about-wrapper.style-three .about-right-content .border-shape svg {
    max-width: 500px;
  }
}
@media (max-width: 1399px) {
  .about-wrapper.style-three .about-right-content .border-shape {
    max-width: 100%;
  }
  .about-wrapper.style-three .about-right-content .border-shape svg {
    max-width: 450px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style-three .about-right-content .border-shape svg {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .about-wrapper.style-three .about-right-content .border-shape svg {
    max-width: 300px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-three .about-right-content .border-shape {
    display: none;
  }
  .about-wrapper.style-three .about-right-content .border-shape svg {
    max-width: 300px;
  }
}

/* ==========================================================================
   21. Achievement
   ========================================================================== */
.achievement-wrapper {
  background: var(--black);
}
.achievement-wrapper .section-top-title .title {
  font-weight: 500;
  font-size: 80px;
  line-height: 150%;
  color: var(--white);
  max-width: 628px;
}
@media (max-width: 1700px) {
  .achievement-wrapper .section-top-title .title {
    font-size: 60px;
    line-height: 140%;
  }
}
@media (max-width: 1399px) {
  .achievement-wrapper .section-top-title .title {
    font-size: 50px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .achievement-wrapper .section-top-title .title {
    text-align: center;
    margin-left: 0;
    font-size: 35px;
    line-height: 135%;
  }
}
@media (max-width: 500px) {
  .achievement-wrapper .section-top-title .title {
    text-align: center;
    font-size: 29px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .achievement-wrapper .thumb {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.achievement-wrapper .achievement-items-wrap {
  position: relative;
}
.achievement-wrapper .achievement-items-wrap .achievement-item {
  position: relative;
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content {
  padding: 42px 0;
  border-top: 1px solid #1D1D1D;
  border-bottom: 1px solid #1D1D1D;
  transition: all 250ms ease-in-out;
}
@media (max-width: 470px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content {
    padding: 20px 0;
  }
}
@media (max-width: 350px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content {
    flex-direction: column;
    gap: 10px;
  }
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content span {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--white);
  transition: all 250ms ease-in-out;
}
@media (max-width: 470px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content span {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content span {
    font-size: 16px;
  }
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content .items-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--white);
  transition: all 250ms ease-in-out;
}
@media (max-width: 470px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content .items-title {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content .items-title {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content .items-title {
    font-size: 24px;
  }
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content .achievement-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #1D1D1D;
  border-radius: 100%;
}
@media (max-width: 450px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content .achievement-btn {
    width: 35px;
    height: 35px;
  }
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content .achievement-btn svg path {
  fill: #9A9A9A;
  transition: all 250ms ease-in-out;
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content:hover {
  background: var(--theme);
  padding: 42px 32px;
}
@media (max-width: 470px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content:hover {
    padding: 20px 0;
  }
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content:hover span {
  color: var(--black);
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content:hover h6 {
  color: var(--black);
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content:hover .achievement-btn {
  background: var(--black);
}
.achievement-wrapper .achievement-items-wrap .achievement-item .achievement-item-content:hover .achievement-btn svg path {
  fill: var(--white);
}
.achievement-wrapper .achievement-items-wrap .achievement-item .thumb {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
  width: 478.681px;
  height: 570px;
  opacity: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  border-radius: 10px;
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
  margin: -260px 0 0 -150px;
}
@media (max-width: 1199px) {
  .achievement-wrapper .achievement-items-wrap .achievement-item .thumb {
    display: none;
  }
}
.achievement-wrapper .achievement-items-wrap .achievement-item:hover {
  cursor: pointer;
}
.achievement-wrapper .achievement-items-wrap .achievement-item:hover .thumb {
  opacity: 1;
  visibility: visible;
}
.achievement-wrapper.style-three .section-top-title .title {
  max-width: 684px;
}

/* ==========================================================================
   22. Advantage
   ========================================================================== */
.advantage-wrapper {
  background: var(--theme);
}
.advantage-wrapper .section-title h2 {
  color: var(--black);
  text-align: center;
  margin-bottom: 60px;
}
.advantage-wrapper .advantage-items-wrap {
  position: relative;
  height: 500px;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .advantage-wrapper .advantage-items-wrap {
    height: 270px;
  }
}
.advantage-wrapper .advantage-items-wrap .advantage-item {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item {
    top: -10px;
  }
}
.advantage-wrapper .advantage-items-wrap .advantage-item:nth-child(even) .throwable-wrapper {
  background: var(--white) !important;
}
.advantage-wrapper .advantage-items-wrap .advantage-item:nth-child(even) .throwable-wrapper .icon {
  background: var(--black) !important;
}
.advantage-wrapper .advantage-items-wrap .advantage-item:nth-child(even) .throwable-wrapper .number {
  color: var(--black);
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 575px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item:nth-child(even) .throwable-wrapper .number {
    display: none !important;
  }
}
.advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper {
  position: relative;
  top: 0;
  left: 0;
  transform: translateY(-45px);
  background: black;
  border-radius: 300px;
  width: 272px;
  height: 436px;
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
  padding: 56px 56px 70px 56px;
}
@media (max-width: 1600px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper {
    width: 220px;
    height: 400px;
  }
}
@media (max-width: 1399px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper {
    width: 180px;
    height: 300px;
    padding: 33px 56px 33px 56px;
  }
}
@media (max-width: 991px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper {
    width: 150px;
    height: 300px;
    padding: 15px 56px 15px 56px;
  }
}
@media (max-width: 991px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper {
    width: 100px;
    height: 200px;
    padding: 15px 56px 15px 56px;
  }
}
@media (max-width: 575px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper {
    width: 100px;
    height: 100px;
    padding: 20px;
  }
}
.advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon {
  width: 160px;
  height: 160px;
  background: var(--white);
  border-radius: 100%;
  cursor: none;
}
@media (max-width: 1600px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon {
    width: 131px;
    height: 131px;
  }
}
@media (max-width: 991px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 470px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon {
    width: 60px;
    height: 70px;
  }
}
.advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon svg {
  width: 80px;
  height: 80px;
}
@media (max-width: 1600px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon svg {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 991px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon svg {
    width: 40px;
    height: 40px;
  }
}
.advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon img {
  width: 80px;
  height: 80px;
}
@media (max-width: 1600px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon img {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 991px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .icon img {
    width: 40px;
    height: 40px;
  }
}
.advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper span {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
  cursor: none;
}
@media (max-width: 575px) {
  .advantage-wrapper .advantage-items-wrap .advantage-item .throwable-wrapper .number {
    display: none !important;
  }
}

/* ==========================================================================
   23. Blog
   ========================================================================== */
.blog-wrapper {
  background: var(--black);
}
.blog-wrapper .section-top-title .title {
  font-weight: 500;
  font-size: 80px;
  line-height: 150%;
  color: var(--white);
  max-width: 780px;
}
@media (max-width: 1700px) {
  .blog-wrapper .section-top-title .title {
    font-size: 60px;
    line-height: 140%;
  }
}
@media (max-width: 1399px) {
  .blog-wrapper .section-top-title .title {
    font-size: 50px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .blog-wrapper .section-top-title .title {
    text-align: center;
    margin-left: 0;
    font-size: 35px;
    line-height: 135%;
  }
}
@media (max-width: 500px) {
  .blog-wrapper .section-top-title .title {
    text-align: center;
    font-size: 29px;
    line-height: 32px;
  }
}
.blog-wrapper .blog-card {
  position: relative;
}
.blog-wrapper .blog-card .bf--hover-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.blog-wrapper .blog-card .bf--hover-img canvas {
  top: 20px;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  border-radius: 10px;
  margin-top: -20px;
}
.blog-wrapper .blog-card .thumb-content {
  overflow: hidden;
  border-radius: 15px;
}
.blog-wrapper .blog-card .thumb-content img {
  border-radius: 15px;
}
.blog-wrapper .blog-card .bottom-content {
  display: flex;
  align-items: center;
  position: absolute;
  top: 32px;
  left: 32px;
  gap: 20px;
  z-index: 99;
}
.blog-wrapper .blog-card .bottom-content span {
  border-radius: 8px;
  padding: 4px 32px;
  background: var(--black);
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--white);
  display: inline-block;
}
.blog-wrapper .content {
  margin-top: 32px;
}
.blog-wrapper .content .blog-title {
  display: none;
}
.blog-wrapper .content .blog-title a {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--white);
}
.blog-wrapper h6 {
  margin-top: 30px;
}

.blog-page-wrapper .related-product {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--black);
}

/* ==========================================================================
   24. Brand
   ========================================================================== */
.brand-wrapper .marquee-card-content {
  padding: 34px 70px;
  position: relative;
  height: 90px;
}
@media (max-width: 1199px) {
  .brand-wrapper .marquee-card-content {
    padding: 34px 0px;
  }
}
.brand-wrapper .marquee-card-content .wrapper-rolling-text {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.brand-wrapper .marquee-card-content .rolling-text {
  display: inline-flex;
  align-items: center;
  gap: 148px;
  white-space: nowrap;
  margin-right: 148px;
}
.brand-wrapper .marquee-card-content .marquee-item {
  font-weight: 500;
  font-size: 60px;
  line-height: 1.5;
  color: #0a0909;
  position: relative;
}
.brand-wrapper .marquee-card-content .marquee-item::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #0a0909;
  border-radius: 100%;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
}
.brand-wrapper.style-two {
  background: var(--border-3);
  padding: 80px 0;
}
@media (max-width: 1199px) {
  .brand-wrapper.style-two {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .brand-wrapper.style-two {
    padding: 20px 0;
  }
}
.brand-wrapper.style-two .marquee-card-content .wrapper-rolling-text .rolling-text {
  margin-right: 0;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  height: 110px;
}
.brand-wrapper.style-two .marquee-card-content .wrapper-rolling-text .rolling-text:first-child {
  margin-left: 160px !important;
}
.brand-wrapper.style-two .marquee-item {
  display: inline-flex;
}
.brand-wrapper.style-two .marquee-item::before {
  display: none;
}
.brand-wrapper.style-two .marquee-item .marquee-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  padding: 30px 32px;
  background: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  color: var(--black);
}
@media (max-width: 1199px) {
  .brand-wrapper.style-two .marquee-item .marquee-inner {
    padding: 10px 20px;
  }
}

/* ==========================================================================
   25. Contact
   ========================================================================== */
.contact-page-wrapper {
  padding-top: 200px;
}
@media (max-width: 991px) {
  .contact-page-wrapper {
    padding-top: 150px;
  }
}
.contact-page-wrapper .contact-form form {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .contact-page-wrapper .contact-form form {
    margin-bottom: 50px;
  }
}
.contact-page-wrapper .contact-form form label {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: #8f8f8f;
  margin-bottom: 12px;
}
.contact-page-wrapper .contact-form form .form-control {
  border: 1px solid #ecedec;
  border-radius: 8px;
  background: #f7f7f7;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: #8f8f8f;
}
.contact-page-wrapper .contact-form form .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--theme);
}
.contact-page-wrapper .contact-form form textarea {
  padding: 24px;
  height: 180px;
}
.contact-page-wrapper .thumb {
  margin-top: 38px;
}
@media (max-width: 991px) {
  .contact-page-wrapper .thumb {
    margin-top: 0;
  }
}

/* ==========================================================================
   26. Counter
   ========================================================================== */
.counter-wrapper .main-counter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .counter-wrapper .main-counter-wrap {
    flex-direction: column;
    gap: 60px;
  }
}
.counter-wrapper .counter-items-wrap {
  width: 33.33%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .counter-wrapper .counter-items-wrap {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
    text-align: center;
  }
}
.counter-wrapper .counter-items-wrap .counter-items span {
  display: inline-block;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.15;
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 1800px) {
  .counter-wrapper .counter-items-wrap .counter-items span {
    font-size: 70px;
  }
}
@media (max-width: 1600px) {
  .counter-wrapper .counter-items-wrap .counter-items span {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .counter-wrapper .counter-items-wrap .counter-items span {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .counter-wrapper .counter-items-wrap .counter-items span {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .counter-wrapper .counter-items-wrap .counter-items span {
    font-size: 28px;
  }
}
.counter-wrapper .counter-items-wrap .counter-items .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--black);
}
@media (max-width: 1800px) {
  .counter-wrapper .counter-items-wrap .counter-items .title {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .counter-wrapper .counter-items-wrap .counter-items .title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .counter-wrapper .counter-items-wrap .counter-items .title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .counter-wrapper .counter-items-wrap .counter-items .title {
    font-size: 18px;
  }
}
.counter-wrapper .counter-items-wrap .counter-items .counter-sub-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--paragraph);
}
@media (max-width: 991px) {
  .counter-wrapper .counter-items-wrap .counter-items .counter-sub-title {
    font-size: 16px;
  }
}
.counter-wrapper .counter-items-wrap .counter-items.items-1 {
  margin-bottom: 120px;
}
.counter-wrapper .counter-items-wrap .counter-items.items-2 {
  margin-left: 100px;
}
.counter-wrapper .counter-items-wrap .counter-items.items-3 {
  margin-left: 210px;
  margin-bottom: 120px;
}
.counter-wrapper .counter-items-wrap .counter-items.items-4 {
  margin-left: 80px;
}
@media (max-width: 1800px) {
  .counter-wrapper .counter-items-wrap .counter-items.items-2 {
    margin-left: 70px;
  }
  .counter-wrapper .counter-items-wrap .counter-items.items-3 {
    margin-left: 150px;
  }
  .counter-wrapper .counter-items-wrap .counter-items.items-4 {
    margin-left: 50px;
  }
}
@media (max-width: 1600px) {
  .counter-wrapper .counter-items-wrap .counter-items.items-2 {
    margin-left: 40px;
  }
}
@media (max-width: 1600px) and (max-width: 1199px) {
  .counter-wrapper .counter-items-wrap .counter-items.items-2 {
    margin-left: 0;
  }
}
@media (max-width: 1600px) {
  .counter-wrapper .counter-items-wrap .counter-items.items-3 {
    margin-left: 13px;
  }
  .counter-wrapper .counter-items-wrap .counter-items.items-4 {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .counter-wrapper .counter-items-wrap .counter-items.items-2, .counter-wrapper .counter-items-wrap .counter-items.items-3, .counter-wrapper .counter-items-wrap .counter-items.items-4 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .counter-wrapper .counter-items-wrap .counter-items {
    margin: 0 !important;
  }
}
.counter-wrapper .counter-thumb {
  width: 540px;
  height: 740px;
  border: 1px solid var(--border);
  border-radius: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .counter-wrapper .counter-thumb {
    order: 1;
    width: 100%;
    max-width: 360px;
    height: auto;
  }
}
@media (max-width: 1800px) {
  .counter-wrapper .counter-thumb {
    width: 480px;
    height: 680px;
  }
}
@media (max-width: 1600px) {
  .counter-wrapper .counter-thumb {
    width: 440px;
    height: 620px;
  }
}
@media (max-width: 1199px) {
  .counter-wrapper .counter-thumb {
    width: 400px;
    height: 580px;
  }
}
@media (max-width: 991px) {
  .counter-wrapper .counter-thumb {
    width: 360px;
    height: 520px;
  }
}
.counter-wrapper .counter-thumb .thumb {
  width: calc(100% - 40px);
  height: 636px !important;
  border-radius: 270px;
  overflow: hidden;
  background: #d9d9d9;
  display: flex;
  justify-content: center;
  border: 1px solid var(--border);
}
@media (max-width: 1600px) {
  .counter-wrapper .counter-thumb .thumb {
    height: 533px !important;
  }
}
@media (max-width: 1199px) {
  .counter-wrapper .counter-thumb .thumb {
    height: 500px !important;
  }
}
.counter-wrapper .counter-thumb .thumb img {
  margin-bottom: -130px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .counter-wrapper .counter-thumb .thumb img {
    margin-top: 40px;
  }
}
@media (max-width: 450px) {
  .counter-wrapper .counter-items-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.counter-wrapper.style-two .section-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .counter-wrapper.style-two .section-title {
    margin-bottom: 40px;
  }
}
.counter-wrapper.style-two .section-title .title {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
  max-width: 870px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .counter-wrapper.style-two .section-title .title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .counter-wrapper.style-two .section-title .title {
    font-size: 25px;
  }
}
.counter-wrapper.style-two .counter-items {
  border: 1px solid var(--border-2);
  width: 398px;
  height: 398px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 100%;
}
@media (max-width: 1899px) {
  .counter-wrapper.style-two .counter-items {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 1800px) {
  .counter-wrapper.style-two .counter-items {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 1399px) {
  .counter-wrapper.style-two .counter-items {
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 1199px) {
  .counter-wrapper.style-two .counter-items {
    margin-top: 0 !important;
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 991px) {
  .counter-wrapper.style-two .counter-items {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 767px) {
  .counter-wrapper.style-two .counter-items {
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 575px) {
  .counter-wrapper.style-two .counter-items {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .counter-wrapper.style-two .counter-items {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.counter-wrapper.style-two .counter-items .counter {
  margin-bottom: 8px;
}
.counter-wrapper.style-two .counter-items .counter span {
  font-weight: 500;
  font-size: 80px;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: center;
  color: var(--white);
}
@media (max-width: 1600px) {
  .counter-wrapper.style-two .counter-items .counter span {
    font-size: 65px;
  }
}
.counter-wrapper.style-two .counter-items .counter-text {
  font-family: "Satoshi";
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: center;
  color: #9a9a9a;
  width: 234px;
}

/* ==========================================================================
   27. Intro
   ========================================================================== */
.inner-wrapper {
  position: relative;
}
.inner-wrapper.style-one {
  padding-top: 260px;
}
@media (max-width: 1399px) {
  .inner-wrapper.style-one {
    padding-top: 160px;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-one {
    padding-top: 153px;
  }
}
@media (max-width: 470px) {
  .inner-wrapper.style-one {
    padding-top: 160px;
  }
}
.inner-wrapper.style-one .shape-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.inner-wrapper.style-one .inner-container {
  margin: 0 99px 0 122px;
  padding-bottom: 143px;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .inner-wrapper.style-one .inner-container {
    margin: 0 70px;
  }
}
@media (max-width: 991px) {
  .inner-wrapper.style-one .inner-container {
    margin: 0 40px;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-one .inner-container {
    margin: 0 20px;
    padding-bottom: 60px;
  }
}
.inner-wrapper.style-one .inner-container .inner-section-title {
  position: relative;
  z-index: 99;
}
.inner-wrapper.style-one .inner-container .inner-section-title .inner-sub-title {
  font-weight: 500;
  font-size: 60px;
  line-height: normal;
  color: var(--white);
  margin-left: 21px;
}
@media (max-width: 767px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .inner-sub-title {
    margin-left: 7px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .inner-sub-title {
    font-size: 30px;
    line-height: 30px;
  }
}
.inner-wrapper.style-one .inner-container .inner-section-title .title {
  font-weight: 500;
  font-size: 260px;
  line-height: normal;
  color: var(--white);
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 1600px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title {
    font-size: 160px;
    line-height: 150px;
  }
}
@media (max-width: 991px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title {
    font-size: 110px;
    line-height: 110px;
  }
}
@media (max-width: 450px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title {
    font-size: 80px;
    line-height: 80px;
  }
}
.inner-wrapper.style-one .inner-container .inner-section-title .title .pre-text {
  position: absolute;
  right: -30px;
  top: 92px;
  font-weight: 500;
  font-size: 32px;
  line-height: normal;
  color: var(--white);
  z-index: 99;
}
@media (max-width: 1399px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title .pre-text {
    left: 70%;
    top: 20px;
  }
}
@media (max-width: 1199px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title .pre-text {
    display: none;
  }
}
.inner-wrapper.style-one .inner-container .inner-section-title .title::after {
  position: absolute;
  content: "";
  width: 327px;
  height: 24px;
  background-color: var(--white);
  bottom: 75px;
  right: -286px;
}
@media (max-width: 1600px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title::after {
    display: none;
  }
}
@media (max-width: 1399px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title::after {
    display: none;
  }
}
.inner-wrapper.style-one .inner-container .inner-section-title .title::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background: var(--theme);
  border-radius: 100%;
  left: 315px;
  top: 84px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .title::before {
    display: none;
  }
}
.inner-wrapper.style-one .inner-container .inner-section-title .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7000000477;
  color: var(--white);
  max-width: 670px;
  margin-left: 21px;
}
@media (max-width: 767px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .text {
    margin-left: 7px;
  }
}
@media (max-width: 575px) {
  .inner-wrapper.style-one .inner-container .inner-section-title .text {
    font-size: 16px;
    line-height: 22px;
  }
}
.inner-wrapper.style-one .inner-container .right-content {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .inner-wrapper.style-one .inner-container .right-content {
    position: absolute;
    top: -130px;
    right: 0;
  }
}
.inner-wrapper.style-two {
  background: var(--theme);
  padding-top: 170px;
  padding-bottom: 180px;
  position: relative;
}
@media (max-width: 991px) {
  .inner-wrapper.style-two {
    padding-top: 110px;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-two {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}
.inner-wrapper.style-two .inner-bg {
  position: absolute;
  top: 0;
  left: 0;
}
.inner-wrapper.style-two .custom-container {
  position: relative;
  z-index: 1;
}
.inner-wrapper.style-two .custom-container .inner-section-title {
  position: relative;
  z-index: 999;
}
@media (max-width: 1700px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    font-size: 175px !important;
  }
}
@media (max-width: 1600px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    font-size: 120px !important;
  }
}
@media (max-width: 991px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    font-size: 100px !important;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    font-size: 80px !important;
  }
}
@media (max-width: 575px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    font-size: 70px !important;
  }
}
@media (max-width: 500px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    font-size: 66px !important;
  }
}
@media (max-width: 470px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    font-size: 62px !important;
  }
}
@media (max-width: 450px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    font-size: 47px !important;
  }
}
@media (max-width: 350px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 {
    text-align: center;
  }
}
.inner-wrapper.style-two .custom-container .inner-section-title h1 .parallax-btn {
  position: relative;
  height: 131px;
  width: 310px;
  border: 20px solid var(--black);
  border-radius: 100px;
  padding: 12px;
  margin-top: 5px;
  display: inline-block;
  margin-left: -40px;
}
@media (max-width: 1600px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .parallax-btn {
    height: 101px;
    width: 280px;
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .parallax-btn {
    height: 70px;
    width: 200px;
    margin-left: 20px;
    border: 10px solid var(--black);
  }
}
@media (max-width: 470px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .parallax-btn {
    height: 50px;
    width: 120px;
    margin-left: 20px;
    border: 5px solid var(--black);
  }
}
.inner-wrapper.style-two .custom-container .inner-section-title h1 .parallax-btn .circle {
  position: absolute;
  height: 66px;
  width: 66px;
  border: 8px solid var(--black);
  border-radius: 50%;
  background-color: var(--white);
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  display: inline-block;
}
@media (max-width: 1600px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .parallax-btn .circle {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1600px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .parallax-btn .circle {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 470px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .parallax-btn .circle {
    width: 30px;
    height: 30px;
  }
}
.inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
  font-weight: 700;
  font-size: 180px;
  line-height: 150%;
  position: relative;
}
@media (max-width: 1700px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
    font-size: 175px;
  }
}
@media (max-width: 1600px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
    font-size: 120px !important;
  }
}
@media (max-width: 991px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
    font-size: 100px !important;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
    font-size: 80px !important;
  }
}
@media (max-width: 575px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
    font-size: 70px !important;
  }
}
@media (max-width: 500px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
    font-size: 66px !important;
  }
}
@media (max-width: 470px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
    font-size: 62px !important;
  }
}
@media (max-width: 450px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line {
    font-size: 47px !important;
  }
}
.inner-wrapper.style-two .custom-container .inner-section-title h1 .line::after {
  position: absolute;
  content: "";
  width: 309px;
  height: 25px;
  background-color: var(--black);
  bottom: 43px;
  right: -277px;
}
@media (max-width: 1800px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line::after {
    width: 261px;
    right: -248px;
  }
}
@media (max-width: 1700px) {
  .inner-wrapper.style-two .custom-container .inner-section-title h1 .line::after {
    display: none;
  }
}
.inner-wrapper.style-two .custom-container .experience-cta {
  background-color: var(--white);
  border: 1px solid var(--text-color-3);
  border-radius: 16px;
  padding: 12px;
  transform: rotate(45deg);
  height: 170px;
  width: 170px;
  z-index: 999;
  display: flex;
  justify-content: right;
  position: absolute;
  right: 10px;
  top: 105px;
}
@media (max-width: 1399px) {
  .inner-wrapper.style-two .custom-container .experience-cta {
    top: -28px;
    height: 130px;
    width: 130px;
  }
}
@media (max-width: 991px) {
  .inner-wrapper.style-two .custom-container .experience-cta {
    top: 190px;
    height: 130px;
    width: 130px;
  }
}
@media (max-width: 575px) {
  .inner-wrapper.style-two .custom-container .experience-cta {
    display: none;
  }
}
.inner-wrapper.style-two .custom-container .experience-cta .experience-cta-wrap {
  background-color: #0A0909;
  border-radius: 16px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.inner-wrapper.style-two .custom-container .experience-cta .experience-cta-wrap .text-content {
  transform: rotate(-45deg);
}
.inner-wrapper.style-two .custom-container .experience-cta .experience-cta-wrap .text-content .experience {
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: left;
  color: var(--white);
}
@media (max-width: 1399px) {
  .inner-wrapper.style-two .custom-container .experience-cta .experience-cta-wrap .text-content .experience {
    font-size: 28px;
  }
}
.inner-wrapper.style-two .custom-container .experience-cta .experience-cta-wrap .text-content .experience span {
  color: var(--theme);
}
.inner-wrapper.style-two .custom-container .experience-cta .experience-cta-wrap .text-content .text {
  color: var(--white);
}
@media (max-width: 1399px) {
  .inner-wrapper.style-two .custom-container .experience-cta .experience-cta-wrap .text-content .text {
    font-size: 10px !important;
  }
}
.inner-wrapper.style-two .custom-container .inner-thumb {
  position: absolute;
  top: 340px;
  height: 100%;
  z-index: 99;
}
@media (max-width: 1399px) {
  .inner-wrapper.style-two .custom-container .inner-thumb {
    top: 170px;
  }
}
@media (max-width: 1399px) {
  .inner-wrapper.style-two .custom-container .inner-thumb {
    top: 120px;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-two .custom-container .inner-thumb {
    display: none;
  }
}
.inner-wrapper.style-two .custom-container .inner-thumb .main-thumb {
  -webkit-mask-image: url(/assets/images/intro/introthumb2_2.png);
          mask-image: url(/assets/images/intro/introthumb2_2.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.inner-wrapper.style-two .custom-container .inner-cta {
  background: var(--theme);
  position: absolute;
  top: 0;
  right: 60px;
  padding: 24px;
  border-radius: 0 0 300px 300px;
  width: 198px;
  height: 301px;
  justify-content: end;
}
@media (max-width: 991px) {
  .inner-wrapper.style-two .custom-container .inner-cta {
    display: none;
  }
}
.inner-wrapper.style-three {
  padding-top: 240px;
  padding-bottom: 90px;
  position: relative;
}
@media (max-width: 1199px) {
  .inner-wrapper.style-three {
    padding-top: 160px;
    padding-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .inner-wrapper.style-three {
    padding-top: 120px;
  }
}
.inner-wrapper.style-three .inner-container {
  position: relative;
  z-index: 99;
  padding: 0 120px !important;
  margin-bottom: 100px;
}
@media (max-width: 1399px) {
  .inner-wrapper.style-three .inner-container {
    padding: 0 30px !important;
  }
}
@media (max-width: 1199px) {
  .inner-wrapper.style-three .inner-container {
    margin-bottom: 250px;
  }
}
@media (max-width: 991px) {
  .inner-wrapper.style-three .inner-container {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .inner-wrapper.style-three .inner-container {
    margin-bottom: 145px;
  }
}
.inner-wrapper.style-three .custom-container {
  position: relative;
  z-index: 99;
}
.inner-wrapper.style-three .inner-cta-text {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--white);
  position: absolute;
  right: 17%;
  bottom: 5%;
}
@media (max-width: 1600px) {
  .inner-wrapper.style-three .inner-cta-text {
    right: 5%;
    bottom: 5%;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .inner-wrapper.style-three .inner-cta-text {
    left: 28%;
    bottom: 14%;
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-three .inner-cta-text {
    display: none;
  }
}
.inner-wrapper.style-three .inner-section-title .inner-sub-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: var(--white);
}
@media (max-width: 575px) {
  .inner-wrapper.style-three .inner-section-title .inner-sub-title {
    font-size: 22px;
  }
}
.inner-wrapper.style-three .inner-section-title .title {
  font-weight: 500;
  font-size: 80px;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: left;
  color: var(--white);
  max-width: 687px;
}
@media (max-width: 767px) {
  .inner-wrapper.style-three .inner-section-title .title {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .inner-wrapper.style-three .inner-section-title .title {
    font-size: 50px;
  }
}
@media (max-width: 500px) {
  .inner-wrapper.style-three .inner-section-title .title {
    font-size: 48px;
  }
}
@media (max-width: 470px) {
  .inner-wrapper.style-three .inner-section-title .title {
    font-size: 40px;
  }
}
@media (max-width: 450px) {
  .inner-wrapper.style-three .inner-section-title .title {
    font-size: 30px;
  }
}
.inner-wrapper.style-three .inner-section-title .title::after {
  display: none;
}
.inner-wrapper.style-three .inner-section-title .title::before {
  display: none;
}
.inner-wrapper.style-three .designation {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 270px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(0deg, var(--theme) 30%, var(--white) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  z-index: 99 !important;
}
@media (max-width: 1600px) {
  .inner-wrapper.style-three .designation {
    font-size: 230px !important;
  }
}
@media (max-width: 1399px) {
  .inner-wrapper.style-three .designation {
    font-size: 195px !important;
  }
}
@media (max-width: 1199px) {
  .inner-wrapper.style-three .designation {
    font-size: 119px !important;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-three .designation {
    font-size: 90px !important;
  }
}
@media (max-width: 575px) {
  .inner-wrapper.style-three .designation {
    font-size: 72px !important;
  }
}
@media (max-width: 450px) {
  .inner-wrapper.style-three .designation {
    font-size: 55px !important;
  }
}
.inner-wrapper.style-three .designation div {
  display: none;
}
.inner-wrapper.style-three .designation .char {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.inner-wrapper.style-three .designation .char:nth-child(-n+2), .inner-wrapper.style-three .designation .char:nth-last-child(-n+2) {
  transform: translateY(-50px);
}
@media (max-width: 1199px) {
  .inner-wrapper.style-three .designation .char:nth-child(-n+2), .inner-wrapper.style-three .designation .char:nth-last-child(-n+2) {
    transform: translateY(-30px);
  }
}
.inner-wrapper.style-three .designation .char:nth-child(6) {
  position: relative;
  z-index: 99 !important;
}
.inner-wrapper.style-three .designation .char:nth-child(6)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 148px;
  height: 148px;
  background-image: url("/assets/images/intro/introthumb3_2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 1600px) {
  .inner-wrapper.style-three .designation .char:nth-child(6)::before {
    width: 128px;
    height: 128px;
  }
}
@media (max-width: 1399px) {
  .inner-wrapper.style-three .designation .char:nth-child(6)::before {
    width: 118px;
    height: 118px;
  }
}
@media (max-width: 1199px) {
  .inner-wrapper.style-three .designation .char:nth-child(6)::before {
    display: none;
  }
}
.inner-wrapper.style-three .bg-thumb-three {
  position: absolute;
  z-index: 99;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media (max-width: 1199px) {
  .inner-wrapper.style-three .bg-thumb-three {
    width: 28%;
  }
}
@media (max-width: 767px) {
  .inner-wrapper.style-three .bg-thumb-three {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .inner-wrapper.style-three .bg-thumb-three {
    width: 60%;
  }
}
.inner-wrapper.style-three .shape-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 88;
  width: 100%;
}

/* ==========================================================================
   28. Professional
   ========================================================================== */
.professional-wrapper {
  background: var(--black);
}
.professional-wrapper.professional-wrapper-page {
  position: relative;
}
.professional-wrapper.professional-wrapper-page .skill-content .skill-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  border-bottom: 1px dotted var(--black);
  color: var(--black);
}
@media (max-width: 1600px) {
  .professional-wrapper.professional-wrapper-page .skill-content .skill-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .professional-wrapper.professional-wrapper-page .skill-content .skill-title {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .professional-wrapper.professional-wrapper-page .skill-content .skill-title {
    font-size: 26px;
  }
}
.professional-wrapper.professional-wrapper-page .skill-content .skill-content-wrap ul .skill-content-items {
  background: var(--white);
}
.professional-wrapper.professional-wrapper-page .skill-content .skill-content-wrap ul .skill-content-items .icon {
  background: var(--border-3);
}
.professional-wrapper.professional-wrapper-page .skill-content .skill-content-wrap ul .skill-content-items .title {
  color: var(--black);
}
.professional-wrapper.professional-wrapper-page .skill-content .skill-content-wrap ul .skill-content-items .progress-counter {
  background: var(--border-3);
  color: var(--black);
}
.professional-wrapper.professional-wrapper-page .experience-content {
  margin-left: 140px;
}
@media (max-width: 1899px) {
  .professional-wrapper.professional-wrapper-page .experience-content {
    margin-left: 0;
  }
}
.professional-wrapper.professional-wrapper-page .experience-content .experience-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  border-bottom: 1px dotted var(--black);
  color: var(--black);
}
@media (max-width: 1600px) {
  .professional-wrapper.professional-wrapper-page .experience-content .experience-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .professional-wrapper.professional-wrapper-page .experience-content .experience-title {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .professional-wrapper.professional-wrapper-page .experience-content .experience-title {
    font-size: 26px;
  }
}
.professional-wrapper.professional-wrapper-page .experience-content .experience-list-item .icon svg path {
  fill: #0A0909;
}
.professional-wrapper.professional-wrapper-page .experience-content .experience-list-item .icon::before {
  background: var(--border);
}
.professional-wrapper.professional-wrapper-page .experience-content .experience-list-item .year {
  color: var(--black);
}
.professional-wrapper.professional-wrapper-page .experience-content .experience-list-item p {
  color: var(--black);
}
.professional-wrapper.professional-wrapper-page .experience-content .experience-list-item p span {
  color: var(--pra-text);
  font-weight: 400;
}
.professional-wrapper.professional-wrapper-page .professional-thumb {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 270px;
  padding: 30px 31px;
  margin-left: 85px;
}
@media (max-width: 1899px) {
  .professional-wrapper.professional-wrapper-page .professional-thumb {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .professional-wrapper.professional-wrapper-page .professional-thumb {
    display: none;
  }
}
.professional-wrapper.professional-wrapper-page .professional-thumb .thumb {
  background: var(--white);
  text-align: center;
  border-radius: 270px;
  width: 397px;
  height: 544px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 1399px) {
  .professional-wrapper.professional-wrapper-page .professional-thumb .thumb {
    width: 219px;
    height: 300px;
  }
}
.professional-wrapper.professional-wrapper-page .professional-thumb .thumb img {
  margin-top: 125px;
}
.professional-wrapper .image-wrapper {
  position: relative;
}
@media (max-width: 1899px) {
  .professional-wrapper .image-wrapper .image-container {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 1600px) {
  .professional-wrapper .image-wrapper .image-container {
    margin-top: 57px;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .professional-wrapper .image-wrapper .image-container {
    margin-top: 0;
  }
}
@media (max-width: 1899px) {
  .professional-wrapper .image-wrapper .image-container img:last-child {
    display: none;
  }
}
@media (max-width: 1600px) {
  .professional-wrapper .image-wrapper .image-container img:last-child {
    display: flex;
  }
}
@media (max-width: 1600px) {
  .professional-wrapper .image-wrapper .image-container img {
    max-width: 60px;
    text-align: center;
    min-height: 90vh;
  }
}
@media (max-width: 1399px) {
  .professional-wrapper .image-wrapper .image-container img {
    max-width: 50px;
    min-height: 65vh;
  }
}
@media (max-width: 1199px) {
  .professional-wrapper .image-wrapper .image-container img {
    max-width: 100%;
    min-height: 100%;
  }
}
@media (max-width: 500px) {
  .professional-wrapper .image-wrapper .image-container img {
    min-width: 80px !important;
    min-height: auto !important;
  }
}
@media (max-width: 470px) {
  .professional-wrapper .image-wrapper .image-container img {
    min-width: 90px !important;
    min-height: auto !important;
  }
}
@media (max-width: 450px) {
  .professional-wrapper .image-wrapper .image-container img {
    min-width: 75px !important;
    min-height: auto !important;
  }
}
@media (max-width: 350px) {
  .professional-wrapper .image-wrapper .image-container img {
    min-width: 60px !important;
    min-height: auto !important;
  }
}
.professional-wrapper .image-wrapper .thumb {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 1199px) {
  .professional-wrapper .image-wrapper .thumb {
    width: auto;
  }
}
@media (max-width: 991px) {
  .professional-wrapper .image-wrapper .thumb {
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 991px) {
  .professional-wrapper .image-wrapper .thumb {
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 500px) {
  .professional-wrapper .image-wrapper .thumb {
    width: 100%;
  }
}
.professional-wrapper .skill-content {
  margin-top: 900px;
}
@media (max-width: 1399px) {
  .professional-wrapper .skill-content {
    margin-top: 600px;
  }
}
@media (max-width: 1199px) {
  .professional-wrapper .skill-content {
    margin-top: 0;
  }
}
.professional-wrapper .skill-content .skill-title {
  color: var(--white);
  border-bottom: 1px dotted var(--white);
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
}
@media (max-width: 1600px) {
  .professional-wrapper .skill-content .skill-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .professional-wrapper .skill-content .skill-title {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .professional-wrapper .skill-content .skill-title {
    font-size: 26px;
  }
}
.professional-wrapper .skill-content-wrap ul li {
  background: var(--theme-6);
  padding: 16px;
  margin-bottom: 32px;
  border-radius: 16px;
}
.professional-wrapper .skill-content-wrap ul li:last-child {
  margin: 0;
}
.professional-wrapper .skill-content-wrap ul li .icon {
  border-radius: 16px;
  width: 72px;
  height: 72px;
  background: var(--black);
}
.professional-wrapper .skill-content-wrap ul li .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--white);
}
.professional-wrapper .skill-content-wrap ul li .progress-counter {
  border-radius: 16px;
  width: 72px;
  height: 72px;
  background: var(--black);
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
}
.professional-wrapper .experience-content {
  margin-top: 900px;
}
@media (max-width: 1399px) {
  .professional-wrapper .experience-content {
    margin-top: 600px;
  }
}
@media (max-width: 1199px) {
  .professional-wrapper .experience-content {
    margin-top: 0;
  }
}
.professional-wrapper .experience-content .experience-title {
  color: var(--white);
  border-bottom: 1px dotted var(--white);
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
}
@media (max-width: 1600px) {
  .professional-wrapper .experience-content .experience-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .professional-wrapper .experience-content .experience-title {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .professional-wrapper .experience-content .experience-title {
    font-size: 26px;
  }
}
.professional-wrapper .experience-content-wrap .experience-list-item {
  gap: 32px;
  position: relative;
  margin-bottom: 72px;
}
@media (max-width: 1399px) {
  .professional-wrapper .experience-content-wrap .experience-list-item {
    gap: 20px;
  }
}
.professional-wrapper .experience-content-wrap .experience-list-item:last-child {
  margin-bottom: 0;
}
.professional-wrapper .experience-content-wrap .experience-list-item:last-child .icon::before {
  display: none;
}
.professional-wrapper .experience-content-wrap .icon {
  border: 1px solid var(--border-2);
  border-radius: 16px;
  width: 72px;
  height: 72px;
  position: relative;
}
.professional-wrapper .experience-content-wrap .icon::before {
  content: "";
  width: 1px;
  height: 70px;
  background: var(--white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 72px;
}
.professional-wrapper .experience-content-wrap .experience-items-title .year {
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
}
.professional-wrapper .experience-content-wrap .experience-items-title p {
  color: var(--white);
}
@media (max-width: 1399px) {
  .professional-wrapper .experience-content-wrap .experience-items-title p {
    gap: 20px;
    font-size: 15px;
  }
}
.professional-wrapper .experience-content-wrap .experience-items-title p span {
  color: var(--theme);
}

/* ==========================================================================
   29. Projects
   ========================================================================== */
.project-wrapper {
  background: var(--black);
  position: relative;
  z-index: 1;
}
.project-wrapper .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.project-wrapper .section-top-title {
  position: relative;
  z-index: 99;
}
.project-wrapper .section-top-title .title {
  font-weight: 500;
  font-size: 80px !important;
  line-height: 150%;
  text-align: center;
  color: var(--white) !important;
  display: inline-flex;
}
@media (max-width: 1399px) {
  .project-wrapper .section-top-title .title {
    font-size: 60px !important;
  }
}
@media (max-width: 1199px) {
  .project-wrapper .section-top-title .title {
    font-size: 50px !important;
  }
}
@media (max-width: 991px) {
  .project-wrapper .section-top-title .title {
    font-size: 40px !important;
  }
}
@media (max-width: 500px) {
  .project-wrapper .section-top-title .title {
    font-size: 35px !important;
  }
}
@media (max-width: 450px) {
  .project-wrapper .section-top-title .title {
    font-size: 25px !important;
  }
}
@media (max-width: 350px) {
  .project-wrapper .section-top-title .title {
    font-size: 20px !important;
  }
}
.project-wrapper .section-top-title .title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}
@media (max-width: 500px) {
  .project-wrapper .section-top-title .title span {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 450px) {
  .project-wrapper .section-top-title .title span {
    width: 40px;
    height: 40px;
  }
}
.project-wrapper .section-top-title .title span svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 500px) {
  .project-wrapper .section-top-title .title span svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 450px) {
  .project-wrapper .section-top-title .title span svg {
    width: 40px;
    height: 40px;
  }
}
.project-wrapper .project-card {
  position: relative;
}
.project-wrapper .project-card .bf--hover-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.project-wrapper .project-card .bf--hover-img canvas {
  top: -50px;
  left: 0;
  width: 100% !important;
  height: 800px !important;
  position: absolute;
  border-radius: 10px;
}
.project-wrapper .project-card .thumb-content {
  overflow: hidden;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .project-wrapper .project-card .thumb-content {
    width: 100%;
  }
}
.project-wrapper .project-card .thumb-content img {
  border-radius: 15px;
}
.project-wrapper .project-card .bottom-content {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 24px;
  left: 24px;
  gap: 20px;
  z-index: 99;
}
.project-wrapper .project-card .bottom-content span {
  border-radius: 8px;
  padding: 4px 32px;
  background: var(--black);
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: var(--white);
  display: inline-block;
}
@media (max-width: 1399px) {
  .project-wrapper .project-card .bottom-content span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .project-wrapper .project-card .bottom-content span {
    padding: 4px 20px;
  }
}
.project-wrapper .project-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}
@media (max-width: 991px) {
  .project-wrapper .project-btn {
    margin-top: 0;
  }
}
.project-wrapper .project-btn .gt-hover-btn-wrapper .gt-hover-btn {
  background: var(--theme);
  border: 1px solid transparent !important;
}
.project-wrapper.style-three .project-card {
  position: relative;
}
.project-wrapper.style-three .project-card .bottom-content {
  position: relative;
  bottom: 0;
  left: 0;
  margin-top: 30px;
  margin-bottom: 10px;
}
.project-wrapper.style-three .project-card .bottom-content span {
  background: transparent;
  border: 1px solid var(--border-2) !important;
}
.project-wrapper.style-three .project-card .title-content {
  position: absolute;
  bottom: 92px;
  left: 32px;
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--white);
}
@media (max-width: 991px) {
  .project-wrapper.style-three .project-card .title-content {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .project-wrapper.style-three .project-card .title-content {
    font-size: 18px;
  }
}
.project-wrapper.style-three .project-card .bf--hover-img canvas {
  top: 25px;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  border-radius: 10px;
  margin-top: -30px;
}
.project-wrapper.style-three .bf-btn-wrap {
  display: inline-flex;
  width: 100%;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .project-wrapper.style-three .bf-btn-wrap {
    margin-top: 50px;
  }
}

/* ==========================================================================
   30. Services
   ========================================================================== */
.service-wrapper .custom-container .section-title {
  margin-bottom: 80px;
}
.service-wrapper .custom-container .section-title .content-right {
  justify-content: start;
  gap: 20px;
}
.service-wrapper .custom-container .section-title .content-right .sub-title {
  transform: rotate(35deg);
}
.service-wrapper .custom-container .section-title .content-right .animation-border-wrap {
  width: 312px;
}
@media (max-width: 1700px) {
  .service-wrapper .custom-container .section-title .content-right .animation-border-wrap {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .service-wrapper .custom-container .section-title .content-right .animation-border-wrap {
    width: 300px;
  }
}
.service-wrapper .custom-container .section-title .title {
  max-width: 1018px;
}
.service-wrapper .custom-container .service-slider-content {
  margin: 0 300px;
  position: relative;
}
@media (max-width: 1700px) {
  .service-wrapper .custom-container .service-slider-content {
    margin: 0 150px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper .custom-container .service-slider-content {
    margin: 0;
  }
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide {
  position: relative;
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide.swiper-slide-active .thumb-title-content {
  visibility: visible;
  opacity: 1;
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide.swiper-slide-active .thumb-title-content .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--black);
}
@media (max-width: 991px) {
  .service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide.swiper-slide-active .thumb-title-content .title {
    font-size: 22px;
    line-height: 1.5;
  }
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide.swiper-slide-active .thumb-title-content .title a {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--black);
}
@media (max-width: 991px) {
  .service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide.swiper-slide-active .thumb-title-content .title a {
    font-size: 22px;
    line-height: 1.5;
  }
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide.swiper-slide-active .thumb-teb-content {
  visibility: visible;
  opacity: 1;
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide img {
  width: 100%;
  border-radius: 8px;
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide .thumb-title-content {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 52px;
  background-color: var(--white);
  border-radius: 40px;
  position: absolute;
  left: 32px;
  bottom: 32px;
  visibility: hidden;
  opacity: 0;
  transition: all 250ms ease-in-out;
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide .thumb-teb-content {
  position: absolute;
  top: 32px;
  left: 32px;
  gap: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 250ms ease-in-out;
}
@media (max-width: 991px) {
  .service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide .thumb-teb-content {
    top: 10px;
    left: 10px;
  }
}
.service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide .thumb-teb-content p {
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 131px;
  height: 43px;
  padding: 6px 24px;
  background-color: #ffffff;
  border-radius: 60px;
}
@media (max-width: 991px) {
  .service-wrapper .custom-container .service-slider-content .swiper-wrapper .swiper-slide .thumb-teb-content p {
    font-size: 12px;
    line-height: 1.5;
    width: 100px;
    height: 23px;
  }
}
.service-wrapper.style-two {
  position: relative;
  z-index: 9;
}
.service-wrapper.style-two .section-top-title .title {
  max-width: 948px;
}
.service-wrapper.style-two .shape {
  position: absolute;
  top: 190px;
  right: 40%;
  z-index: -1;
}
@media (max-width: 470px) {
  .service-wrapper.style-two .shape {
    display: none;
  }
}
.service-wrapper.style-two .nav {
  border-left: 1px solid var(--border);
}
.service-wrapper.style-two .nav .nav-link {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--pra-text);
  padding: 50px 40px 50px 49px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  position: relative;
}
@media (max-width: 1800px) {
  .service-wrapper.style-two .nav .nav-link {
    padding: 44px;
    font-size: 30px;
  }
}
@media (max-width: 1700px) {
  .service-wrapper.style-two .nav .nav-link {
    padding: 48px 25px;
    font-size: 24px;
  }
}
@media (max-width: 1600px) {
  .service-wrapper.style-two .nav .nav-link {
    padding: 45px 10px;
    font-size: 20px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper.style-two .nav .nav-link {
    padding: 35px 10px;
  }
}
@media (max-width: 450px) {
  .service-wrapper.style-two .nav .nav-link {
    flex-direction: column;
  }
}
.service-wrapper.style-two .nav .nav-link:last-child {
  border-bottom: none;
}
.service-wrapper.style-two .nav .nav-link span {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  text-align: right;
  color: var(--pra-text);
}
@media (max-width: 1399px) {
  .service-wrapper.style-two .nav .nav-link span {
    font-size: 13px;
  }
}
.service-wrapper.style-two .nav .nav-link:focus {
  box-shadow: none;
}
.service-wrapper.style-two .nav .nav-link.active {
  background: transparent;
}
.service-wrapper.style-two .nav .nav-link.active::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 81px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--pra-text);
}
.service-wrapper.style-three .service-card .service-card-items {
  background: #E4E4E4;
  padding: 52px 40px 42px 40px;
  border-radius: 400px;
  max-width: 1008px;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .service-wrapper.style-three .service-card .service-card-items {
    flex-direction: column;
    gap: 20px;
    border-radius: 30px;
    padding: 25px;
  }
}
.service-wrapper.style-three .service-card .service-card-items .items-content-wrap {
  gap: 30px;
  align-items: start;
}
@media (max-width: 991px) {
  .service-wrapper.style-three .service-card .service-card-items .items-content-wrap {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.service-wrapper.style-three .service-card .service-card-items span {
  font-weight: 500;
  font-size: 20px;
  line-height: 200%;
  color: var(--black);
  height: 60px;
  width: 60px;
  border-left: 1px solid var(--border-4);
  border-top: 1px solid var(--border-4);
  border-bottom: 1px solid var(--border-4);
  display: inline-flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
}
.service-wrapper.style-three .service-card .service-card-items .title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  color: var(--black);
}
@media (max-width: 991px) {
  .service-wrapper.style-three .service-card .service-card-items .title {
    text-align: center;
    font-size: 25px;
  }
}
.service-wrapper.style-three .service-card .service-card-items .text {
  max-width: 700px;
}
@media (max-width: 991px) {
  .service-wrapper.style-three .service-card .service-card-items .text {
    text-align: center;
  }
}
.service-wrapper.style-three .service-card .service-card-items .service-btn .cir-btn {
  position: relative;
  border: 1px solid var(--border-4);
  transition: all 0.4s ease-in-out;
}
.service-wrapper.style-three .service-card .service-card-items .service-btn .cir-btn .arrow-svg {
  position: absolute;
  right: -20px;
  transition: all 0.4s ease-in-out;
}
.service-wrapper.style-three .service-card .service-card-items:hover {
  border: 1px solid var(--theme);
}
.service-wrapper.style-three .service-card .service-card-items:hover .service-btn .cir-btn {
  border: 1px solid var(--black);
}
.service-wrapper.style-three .service-card .service-card-items:hover .service-btn .cir-btn svg path {
  fill: var(--black);
}
.service-wrapper.style-three .service-card .items-1 {
  margin-left: auto;
}
@media (max-width: 1399px) {
  .service-wrapper.style-three .service-card .items-1 {
    margin-right: 0;
    margin-left: 0;
  }
}
.service-wrapper.style-three .service-card .items-2 {
  margin-left: auto;
  margin-right: 220px;
}
@media (max-width: 1700px) {
  .service-wrapper.style-three .service-card .items-2 {
    margin-right: 100px;
  }
}
@media (max-width: 1600px) {
  .service-wrapper.style-three .service-card .items-2 {
    margin-right: 90px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper.style-three .service-card .items-2 {
    margin-right: 0;
    margin-left: 0;
  }
}
.service-wrapper.style-three .service-card .items-3 {
  margin-right: auto;
  margin-left: 220px;
}
@media (max-width: 1600px) {
  .service-wrapper.style-three .service-card .items-3 {
    margin-left: 30px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper.style-three .service-card .items-3 {
    margin-right: 0;
    margin-left: 0;
  }
}
.service-wrapper.style-three .service-card .hover-reveal-item {
  position: relative;
}
.service-wrapper.style-three .service-card .hover-reveal-item .thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
  width: 478.681px;
  height: 570px;
  opacity: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  border-radius: 10px;
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
  margin: -260px 0 0 -150px;
}
@media (max-width: 991px) {
  .service-wrapper.style-three .service-card .hover-reveal-item .thumb {
    display: none;
  }
}
.service-wrapper.style-three .service-card .hover-reveal-item:hover {
  cursor: pointer;
}
.service-wrapper.style-three .service-card .hover-reveal-item:hover .thumb {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   31. Social Media
   ========================================================================== */
.social-media-wrapper {
  background-color: var(--theme);
  padding-bottom: 25px;
  position: relative;
  z-index: 3;
}
.social-media-wrapper .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.social-media-wrapper .bg-shape img {
  -o-object-fit: cover;
     object-fit: cover;
}
.social-media-wrapper .social-media-card-wrapper {
  background: var(--white);
  padding: 60px;
  border-radius: 8px;
  position: relative;
  z-index: 99;
}
@media (max-width: 575px) {
  .social-media-wrapper .social-media-card-wrapper {
    padding: 20px;
  }
}
.social-media-wrapper .social-media-card-wrapper .bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.social-media-wrapper .social-media-card-wrapper .bg-shape img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100% !important;
}
.social-media-wrapper .bottom-content {
  margin-top: 47px;
}
.social-media-wrapper .bottom-content svg {
  overflow: visible;
}
@media (max-width: 1899px) {
  .social-media-wrapper .bottom-content svg {
    width: 100%;
  }
}
.social-media-wrapper .bottom-content svg path {
  transition: transform 0.3s ease;
  transform-origin: top center;
}
.social-media-wrapper .bottom-content svg path:hover {
  transform: scaleY(1.2);
}

/* ==========================================================================
   32. Team
   ========================================================================== */
.team-wrapper {
  padding-bottom: 300px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .team-wrapper {
    padding-bottom: 200px;
  }
}
.team-wrapper .shape {
  position: absolute;
  top: 190px;
  right: 40%;
  z-index: 1;
}
@media (max-width: 1199px) {
  .team-wrapper .shape {
    display: none;
  }
}
@media (max-width: 991px) {
  .team-wrapper .custom-container .section-top-title {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 1600px) {
  .team-wrapper .custom-container .section-top-title .title {
    max-width: 750px;
  }
}
@media (max-width: 991px) {
  .team-wrapper .custom-container .section-top-title .content-right {
    flex-direction: column-reverse !important;
  }
}
.team-wrapper .custom-container .team-slider {
  position: relative;
}
.team-wrapper .custom-container .team-slider .team-shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1363px;
  bottom: -120px;
}
.team-wrapper .custom-container .team-slider .team-shape .thumb-img-1 {
  position: absolute;
  left: 60px;
  bottom: 120px;
}
@media (max-width: 1399px) {
  .team-wrapper .custom-container .team-slider .team-shape .thumb-img-1 {
    left: 90px;
  }
}
@media (max-width: 1199px) {
  .team-wrapper .custom-container .team-slider .team-shape .thumb-img-1 {
    left: 205px;
  }
}
@media (max-width: 991px) {
  .team-wrapper .custom-container .team-slider .team-shape .thumb-img-1 {
    display: none;
  }
}
.team-wrapper .custom-container .team-slider .team-shape .thumb-img-2 {
  position: absolute;
  right: 60px;
  bottom: 120px;
}
@media (max-width: 1399px) {
  .team-wrapper .custom-container .team-slider .team-shape .thumb-img-2 {
    right: 90px;
  }
}
@media (max-width: 1199px) {
  .team-wrapper .custom-container .team-slider .team-shape .thumb-img-2 {
    right: 205px;
  }
}
@media (max-width: 991px) {
  .team-wrapper .custom-container .team-slider .team-shape .thumb-img-2 {
    display: none;
  }
}
.team-wrapper .custom-container .team-slider .team-slider-active {
  width: 421px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 450px) {
  .team-wrapper .custom-container .team-slider .team-slider-active {
    width: 100%;
  }
}
.team-wrapper .custom-container .team-slider .team-slider-active .thumb-content {
  text-align: center;
  margin-top: 40px;
}
.team-wrapper .custom-container .team-slider .team-slider-active .thumb-content .name {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
  color: var(--black);
}
.team-wrapper .custom-container .team-slider .team-slider-active .thumb-content .position {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--pra-text);
}
.team-wrapper .custom-container .team-slider .team-slider-active .thumb-content ul {
  gap: 16px;
}
.team-wrapper .custom-container .team-slider .team-slider-active .thumb-content ul li a {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team-wrapper .custom-container .team-slider .team-slider-active .thumb-content ul li a:hover {
  background: var(--theme);
}
.team-wrapper .custom-container .team-slider .swiper-slide {
  position: relative;
}
.team-wrapper .custom-container .team-slider .swiper-slide .slider-thumb img {
  border-radius: 20px;
}
.team-wrapper .custom-container .team-slider .slider-team-prev,
.team-wrapper .custom-container .team-slider .slider-team-next {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.team-wrapper .custom-container .team-slider .slider-team-prev:hover,
.team-wrapper .custom-container .team-slider .slider-team-next:hover {
  background: var(--theme);
}
.team-wrapper .custom-container .team-slider .slider-team-prev:hover svg path,
.team-wrapper .custom-container .team-slider .slider-team-next:hover svg path {
  fill: var(--white);
}
.team-wrapper .custom-container .team-slider .slider-team-next {
  position: absolute;
  left: 35%;
}
@media (max-width: 991px) {
  .team-wrapper .custom-container .team-slider .slider-team-next {
    left: 10%;
    bottom: -150px;
  }
}
.team-wrapper .custom-container .team-slider .slider-team-prev {
  position: absolute;
  right: 35%;
}
@media (max-width: 991px) {
  .team-wrapper .custom-container .team-slider .slider-team-prev {
    right: 10%;
    bottom: -150px;
  }
}

/* ==========================================================================
   33. Testimonials
   ========================================================================== */
.testimonial-wrapper {
  background: var(--black);
}
@media (max-width: 1399px) {
  .testimonial-wrapper .middle-content-wrap .animation-border-wrap {
    width: 100%;
    min-width: 200px;
  }
}
@media (max-width: 1399px) {
  .testimonial-wrapper .middle-content-wrap .circle-thumb .cir36 {
    display: none;
  }
}
.testimonial-wrapper.style-two {
  background: var(--white);
}
.testimonial-wrapper.style-two .swiper {
  width: 600px !important;
}
@media (max-width: 575px) {
  .testimonial-wrapper.style-two .swiper {
    width: 100% !important;
    margin-bottom: 150px;
  }
}
@media (max-width: 450px) {
  .testimonial-wrapper.style-two .swiper {
    margin-bottom: 70px;
  }
}
.testimonial-wrapper.style-two .swiper .swiper-slide {
  border-radius: 16px !important;
  background: var(--white) !important;
}
.testimonial-wrapper.style-three .swiper {
  width: 100% !important;
}
.testimonial-wrapper.style-three .testimonial-card {
  position: relative !important;
}
.testimonial-wrapper.style-last {
  padding-bottom: 180px !important;
}
.testimonial-wrapper.style-last .section-title {
  text-align: center;
  margin-bottom: 80px;
}
.testimonial-wrapper.style-last .section-title h2 {
  max-width: 1009px;
  margin: 0 auto;
}
.testimonial-wrapper.style-last .testimonial-active-slider-three {
  overflow: visible;
}
.testimonial-wrapper.style-last .testimonial-active-slider-three .swiper-wrapper {
  overflow: visible;
}
.testimonial-wrapper.style-last .testimonial-active-slider-three .swiper-wrapper .swiper-slide {
  transition: transform 0.4s ease;
}
.testimonial-wrapper.style-last .testimonial-active-slider-three .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: translateY(80px);
}

/* ==========================================================================
   33. Testimonials
   ========================================================================== *//*# sourceMappingURL=main.css.map */