/*
 * Author: S.Sangeethan
 * Version: 1.0
 */

/*

479px - Mobile (Portrait)
639px - Mobile (Landscape)
767px - Tablet (Portrait)
1023px - Tablet (Landscape)
1279px - Small Desktop
1440px - Large Desktop
>1441px - Extra Large Desktop
*/

/**************-------------------------------------**************/
/*                           VARIABLES                           */
/**************-------------------------------------**************/
/* COLORS */
:root {
  --color-primary: #dba495;
  --color-secondary: #002323;

  --color-black: #000;
  --color-white: #fff;

  --color-grey-1: #99a7a7;
  --color-grey-2: #a6a6a6;

  --color-border-1: #545454;
  --color-border-2: #ffffff26;
}

/* SHADOWS */

:root {
  --shadow-xs: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  --shadow-sm:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-md:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --shadow-lg:
    rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-xl:
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

/* FONTS */
:root {
  --heading-font: "Libre Bodoni", serif;
  --body-font: "Roboto", sans-serif;
}

/* FONT SIZE*/

/* Clamp */
:root {
  --font-size-xs: clamp(8px, calc(6.67px + 0.37vw), 12px); /* changed */
  --font-size-sm: clamp(10px, calc(8px + 0.56vw), 14px); /* changed */
  --font-size-md: clamp(11px, calc(9.33px + 0.46vw), 16px); /* changed */
  --font-size-lg: clamp(12px, calc(10px + 0.56vw), 18px); /* changed */
  --font-size-xl: clamp(14px, calc(12px + 0.56vw), 20px); /* changed */
  --font-size-2xl: clamp(15px, calc(12px + 0.83vw), 24px); /* changed */
  --font-size-3xl: clamp(16px, calc(12px + 1.11vw), 28px); /* changed */
  --font-size-4xl: clamp(18px, calc(13.33px + 1.3vw), 32px); /* changed */
  --font-size-5xl: clamp(20px, calc(13.33px + 1.85vw), 40px); /* changed */
  --font-size-6xl: clamp(24px, calc(16px + 2.22vw), 48px); /* changed */
  --font-size-7xl: clamp(30px, calc(20px + 2.78vw), 60px); /* changed */
  --font-size-8xl: clamp(36px, calc(24px + 3.33vw), 72px); /* changed */
  --font-size-9xl: clamp(44px, calc(29.33px + 4.07vw), 88px); /* changed */
}

/* :root {
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 32px;
  --font-size-5xl: 40px;
  --font-size-6xl: 48px;
  --font-size-7xl: 60px;
  --font-size-8xl: 72px;
  --font-size-9xl: 96px;
}

@media screen and (max-width: 1440px) {
  :root {
    --font-size-2xl: calc(24px * 0.9);
    --font-size-3xl: calc(28px * 0.9);
    --font-size-4xl: calc(32px * 0.9);
    --font-size-5xl: calc(40px * 0.9);
    --font-size-6xl: calc(48px * 0.9);
    --font-size-7xl: calc(60px * 0.9);
    --font-size-8xl: calc(72px * 0.9);
    --font-size-9xl: calc(96px * 0.9);
  }
}

@media screen and (max-width: 1279px) {
  :root {
    --font-size-4xl: calc(32px * 0.8);
    --font-size-5xl: calc(40px * 0.8);
    --font-size-6xl: calc(48px * 0.8);
    --font-size-7xl: calc(60px * 0.8);
    --font-size-8xl: calc(72px * 0.8);
    --font-size-9xl: calc(96px * 0.8);
  }
}

@media screen and (max-width: 1023px) {
  :root {
    --font-size-4xl: calc(32px * 0.7);
    --font-size-5xl: calc(40px * 0.7);
    --font-size-6xl: calc(48px * 0.7);
    --font-size-7xl: calc(60px * 0.7);
    --font-size-8xl: calc(72px * 0.7);
    --font-size-9xl: calc(96px * 0.7);
  }
}

@media screen and (max-width: 767px) {
  :root {
    --font-size-4xl: calc(32px * 0.6);
    --font-size-5xl: calc(40px * 0.6);
    --font-size-6xl: calc(48px * 0.6);
    --font-size-7xl: calc(60px * 0.6);
    --font-size-8xl: calc(72px * 0.6);
    --font-size-9xl: calc(96px * 0.6);
  }
}

@media screen and (max-width: 639px) {
  :root {
    --font-size-8xl: calc(72px * 0.5);
    --font-size-9xl: calc(96px * 0.5);

    --font-size-xs: 10px;
    --font-size-sm: 12px;
    --font-size-md: 14px;
    --font-size-lg: 16px;
    --font-size-xl: 18px;
  }
} */

/* SPACING */
:root {
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-md-2: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-lg-2: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  --spacing-3xl: 8rem;
  --spacing-4xl: 10rem;
  --spacing-5xl: 12rem;
  --spacing-6xl: 14rem;
  --spacing-7xl: 16rem;
  --spacing-8xl: 18rem;
  --spacing-9xl: 20rem;
}

@media screen and (max-width: 1440px) {
  :root {
    --spacing-xs: calc(0.25rem * 0.9);
    --spacing-sm: calc(0.5rem * 0.9);
    --spacing-md: calc(1rem * 0.9);
    --spacing-md-2: calc(1.5rem * 0.9);
    --spacing-lg: calc(2rem * 0.9);
    --spacing-lg-2: calc(3rem * 0.9);
    --spacing-xl: calc(4rem * 0.9);
    --spacing-2xl: calc(6rem * 0.9);
    --spacing-3xl: calc(8rem * 0.9);
    --spacing-4xl: calc(10rem * 0.9);
    --spacing-5xl: calc(12rem * 0.9);
    --spacing-6xl: calc(14rem * 0.9);
    --spacing-7xl: calc(16rem * 0.9);
    --spacing-8xl: calc(18rem * 0.9);
    --spacing-9xl: calc(20rem * 0.9);
  }
}

@media screen and (max-width: 1279px) {
  :root {
    --spacing-xs: calc(0.25rem * 0.8);
    --spacing-sm: calc(0.5rem * 0.8);
    --spacing-md: calc(1rem * 0.8);
    --spacing-md-2: calc(1.5rem * 0.8);
    --spacing-lg: calc(2rem * 0.8);
    --spacing-lg-2: calc(3rem * 0.8);
    --spacing-xl: calc(4rem * 0.8);
    --spacing-2xl: calc(6rem * 0.8);
    --spacing-3xl: calc(8rem * 0.8);
    --spacing-4xl: calc(10rem * 0.8);
    --spacing-5xl: calc(12rem * 0.8);
    --spacing-6xl: calc(14rem * 0.8);
    --spacing-7xl: calc(16rem * 0.8);
    --spacing-8xl: calc(18rem * 0.8);
    --spacing-9xl: calc(20rem * 0.8);
  }
}

@media screen and (max-width: 1023px) {
  :root {
    --spacing-xs: calc(0.25rem * 0.7);
    --spacing-sm: calc(0.5rem * 0.7);
    --spacing-md: calc(1rem * 0.7);
    --spacing-md-2: calc(1.5rem * 0.7);
    --spacing-lg: calc(2rem * 0.7);
    --spacing-lg-2: calc(3rem * 0.7);
    --spacing-xl: calc(4rem * 0.7);
    --spacing-2xl: calc(6rem * 0.7);
    --spacing-3xl: calc(8rem * 0.7);
    --spacing-4xl: calc(10rem * 0.7);
    --spacing-5xl: calc(12rem * 0.7);
    --spacing-6xl: calc(14rem * 0.7);
    --spacing-7xl: calc(16rem * 0.7);
    --spacing-8xl: calc(18rem * 0.7);
    --spacing-9xl: calc(20rem * 0.7);
  }
}

@media screen and (max-width: 767px) {
  :root {
    --spacing-lg: calc(2rem * 0.6);
    --spacing-lg-2: calc(3rem * 0.6);
    --spacing-xl: calc(4rem * 0.6);
    --spacing-2xl: calc(6rem * 0.6);
    --spacing-3xl: calc(8rem * 0.6);
    --spacing-4xl: calc(10rem * 0.6);
    --spacing-5xl: calc(12rem * 0.6);
    /* --spacing-6xl: calc(14rem * 0.6); */
    --spacing-7xl: calc(16rem * 0.6);
    --spacing-8xl: calc(18rem * 0.6);
    --spacing-9xl: calc(20rem * 0.6);
  }
}

@media screen and (max-width: 639px) {
  :root {
    --spacing-lg-2: calc(3rem * 0.5);
    --spacing-xl: calc(4rem * 0.5);
    --spacing-2xl: calc(6rem * 0.5);
    --spacing-3xl: calc(8rem * 0.5);
    --spacing-4xl: calc(10rem * 0.5);
    --spacing-5xl: calc(12rem * 0.5);
    /* --spacing-6xl: calc(14rem * 0.5); */
    --spacing-7xl: calc(16rem * 0.5);
    --spacing-8xl: calc(18rem * 0.5);
    --spacing-9xl: calc(20rem * 0.5);
  }
}

@media screen and (max-width: 479px) {
  :root {
    --spacing-2xl: calc(6rem * 0.47);
    --spacing-3xl: calc(8rem * 0.47);
    --spacing-4xl: calc(10rem * 0.47);
    --spacing-5xl: calc(12rem * 0.47);
    /* --spacing-6xl: calc(14rem * 0.47); */
    --spacing-7xl: calc(16rem * 0.47);
    --spacing-8xl: calc(18rem * 0.47);
    --spacing-9xl: calc(20rem * 0.47);
  }
}

/* MAX WIDTH */
:root {
  --max-width-xs: 330px;
  --max-width-sm: 479px;
  --max-width-md: 568px;
  --max-width-lg: 767px;
  --max-width-xl: 920px;
  --max-width-2xl: 1023px;
  --max-width-3xl: 1279px;
  --max-width-4xl: 1440px;
}

/* BORDER RADIUS */
:root {
  --rounded-xs: 2px;
  --rounded-sm: 4px;
  --rounded-md: 6px;
  --rounded-lg: 8px;
  --rounded-xl: 12px;
  --rounded-2xl: 16px;
  --rounded-3xl: 24px;
  --rounded-4xl: 28px;
  --rounded-5xl: 32px;
  --rounded-6xl: 40px;
  --rounded-full: 999px;
}

@media screen and (max-width: 1023px) {
  :root {
    --rounded-md: 5px;
    --rounded-lg: 7px;
    --rounded-xl: 10px;
    --rounded-2xl: 14px;
    --rounded-3xl: 22px;
    --rounded-4xl: 24px;
    --rounded-5xl: 28px;
    --rounded-6xl: 32px;
  }
}

@media screen and (max-width: 639px) {
  :root {
    --rounded-xl: 8px;
    --rounded-2xl: 12px;
    --rounded-3xl: 18px;
    --rounded-4xl: 20px;
    --rounded-5xl: 24px;
    --rounded-6xl: 28px;
  }
}

/**************-------------------------------------**************/
/*                           ANIMATIONS                          */
/**************-------------------------------------**************/

@keyframes infinite-slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/**************-------------------------------------**************/
/*                           SMOOTH SCROLL                       */
/**************-------------------------------------**************/

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

::-webkit-scrollbar {
  display: none;
}

/**************-------------------------------------**************/
/*                           GLOBAL                              */
/**************-------------------------------------**************/

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

a,
a:link {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a,
button,
.menu-toggle-btn {
  -webkit-tap-highlight-color: transparent;
}

:focus:not(:focus-visible) {
  outline: none;
}

a:hover,
a:active,
a:visited {
}

html {
  font-size: var(--font-size-md);
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  background-color: #fff;
  color: var(--color-white);
  font-size: var(--font-size-xl);
  font-family: var(--body-font);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  background-color: var(--color-secondary);
  transition: padding 0.3s;
}

body.menu-open,
body.modal-open,
body.reveal-start {
  overflow: hidden;
}

body.modal-open {
  padding-right: var(--scrollbar-width);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 1680px) {
  .container {
    max-width: var(--max-width-4xl);
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media screen and (max-width: 639px) {
  .container {
    padding: 0 15px;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
  -webkit-text-fill-color: var(--color-white);
  -webkit-box-shadow: 0 0 0px 1000px var(--color-secondary) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--color-white) !important;
  background-clip: text !important;
  background-color: var(--color-secondary) !important;
}

/**************-------------------------------------**************/
/*                           TYPOGRAPHY                          */
/**************-------------------------------------**************/
.heading-xs {
  font-size: var(--font-size-xl);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}

.heading-sm {
  font-size: var(--font-size-2xl);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}

.heading-md {
  font-size: var(--font-size-4xl);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

.heading-lg {
  font-size: var(--font-size-5xl);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

.heading-xl {
  font-size: var(--font-size-8xl);
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
}

@media screen and (max-width: 639px) {
  .heading-xl {
    line-height: 1.1;
  }
}

/**************-------------------------------------**************/
/*                       UTILITY CLASSES                         */
/**************-------------------------------------**************/

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.bg-cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hidden {
  display: none !important;
}

.show-desktop {
  display: block;
}

.show-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .show-desktop {
    display: none !important;
  }
  .show-mobile {
    display: block;
  }
}

.hero {
  padding: var(--spacing-6xl) 0;
  min-height: 100dvh;
  font-size: var(--font-size-9xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

/**************-------------------------------------**************/
/*                           COMMON                             */
/**************-------------------------------------**************/

.socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.socials a {
  display: inline-block;
  will-change: transform, opacity;
}

.socials a:hover {
  transform: scale(1.02) translate3d(0, -2px, 0);
  will-change: transform;
}

@media (max-width: 1023px) {
  .socials {
    gap: 12px;
  }
}

.section-heading-wrapper {
  max-width: var(--max-width-2xl);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1439px) {
  .section-heading-wrapper {
    max-width: var(--max-width-xl);
  }
}

[data-basic-reveal],
.section-expertise .expertise-inner .expertise-content,
.get-in-touch-form #forminator-module-190 .forminator-field {
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transform-style: preserve-3d;
}

[data-image-reveal] {
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  opacity: 0;
  will-change: clip-path, opacity;
}

@media (max-width: 1023px) {
  .section-values .value-top img,
  .section-values .value-top h3,
  .section-values .value-bottom,
  .section-expertise .expertise-inner .expertise-content .text-item h3,
  .section-expertise .expertise-inner .expertise-content .text-item p,
  .section-expertise
    .expertise-inner
    .expertise-content
    .text-item
    .mobile-image,
  .section-expertise
    .expertise-inner
    .expertise-content
    .text-item
    .btn-wrapper {
    will-change: transform, opacity;
    opacity: 0;
    transform: translate3d(0, 60px, 0);
    transform-style: preserve-3d;
  }

  .section-expertise .expertise-inner .expertise-content {
    opacity: 1;
  }
}

@media (max-width: 637px) {
  .slider-nav {
    display: none !important;
  }

  .site-footer .footer-bottom {
    transform: translate3d(0, 0, 0) !important;
  }
}

/**************-------------------------------------**************/
/*                           CONTENT PROSE                       */
/**************-------------------------------------**************/

/* Headings */
.content-prose h1,
.content-prose h2,
.content-prose h3,
.content-prose h4,
.content-prose h5,
.content-prose h6 {
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
  color: var(--color-primary);
}

.content-prose h1 {
  font-size: var(--font-size-9xl);
  font-family: var(--heading-font);
  font-weight: 400;
}
.content-prose h2 {
  font-size: var(--font-size-6xl);
  font-family: var(--heading-font);
  font-weight: 400;
}
.content-prose h3 {
  font-size: var(--font-size-5xl);
  font-weight: 400;
}
.content-prose h4 {
  font-size: var(--font-size-4xl);
  font-weight: 400;
}
.content-prose h5 {
  font-size: var(--font-size-3xl);
  font-weight: 400;
}
.content-prose h6 {
  font-size: var(--font-size-2xl);
}

/* Paragraph */
.content-prose p {
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--color-grey-1);
  font-weight: 300 !important;
}

.content-prose p:empty {
  padding-bottom: var(--spacing-lg);
}

/* Links */
.content-prose a {
  color: var(--color-primary);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.content-prose a:hover,
.content-prose a:focus {
  color: var(--color-white);
}

/* Lists */
.content-prose ul,
.content-prose ol {
  margin: var(--spacing-md) 0 var(--spacing-md) var(--spacing-lg);
  padding: 0;
  color: var(--color-grey-1);
  font-weight: 300 !important;
}

.content-prose ol ol {
  list-style-type: lower-alpha;
  margin-top: 0;
  margin-bottom: 0;
}
.content-prose ol ol ol {
  list-style-type: lower-roman;
}

.content-prose ul {
  list-style-type: disc;
}

.content-prose ul ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: circle;
  margin-left: var(--spacing-lg-2);
}

.content-prose ul ul ul {
  list-style-type: square;
}
.content-prose li {
  margin-bottom: var(--spacing-md);
}

.content-prose ol ol li,
.content-prose ul ul li {
  margin-bottom: 0;
}

/* Blockquote */
.content-prose blockquote {
  border-left: 4px solid var(--color-grey-1);
  padding-left: 1em;
  color: var(--color-grey-1);
  font-style: italic;
  margin: var(--spacing-lg) 0;
}

/* Images */
.content-prose img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: var(--spacing-md) 0;
}

/* Tables */
.content-prose .clickup-table-view {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  min-width: 600px;
}

.content-prose table th,
.content-prose table td {
  border: 1px solid #ddd;
  padding: 0.75em;
  text-align: left;
}

.content-prose .content-prose table th {
  background: #f9f9f9;
  font-weight: bold;
}

/* Code */
.content-prose code,
.content-prose pre {
  font-family: "Courier New", Courier, monospace;
  background: #f5f5f5;
  padding: 0.2em 0.4em;
  font-size: 90%;
}

.content-prose pre {
  padding: 1em;
  overflow: auto;
}

/* Horizontal Rule */
.content-prose hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 2em 0;
}

/* Captions */
.content-prose .wp-caption {
  text-align: center;
  margin: 1.5em 0;
}

.content-prose .wp-caption img {
  margin: 0 auto;
}

.content-prose .wp-caption-text {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}

@media screen and (max-width: 639px) {
  .content-prose .wp-block-columns.is-layout-flex {
    gap: 0.5em !important;
  }
}

/**************-------------------------------------**************/
/*                           BUTTONS                             */
/**************-------------------------------------**************/
.btn-primary {
  padding: 0 16px;
  gap: 10px;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: var(--font-size-xl);
  font-weight: 400;
  line-height: 1;
  position: relative;
  transition: all 0.2s;
  height: 64px;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  color: var(--color-secondary);
}

.btn-primary:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  background: var(--color-white);
  right: 0;
  left: auto;
  bottom: 0;
  transition: all 0.3s;
  z-index: -1;
}

.btn-primary:hover:before {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .btn-primary {
    border: 1px solid var(--color-white);
    height: 52px;
  }
}

@media screen and (max-width: 767px) {
  .btn-primary {
    padding: 0 12px;
    gap: 10px;
    height: 56px;
  }
}

@media screen and (max-width: 639px) {
  .btn-primary {
    height: 36px;
  }
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  color: var(--color-secondary);
  font-size: var(--font-size-xl);
  font-weight: normal;
  line-height: 1;
  border: 2px solid var(--color-primary);
  padding-right: 64px;
  display: inline-flex;
  height: 64px;
}

.btn-secondary .normal-text,
.btn-secondary .hover-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  padding: 16px;
  z-index: -1;
}

.btn-secondary .normal-text {
  background-color: var(--color-primary);
}

.btn-secondary .hover-text {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  right: 0;
  transform: translateX(calc(100% - 64px));
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.btn-secondary .hover-text svg {
  width: 32px;
}

.btn-secondary .hover-text span {
  margin-left: 8px;
}

.btn-secondary:hover .normal-text {
  transform: translateX(-100%);
  color: var(--color-secondary);
}

.btn-secondary:hover .hover-text {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 1023px) {
  .btn-secondary {
    border-width: 1px;
    height: 52px;
    padding-right: 52px;
  }

  .btn-secondary .hover-text {
    transform: translateX(calc(100% - 52px));
  }

  .btn-secondary .hover-text svg {
    width: 28px;
  }

  .btn-secondary .normal-text,
  .btn-secondary .hover-text {
    padding: 12px;
  }
}

@media screen and (max-width: 767px) {
  .btn-secondary {
    padding-right: 56px;
    height: 56px;
  }

  .btn-secondary .normal-text,
  .btn-secondary .hover-text {
    padding: 12px;
  }

  .btn-secondary .hover-text {
    transform: translateX(calc(100% - 56px));
  }

  .btn-secondary .hover-text svg {
    width: 28px;
  }

  .btn-secondary .hover-text span {
    margin-left: 6px;
  }
}

@media screen and (max-width: 639px) {
  .btn-secondary {
    padding-right: 36px;
    height: 36px;
  }

  .btn-secondary .normal-text,
  .btn-secondary .hover-text {
    padding: 12px;
  }

  .btn-secondary .hover-text {
    transform: translateX(calc(100% - 36px));
  }

  .btn-secondary .hover-text svg {
    width: 14px;
  }

  .btn-secondary .hover-text span {
    margin-left: 4px;
  }
}

.btn-link {
  color: var(--color-white);
  font-size: var(--font-size-xl);
  font-weight: 400;
  letter-spacing: -0.24px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: all 0.2s;
}

.btn-link span {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  position: relative;
  transition: all 0.3s;
}

.btn-link span svg {
  width: 16px;
  z-index: 1;
}

.btn-link span svg path {
  transition: all 0.2s;
}

.btn-link:hover span svg path {
  fill: var(--color-secondary);
  stroke: var(--color-secondary);
}

.btn-link:hover {
  color: var(--color-primary);
}

.btn-link span:before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: 0;
  background: var(--color-primary);
  right: auto;
  left: -1px;
  bottom: -1px;
  transition: all 0.3s;
  z-index: 0;
}

.btn-link:hover span:before {
  width: calc(100% + 2px);
}

.btn-link-internal span {
  transform: rotate(90deg);
}

@media screen and (max-width: 639px) {
  .btn-link span {
    height: 20px;
    width: 20px;
    border-width: 1px;
  }

  .btn-link span svg {
    width: 10px;
  }
}
/**************-------------------------------------**************/
/*                           HEADER                             */
/**************-------------------------------------**************/

/* Top Bar */

.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: var(--spacing-lg) 0;
  pointer-events: none;
  /* transform: translateY(-101%); */
}

.top-bar .container {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.top-bar .logo a {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  overflow: hidden;
  pointer-events: all;
}

.top-bar .logo a img {
  height: 40px;
  width: auto;
  display: block;
  transition: all 0.4s linear;
}

.main-header .logo-part {
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}

.main-header .logo-text {
  transform: translate3d(0, -100%, 0);
  will-change: transform;
}

/* .main-header.active .logo-text,
.main-header.active .menu-toggle-label p {
  transform: translate3d(0, -100%, 0) !important;
  will-change: transform;
} */

/* .menu-logo a {
  height: 72px;
} */

/* menu toggle btn */
.menu-toggle-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  cursor: pointer;
}

.menu-toggle-label {
  overflow: hidden;
}

.menu-toggle-label p {
  position: relative;
  transform: translate3d(0, -100%, 0);
  will-change: transform;
  color: var(--color-white);
  font-size: var(--font-size-md);
}

.menu-hamburger-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 100%;
  pointer-events: all;
  transition: transform 0.3s ease-in-out;
  transform: scale(0.001);
  will-change: transform;
  overflow: hidden;
}

.menu-hamburger-icon .shape {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  border-radius: 100%;
  transition: transform 0.4s ease-in-out;
}

.menu-hamburger-icon:hover .shape {
  transform: scale(0.9);
}

.menu-hamburger-icon .lines {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-hamburger-icon span {
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: var(--color-secondary);
  transition: all 0.75s cubic-bezier(0.87, 0, 0.13, 1);
  transform-origin: center;
  will-change: transform;
}

.menu-hamburger-icon span:nth-child(1) {
  transform: translateY(-3px) rotate(0deg) scaleX(0.001);
}

.menu-hamburger-icon span:nth-child(2) {
  transform: translateY(0) rotate(0deg) scaleX(0.5);
}

.menu-hamburger-icon span:nth-child(3) {
  transform: translateY(3px) rotate(0deg) scaleX(0.001);
}

/* .menu-hamburger-icon.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg) scaleX(1.05);
}

.menu-hamburger-icon.active span:nth-child(2) {
  transform: translateY(0) scaleX(0);
  opacity: 0;
}

.menu-hamburger-icon.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg) scaleX(1.05);
} */

/* FULL SCREEN MENU */
.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: var(--color-secondary);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  will-change: clip-path;
  /* clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 1000px; */
  z-index: 999;
}

.full-menu .container {
  width: 100%;
  height: 100%;
  display: flex;
  transform: translateY(-50%);
  will-change: transform;
  pointer-events: all;
}

.full-menu .menu-wrapper {
  display: grid;
  grid-template-columns: 40% auto;
  gap: var(--spacing-xl);
  align-items: center;
  padding: calc((var(--spacing-lg) * 2) + 48px) 0 var(--spacing-lg);
  height: 100%;
  width: 100%;
}

.full-menu .menu-wrapper .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  will-change: opacity;
  max-height: calc(
    100dvh - ((var(--spacing-lg) * 2) + 48px) + var(--spacing-lg)
  );
}

.full-menu .menu-wrapper .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.full-menu .menu-wrapper .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: var(--spacing-lg) 0;
}

.full-menu .menu-wrapper .content .btn-rounded {
  color: var(--color-primary);
  position: absolute;
  top: calc(var(--spacing-lg));
  right: 77px;
  display: flex;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  gap: 9.167px;
  border-radius: 36.667px;
  border: 1px solid var(--color-primary);
  font-size: var(--font-size-lg);
  line-height: 1;
  font-weight: 300;
  will-change: transform;
}

.full-menu .menu-wrapper .content .btn-rounded:hover {
  color: var(--color-secondary);
  background-color: var(--color-primary);
  transform: scale(0.97);
}

/* .full-menu .links {
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.full-menu .links > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.full-menu .links > ul > li:not(:last-child) {
  margin-bottom: calc(var(--spacing-md) * 1.5);
}

.full-menu .links > ul > li:last-child {
  display: none;
}

.full-menu .links > ul .current-menu-item > a {
  color: var(--color-primary);
}

/* .full-menu .links > ul > li {
  transform: translateY(30px);
  opacity: 0;
} */

.full-menu .links > ul > li > a {
  font-family: var(--body-font);
  font-size: var(--font-size-6xl);
  font-weight: 300;
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;

  display: inline-block;
}

.full-menu .links > ul > li > a:hover {
  color: var(--color-primary);
}

.full-menu .menu-wrapper .content .guide p {
  font-size: var(--font-size-4xl);
  font-weight: 400;
  font-style: italic;
  background: var(
    --New-Gradient,
    linear-gradient(
      34deg,
      #dba495 19.97%,
      #fac8bb 52.92%,
      #ca9e92 79.44%,
      #dba495 100.33%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-primary);
}

.full-menu .menu-wrapper .content .guide p .line {
  background: var(
    --New-Gradient,
    linear-gradient(
      34deg,
      #dba495 19.97%,
      #fac8bb 52.92%,
      #ca9e92 79.44%,
      #dba495 100.33%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-primary);
}

.full-menu .menu-wrapper .content .guide a div {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1;
  font-size: var(--font-size-xl);
  color: var(--color-grey-1);
  font-weight: 300;
  margin-top: var(--spacing-xs);
  transition:
    color 0.3s ease-in-out,
    gap 0.3s ease-in-out;
}

.full-menu .menu-wrapper .content .guide a:hover div {
  gap: 15px;
  color: var(--color-primary);
}

.full-menu .menu-wrapper .content .guide a svg path {
  transition: all 0.3s ease-in-out;
}

.full-menu .menu-wrapper .content .guide a:hover svg path {
  fill: var(--color-primary);
}

@media screen and (max-width: 1439px) {
}

@media screen and (max-width: 1023px) {
  .full-menu .menu-wrapper .content .btn-rounded {
    right: 80px;
    padding: 8.5px 24px;
    font-size: var(--font-size-lg);
    height: 40px;
  }

  .top-bar .logo a img {
    height: 40px;
  }

  .menu-hamburger-icon {
    height: 40px;
    width: 40px;
  }

  .menu-hamburger-icon span {
    width: 20px;
  }

  .menu-hamburger-icon span:nth-child(1) {
    transform: translateY(-5px);
  }

  .menu-hamburger-icon span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-hamburger-icon span:nth-child(3) {
    transform: translateY(5px);
  }
}

@media screen and (max-width: 767px) {
  .full-menu .menu-wrapper {
    padding-top: calc(6dvh + 60px);
    padding-bottom: var(--spacing-2xl);
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    display: block;
    max-width: var(--max-width-md);
  }

  .full-menu .menu-wrapper .content {
    display: grid;
    grid-template-rows: auto max-content;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .full-menu .menu-wrapper .image {
    display: none;
  }

  .full-menu .menu-wrapper .guide .top-line {
    width: 100%;
    height: 1px;
    margin: var(--spacing-md) 0 var(--spacing-2xl);
    background-color: var(--color-white);
    opacity: 0.05;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .full-menu .menu-wrapper .content .links {
    overflow: auto;
    height: 100%;
  }

  .full-menu .menu-wrapper .guide .top-line {
    margin: var(--spacing-md) 0 var(--spacing-md);
  }

  .full-menu .menu-wrapper {
    padding-bottom: var(--spacing-lg);
  }
}

@media screen and (max-width: 639px) {
  .top-bar {
    padding: 18px 0;
  }

  .top-bar .logo a img {
    height: 32px;
  }

  .menu-hamburger-icon {
    height: 32px;
    width: 32px;
  }

  .menu-hamburger-icon span {
    width: 14px;
  }

  .menu-toggle-label {
    display: none;
  }

  .menu-hamburger-icon span:nth-child(1) {
    transform: translateY(-4px);
  }

  .menu-hamburger-icon span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-hamburger-icon span:nth-child(3) {
    transform: translateY(4px);
  }

  .full-menu .menu-wrapper .content .btn-rounded {
    display: none;
  }

  .full-menu .links > ul > li:not(:last-child) {
    margin-bottom: var(--spacing-lg-2);
  }

  .full-menu .links > ul > li:last-child {
    display: block;
  }

  .full-menu .links > ul > li > a {
    font-size: var(--font-size-8xl);
    line-height: 1;
  }

  .full-menu .menu-wrapper .content .guide p {
    margin-bottom: var(--spacing-lg);
  }

  .full-menu .menu-wrapper .content .guide a div {
    font-size: var(--font-size-xl);
    gap: 6px;
  }

  .full-menu .menu-wrapper .content .guide a svg {
    width: 12px;
  }
}

/**************-------------------------------------**************/
/*                           FOOTER                              */
/**************-------------------------------------**************/

.site-footer {
  background-color: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.site-footer .footer-top {
  padding: 0 0 var(--spacing-2xl);
}

.site-footer .footer-top .logo .logo-part,
.site-footer .footer-top .logo .logo-text {
  height: 70px;
}

.site-footer .footer-top .logo {
  margin: 0 auto var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.site-footer .footer-top .contact > div {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-footer .footer-top .contact .footer-heading {
  font-size: var(--font-size-md);
  color: var(--color-white);
  opacity: 0.4;
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
}

.site-footer .footer-top .contact .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
}

.site-footer .footer-top .contact .content a {
  color: var(--color-white);
  opacity: 0.8;
  font-size: var(--font-size-lg);
  width: max-content;
}

.site-footer .footer-top .contact .content:hover a {
  color: var(--color-primary);
}

.site-footer .footer-top .contact .content svg {
  height: 35px;
  width: 35px;
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}

.site-footer .footer-top .contact .socials {
  justify-content: center;
}

.site-footer .footer-top .contact .socials svg {
  width: 28px;
  height: 28px;
}

.site-footer .footer-top .disclaimer {
  color: rgba(255, 255, 255, 0.46);
  text-align: center;
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.15px;
  margin: 28px auto 0 auto;
  max-width: var(--max-width-2xl);
}

.site-footer .footer-bottom .line {
  width: 100%;
  height: 1px;
  opacity: 0.12;
  background-color: var(--color-white);
}

.site-footer .footer-bottom .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-2xl);
  padding: 20px 0;
}

.site-footer .footer-bottom .wrapper .copyright p {
  font-size: var(--font-size-xs);
  color: var(--color-white);
  opacity: 0.4;
}

.site-footer .footer-legal {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.site-footer .footer-legal a {
  font-size: var(--font-size-xs);
  color: var(--color-white);
  opacity: 0.4;
}

.site-footer .footer-legal a:hover {
  opacity: 1;
}

.site-footer .footer-top .footer-legal {
  display: none;
}

@media screen and (max-width: 1023px) {
  .site-footer .footer-top .logo .logo-part,
  .site-footer .footer-top .logo .logo-text {
    height: 50px;
  }

  .site-footer .footer-top .contact .content svg {
    width: 28px;
    height: 28px;
  }
}

@media screen and (max-width: 639px) {
  .site-footer .footer-top {
    padding: var(--spacing-8xl) 0 var(--spacing-4xl);
  }

  .site-footer .footer-top .logo {
    display: none;
  }

  .site-footer .footer-top .contact .footer-heading {
    margin-bottom: 12px;
    text-align: left;
  }

  .site-footer .footer-top .contact .location .footer-heading {
    display: none;
  }

  .site-footer .footer-top .contact > div {
    gap: 12px;
  }

  .site-footer .footer-top .contact .content {
    justify-content: flex-start;
    margin-left: 0;
    width: auto;
  }

  .site-footer .footer-top .contact .socials {
    justify-content: flex-start;
  }

  .site-footer .footer-top .contact .footer-socials {
    margin-top: 28px;
  }

  .site-footer .footer-top .disclaimer {
    text-align: left;
  }

  .site-footer .footer-bottom .footer-legal {
    display: none;
  }

  .site-footer .footer-bottom .wrapper {
    justify-content: center;
  }

  .site-footer .footer-bottom .wrapper .copyright p {
    font-size: var(--font-size-sm);
  }

  .site-footer .footer-top .disclaimer,
  .site-footer .footer-legal a {
    font-size: var(--font-size-sm);
  }

  .site-footer .footer-top .footer-legal {
    display: flex;
    padding: var(--spacing-3xl) 0 var(--spacing-md);
    gap: var(--spacing-lg);
  }
}

/**************-------------------------------------**************/
/*                           HOME HERO                           */
/**************-------------------------------------**************/
.home-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  padding-bottom: var(--spacing-6xl);

  --clip-step-1: polygon(30% 30%, 70% 30%, 70% 70%, 30% 70%);
  --clip-step-2: polygon(15% 15%, 85% 15%, 85% 85%, 15% 85%);
}

.home-hero > .wrapper {
  position: relative;
  overflow: hidden;
}

.home-hero .hero-bg {
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  z-index: 1;
  height: 100svh;
  will-change: clip-path, opacity, transform;
  transform: translateZ(0) scale(1);
  opacity: 0;
}

.home-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity;
  opacity: 0;
}

.home-hero .reveal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  overflow: hidden;
}

.home-hero .hero-text {
  color: var(--color-white);
  font-size: var(--font-size-4xl);
  font-weight: 400;
  position: absolute;
  transform: translate3d(0, 100%, 0);
  will-change: transform, opacity;
}

.home-hero .gradient {
  position: absolute;
  bottom: 0;
  height: 40%;
  width: 100%;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 88.59%);
  z-index: 2;
  opacity: 0;
  will-change: opacity;
}

.home-hero .container {
  position: relative;
  width: 100%;
  z-index: 5;
  margin-top: -260px;
}

.home-hero .container h1 {
  font-size: var(--font-size-9xl);
  max-width: var(--max-width-3xl);
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  will-change: transform, opacity;
}

.home-hero .container .wrapper {
  display: grid;
  grid-template-columns: auto max-content;
  gap: var(--spacing-5xl);
  align-items: flex-end;
  margin-top: var(--spacing-xl);
}

.home-hero .container .wrapper .description {
  max-width: var(--max-width-lg);
  font-size: var(--font-size-3xl);
  z-index: 9999;
  color: var(--color-grey-1);
}

@media screen and (max-width: 1439px) {
  .home-hero .container {
    position: relative;
    width: 100%;
    z-index: 5;
    margin-top: -280px;
  }

  .home-hero .container h1 {
    padding-right: 12%;
  }
}

@media screen and (max-width: 1023px) {
  .home-hero .container {
    margin-top: -250px;
  }

  .home-hero .reveal-content {
    height: 20px;
  }

  .home-hero .hero-text {
    font-size: var(--font-size-3xl);
  }

  .home-hero .container .wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .home-hero .container .wrapper .description {
    padding-right: 12%;
  }
}

@media screen and (max-width: 767px) {
  .home-hero .container {
    margin-top: 230px;
  }

  .home-hero .container h1 {
    padding-right: 6%;
  }
}

@media screen and (max-width: 639px) {
  .home-hero {
    --clip-step-1: polygon(20% 40%, 80% 40%, 80% 60%, 20% 60%);
    --clip-step-2: polygon(10% 25%, 90% 25%, 90% 75%, 10% 75%);
  }

  .home-hero .container {
    margin-top: -220px;
  }

  .home-hero .reveal-content {
    padding: 0 var(--spacing-2xl);
  }

  .home-hero .container .wrapper .description {
    padding-right: 6%;
  }
}

/**************-------------------------------------**************/
/*                         INTRODUCTION                          */
/**************-------------------------------------**************/
.introduction {
  padding-bottom: var(--spacing-6xl);
  position: relative;
  overflow: hidden;
}

.introduction .container {
  max-width: var(--max-width-3xl);
}

.introduction .shade {
  position: absolute;
  top: 25%;
  right: -10%;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.5) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  filter: blur(10px);
}

.introduction .heading-xl {
  text-align: center;
  max-width: var(--max-width-2xl);
  margin: 0 auto;
}

.introduction .heading-xl span {
  display: block;
}

.introduction .heading-xl span:first-child {
  text-align: left;
}

.introduction .heading-xl span:last-child {
  text-align: right;
}

.introduction .wrapper {
  margin-top: var(--spacing-2xl);
}

.introduction .description-1 {
  /* margin: var(--spacing-xl) 0 var(--spacing-xl); */
  max-width: var(--max-width-lg);
  color: var(--color-grey-1);

  text-align: justify;
}

.introduction .description-2 {
  margin-left: auto;
  max-width: var(--max-width-lg);
  color: var(--color-grey-1);
  text-align: justify;
}

.introduction .image {
  margin: var(--spacing-xl) 0;
}

.introduction .image img {
  width: 100%;
}

.introduction .btn-wrapper {
  margin-top: var(--spacing-lg);
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1439px) {
  .introduction .heading-xl {
    max-width: var(--max-width-lg);
  }
}

@media screen and (max-width: 1023px) {
  .introduction .heading-xl {
    max-width: var(--max-width-md);
  }

  .introduction .description-1 {
    padding-right: 10%;
  }

  .introduction .description-2 {
    padding-left: 10%;
  }

  .introduction .shade {
    position: absolute;
    top: 40%;
    right: -10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .introduction .description-1 {
    text-align: left;
    padding-right: 6%;
  }

  .introduction .description-2 {
    text-align: right;
    padding-left: 6%;
  }
}
/**************-------------------------------------**************/
/*                           VALUES                              */
/**************-------------------------------------**************/

.section-values {
  /* height: 100dvh;
  overflow: hidden; */
  padding-bottom: var(--spacing-xl);
}

.section-values .container {
  position: relative;
}

.section-values .wrapper {
  height: 136dvh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: visible;
}

.section-values .values-col-wrapper {
  position: sticky;
  top: 0;
  height: max-content;
  min-height: 560px;
}

.section-values .line-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: absolute;
  height: 136dvh;
  width: 100%;
  inset: 0;
  padding: 0 20px;
}

.section-values .line-wrapper .col {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  --col-line-height: 0;
}

.section-values .line-wrapper .col:before,
.section-values .line-wrapper .col:last-child:after {
  content: "";
  display: block;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.52);
  transform-origin: top;
  transform: scaleY(var(--col-line-height));
  height: 100%;
  position: absolute;
  left: -0.5px;
}

.section-values .line-wrapper .col:last-child:after {
  position: absolute;
  right: -1px;
  left: auto;
  top: 0;
}

.section-values .line-wrapper .col:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.section-values .value-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  height: max-content;
  min-height: 540px;
  justify-content: space-between;
  /* transform: translateY(120px); */
}

.section-values .values-col-wrapper:first-child {
  /* border-left: 1px solid rgba(255, 255, 255, 0.25); */
}

.section-values .wrapper .values-col-wrapper:nth-child(2) {
  margin-top: 20dvh;
}

.section-values .wrapper .values-col-wrapper:nth-child(3) {
  margin-top: 40dvh;
}

.section-values .wrapper .values-col-wrapper:nth-child(4) {
  margin-top: 60dvh;
}

.section-values .value-top {
  padding: 0 var(--spacing-lg);
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-md);
  position: relative;
}

/* .section-values .value-top:before {
  content: "";
  height: 360px;
  display: block;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: -1px;
}

.section-values .values-col-wrapper:nth-child(4) .value-top:after {
  content: "";
  height: 360px;
  display: block;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  right: -1px;
} */

.section-values .value-top h3 {
  color: var(--color-primary);
  font-weight: 400;

  font-size: var(--font-size-5xl);
  line-height: 1.25;
}

.section-values .value-top img {
  height: 44px;
  margin-bottom: var(--spacing-lg);
}

.section-values .value-bottom {
  color: var(--color-grey-1);
  padding: 0 var(--spacing-lg);
  padding-bottom: var(--spacing-2xl);
}

@media screen and (max-width: 1439px) {
  .section-values .value-col {
    min-height: 460px;
  }

  .section-values .values-col-wrapper {
    min-height: unset;
  }

  .section-values .wrapper,
  .section-values .line-wrapper {
    height: 130dvh;
  }
}

@media screen and (max-width: 1023px) {
  .section-values {
    height: auto;
    padding-bottom: 0;
  }

  .section-values .line-wrapper {
    display: none;
  }

  .section-values .wrapper {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .section-values .values-col-wrapper {
    position: relative;
    margin-top: 0 !important;
  }

  .section-values .value-col {
    transform: translateY(0) !important;
    justify-content: flex-start;
    gap: var(--spacing-md);
    min-height: 196px;
  }

  .section-values .value-top {
    padding-top: var(--spacing-xl);
    padding-bottom: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: max-content auto;
  }

  .section-values .value-bottom {
    padding-bottom: var(--spacing-xl);
    padding-left: calc(var(--spacing-lg) + 44px);
  }

  .section-values .value-top:before,
  .section-values .value-top:after {
    display: none !important;
  }

  .section-values .value-top {
    min-height: 0;
  }

  .section-values .values-col-wrapper {
  }

  .section-values .values-col-wrapper:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .section-values .values-col-wrapper:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .section-values .values-col-wrapper:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .section-values .value-top img {
    height: 32px;
    width: 32px;
    margin-top: 6px;
  }
}

@media screen and (max-width: 639px) {
  .section-values .wrapper {
    grid-template-columns: repeat(1, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .section-values .values-col-wrapper {
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .section-values .value-col {
    min-height: 151px;
    padding-right: 8%;
  }

  .section-values .value-bottom {
    padding-left: calc(var(--spacing-lg) + 40px);
  }

  .section-values .values-col-wrapper:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .section-values .values-col-wrapper:nth-child(3) {
    border-top: 0;
  }

  .section-values .values-col-wrapper:nth-child(4) {
    border-top: 0;
  }

  .section-values .value-top img {
    height: 28px;
    width: 28px;
  }

  .section-values .value-top h3 {
    font-size: var(--font-size-6xl);
  }
}

/**************-------------------------------------**************/
/*                          EXPERTISE                            */
/**************-------------------------------------**************/

.section-expertise {
  min-height: 100vh;
  padding-top: var(--spacing-6xl);
  position: relative;
  overflow: hidden;
}

.section-expertise .shade-wrapper {
  width: 100%;
  height: 200dvh;
  overflow-x: hidden;
  position: absolute;
}

.section-expertise .shade {
  position: absolute;
  top: 700px;
  right: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.5) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.section-expertise .expertise-header {
  text-align: center;
  max-width: var(--max-width-2xl);
  margin: 0 auto;
}

.section-expertise .expertise-header p {
  margin-top: var(--spacing-lg);
  color: var(--color-grey-1);
}

.section-expertise .expertise-wrapper {
  display: none;
}

.section-expertise .expertise-inner {
  display: grid;
  grid-template-columns: 400px auto;
  height: 100%;
  gap: var(--spacing-md);
  padding-top: var(--spacing-2xl);
}

.section-expertise .expertise-inner .expertise-content {
  position: relative;
  padding: var(--spacing-xl) 0;
  height: 100%;
  max-height: 700px;
}

.section-expertise .expertise-inner .expertise-content .text-item {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.section-expertise .expertise-inner .expertise-content .text-item.active {
  opacity: 1;
}

.section-expertise .expertise-inner .expertise-content .text-item h3 {
  color: var(--color-primary);
  font-size: var(--font-size-5xl);
  font-weight: 400;
}

.section-expertise .expertise-inner .expertise-content .text-item p {
  color: var(--color-grey-1);
  margin: var(--spacing-lg) 0 var(--spacing-2xl);
}

.section-expertise .expertise-inner .expertise-content .progress {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-grey-1);
  font-size: var(--font-size-xl);
  font-weight: 300;
  position: absolute;
  bottom: 0;
}

.section-expertise .expertise-inner .expertise-content .progress .line {
  position: relative;
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.section-expertise
  .expertise-inner
  .expertise-content
  .progress
  .line
  .line-fill {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left center;
}

.section-expertise .expertise-visual {
  position: relative;
  overflow: visible;
  height: calc(100dvh - var(--spacing-3xl));
  max-height: 700px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 5%,
    black 10%,
    black 100%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 5%,
    black 10%,
    black 100%
  );

  padding-left: 5%;
}

.section-expertise .image-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
  will-change: transform;
  transform-style: preserve-3d;
}

.section-expertise .img-item {
  flex-shrink: 0;
  width: 220px;
  height: 260px;
  overflow: hidden;
  transform: translateZ(0);
  will-change: width, height;
  position: relative;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  object-fit: cover;
}

.section-expertise .img-item.big {
  width: 480px;
  height: calc(100dvh - var(--spacing-3xl));
}

.section-expertise .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.section-expertise
  .expertise-inner
  .expertise-content
  .text-item
  .mobile-image {
  display: none;
}

@media screen and (max-width: 1439px) {
  .section-expertise .img-item.big {
    width: 400px;
    height: calc(100dvh - 270px);
  }

  .section-expertise .img-item.small {
    width: 180px;
    height: 220px;
  }

  .section-expertise .expertise-inner {
    display: grid;
    grid-template-columns: 360px auto;
  }

  .section-expertise .expertise-visual {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 4%,
      rgba(0, 0, 0, 0.6) 10%,
      black 16%,
      black 100%
    );

    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 4%,
      rgba(0, 0, 0, 0.6) 10%,
      black 16%,
      black 100%
    );
    padding-left: 5%;
  }
}

@media screen and (max-width: 1023px) {
  .section-expertise .expertise-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-expertise .expertise-inner .expertise-content,
  .section-expertise .expertise-visual {
    max-height: none;
  }

  .section-expertise .expertise-visual,
  .section-expertise .expertise-inner .expertise-content .progress {
    display: none;
  }

  .section-expertise .expertise-inner .expertise-content .text-item {
    position: relative;
    opacity: 1;
    transform: translateY(0) !important;
  }

  .section-expertise
    .expertise-inner
    .expertise-content
    .text-item:not(:last-child) {
    margin-bottom: var(--spacing-3xl);
  }

  .section-expertise
    .expertise-inner
    .expertise-content
    .text-item
    .mobile-image {
    display: block;
    aspect-ratio: 12/16;
    height: 500px;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
  }

  .section-expertise
    .expertise-inner
    .expertise-content
    .text-item
    .mobile-image
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-expertise .expertise-inner .expertise-content .text-item p {
    margin: var(--spacing-md) 0 var(--spacing-xl);
  }

  .section-expertise .expertise-inner .expertise-content {
    max-width: var(--max-width-md);
  }
}

@media screen and (max-width: 639px) {
  .section-expertise
    .expertise-inner
    .expertise-content
    .text-item
    .mobile-image {
    aspect-ratio: unset;
    height: 400px;

    max-width: 400px;
  }
}

/**************-------------------------------------**************/
/*                           GUIDE                               */
/**************-------------------------------------**************/
.transfer-guide {
  padding-top: var(--spacing-6xl);
  padding-bottom: var(--spacing-6xl);
  position: relative;
  overflow: hidden;
}

.transfer-guide .shade {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.5) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.transfer-guide .heading-xl {
  max-width: var(--max-width-lg);
  margin: 0 auto;
}

.transfer-guide .heading-xl span {
  display: block;
}

.transfer-guide .heading-xl span:first-child {
  text-align: left;
}

.transfer-guide .heading-xl span:last-child {
  text-align: right;
}

.transfer-guide .guide-grid {
  margin-top: var(--spacing-2xl);
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-4xl);
  align-items: stretch;
  text-align: left;
}

.transfer-guide .guide-grid .content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.transfer-guide .guide-grid .content .heading {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-size: var(--font-size-6xl);
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.3;
}

.transfer-guide .guide-grid .content .description {
  margin-top: var(--spacing-lg);
  color: var(--color-grey-1);
}

.transfer-guide .guide-grid .content .guide-stats {
  margin: auto 0;
  display: flex;
  gap: var(--spacing-lg);
  justify-content: space-between;
  padding: 0;
  list-style: none;
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  line-height: 1.1;
}

.transfer-guide .guide-grid .content .guide-stats .stats-item {
  display: flex;
  gap: 2px;
}

.transfer-guide .guide-grid .content .btn-link {
}

.transfer-guide .guide-grid .image-wrapper {
}

.transfer-guide .guide-grid .image-wrapper .image {
  width: 650px;
  height: 500px;
  max-width: 650px;
  overflow: hidden;
  border: 1px solid var(--color-primary);
}

.transfer-guide .guide-grid .image-wrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

@media screen and (max-width: 1439px) {
  .transfer-guide .guide-grid .image-wrapper .image {
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
  }

  .transfer-guide .heading-xl {
    max-width: var(--max-width-md);
  }
}

@media screen and (max-width: 1023px) {
  .transfer-guide .guide-grid {
    gap: var(--spacing-xl);
  }
}

@media screen and (max-width: 767px) {
  .transfer-guide .heading-xl {
    max-width: var(--max-width-sm);
  }

  .transfer-guide .guide-grid {
    flex-direction: column-reverse;
    gap: var(--spacing-2xl);
  }

  /* .transfer-guide .heading-xl span {
    display: inline;
  }

  .transfer-guide .heading-xl span:last-child {
    padding-left: 8px;
    margin-top: 0;
  } */

  .transfer-guide .guide-grid .content {
    gap: var(--spacing-xl);
  }

  .transfer-guide .guide-grid .content .guide-stats {
    line-height: 1.1;
    max-width: var(--max-width-sm);
    justify-content: flex-start;
    gap: 26px;
  }

  .transfer-guide .guide-grid .image-wrapper .image {
    margin: 0 auto;
  }
}

@media screen and (max-width: 639px) {
  .transfer-guide .guide-grid .image-wrapper .image {
    aspect-ratio: 10/8;
  }

  .transfer-guide .guide-grid .content {
    gap: calc(var(--spacing-2xl) + 4px);
  }
}

/**************-------------------------------------**************/
/*                        Testimonials Slider                    */
/**************-------------------------------------**************/

.about-testimonials-slider,
.page-id-213 .testimonials-slider {
  padding-top: var(--spacing-6xl);
}

.testimonials-slider {
  position: relative;
  padding-bottom: var(--spacing-6xl);
  overflow: hidden;
  background-color: var(--color-secondary);
}

.testimonials-slider .shade {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.6) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.8;
}

.testimonials-slider .testimonials-header {
  display: grid;
  grid-template-columns: auto max-content;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.testimonials-slider .testimonials-header .content {
  max-width: var(--max-width-lg);
}

.testimonials-slider .testimonials-header .content p {
  margin-top: var(--spacing-lg);
  color: var(--color-grey-1);
}

.testimonials-slider .slider-nav {
  display: flex;
  gap: 16px;
}

.testimonials-slider .slider-nav button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.testimonials-slider .slider-nav button svg {
  width: 28px;
}

.testimonials-slider .slider-nav button svg path {
  transition: all 0.2s;
}

.testimonials-slider .slider-nav button:before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: 0;
  background: var(--color-primary);
  right: -1px;
  left: auto;
  bottom: -1px;
  transition: all 0.3s;
  z-index: -1;
}

.testimonials-slider .slider-nav .swiper-button-next:before {
  right: auto;
  left: -1px;
}

.testimonials-slider .slider-nav button:hover:before {
  width: calc(100% + 2px);
  transition: all 0.2s;
}

.testimonials-slider .slider-nav button:hover svg path {
  fill: var(--color-secondary);
}

.testimonials-slider .slider-nav .swiper-button-next,
.testimonials-slider .slider-nav .swiper-button-prev {
  position: relative;
}

.testimonials-slider .testimonials-swiper {
  overflow: visible;

  /* transform: translateX(100%);
  will-change: transform; */
}

.testimonials-slider .swiper-slide {
  height: auto !important;
  width: 480px;
}

.testimonials-slider .testimonial-card {
  display: flex;
  padding: var(--spacing-lg) var(--spacing-lg);
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  border-radius: var(--rounded-md);
  background: rgba(255, 255, 255, 0.07);
  /* backdrop-filter: blur(15.199999809265137px); */
  height: calc(100% - (var(--spacing-lg) * 2));
}

.testimonials-slider .testimonial-card .logo {
  height: 68px;
  width: 180px;
}

.testimonials-slider .testimonial-card .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.testimonials-slider .testimonial-card .text {
  color: var(--color-white);
  opacity: 0.8;
}

.testimonials-slider .testimonial-card .author {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 20px;
  margin-top: auto;
  align-items: center;
}

.testimonials-slider .testimonial-card .author .image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex: 1;
}

.testimonials-slider .testimonial-card .author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.testimonials-slider .testimonial-card .author span {
  display: block;
}

.testimonials-slider .testimonial-card .author .name {
  color: var(--color-white);
}

.testimonials-slider .testimonial-card .author .company {
  color: var(--color-grey-1);
}

.testimonials-slider .read-more {
  margin-top: var(--spacing-xl);
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .testimonials-slider .slider-nav button {
    width: 42px;
    height: 42px;
  }

  .testimonials-slider .slider-nav button svg {
    width: 24px;
  }

  .testimonials-slider .testimonial-card .logo {
    height: 50px;
    width: 100px;
  }

  .testimonials-slider .testimonial-card .author .image {
    width: 64px;
    height: 64px;
  }

  .testimonials-slider .swiper-slide {
    width: 420px;
  }
}

@media screen and (max-width: 639px) {
  .testimonials-slider .testimonials-header {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: var(--spacing-3xl);
  }
  .testimonials-slider .swiper-slide {
    width: 300px;
  }

  .testimonials-slider .slider-nav {
    margin-top: var(--spacing-xl);
    justify-content: flex-end;
  }

  .testimonials-slider .testimonial-card {
    padding: var(--spacing-2xl) var(--spacing-lg);
    height: calc(100% - (var(--spacing-2xl) * 2));
    gap: 16px;
  }

  .testimonials-slider .testimonial-card .author {
    gap: 10px;
  }

  .testimonials-slider .testimonial-card .author .image {
    width: 54px;
    height: 54px;
  }

  .testimonials-slider .testimonial-card .author .name,
  .testimonials-slider .testimonial-card .author .company {
    font-size: var(--font-size-md);
  }

  .testimonials-slider .testimonials-header .content p {
    margin-top: var(--spacing-xl);
  }

  .testimonials-slider .slider-nav button {
    width: 40px;
    height: 40px;
  }

  .testimonials-slider .slider-nav button svg {
    width: 18px;
  }
}

/**************-------------------------------------**************/
/*                           Blogs Slider                        */
/**************-------------------------------------**************/

.blogs-slider {
  position: relative;
  overflow: hidden;
  /* padding: var(--spacing-8xl) 0 0; */
}

.blogs-slider .shade {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.6) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.8;
}

.blogs-slider .blogs-header {
  display: grid;
  grid-template-columns: auto max-content;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.blogs-slider .blogs-header .content {
  max-width: var(--max-width-lg);
}

.blogs-slider .blogs-header .content p {
  margin-top: var(--spacing-lg);
  color: var(--color-grey-1);
}

.blogs-slider .slider-nav {
  display: flex;
  gap: 16px;
}

.blogs-slider .slider-nav button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.blogs-slider .slider-nav button svg {
  width: 28px;
}

.blogs-slider .slider-nav button svg path {
  transition: all 0.2s;
}

.blogs-slider .slider-nav button:before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: 0;
  background: var(--color-primary);
  right: -1px;
  left: auto;
  bottom: -1px;
  transition: all 0.3s;
  z-index: -1;
}

.blogs-slider .slider-nav .swiper-button-next:before {
  right: auto;
  left: -1px;
}

.blogs-slider .slider-nav button:hover:before {
  width: calc(100% + 2px);
  transition: all 0.2s;
}

.blogs-slider .slider-nav button:hover svg path {
  fill: var(--color-secondary);
}

.blogs-slider .slider-nav .swiper-button-next,
.blogs-slider .slider-nav .swiper-button-prev {
  position: relative;
}

.blogs-slider .blogs-swiper {
  overflow: visible;
}

.blogs-slider .swiper-slide {
  height: 420px;
  width: 600px;
  border: 1px solid var(--color-primary);
}

.blogs-slider .blog-card {
  height: 100%;
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
  display: block;
}

.blogs-slider .blog-card > .image {
  height: 100%;
  width: 103%;
  z-index: 1;
  object-position: left;
  will-change: transform;
  transition: all 0.4s ease-in-out;
  transform: scale(1.05) translateX(-3%);
}

.blogs-slider .blog-card > .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogs-slider .blog-card:hover > .image {
  transform: scale(1) translateX(0);
}

.blogs-slider .blog-card .content {
  position: absolute;
  width: 70%;
  z-index: 3;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
}

.blogs-slider .blog-card .content h3 {
  font-weight: 300;
  color: var(--color-white);
  font-size: var(--font-size-3xl);
  min-height: 80px;
  margin-bottom: var(--spacing-md);
}

.blogs-slider .blog-card .author {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 10px;
  align-items: center;
}

.blogs-slider .blog-card .author .image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex: 1;
}

.blogs-slider .blog-card .author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.blogs-slider .blog-card .author span {
  display: block;
  font-size: var(--font-size-md);
  font-weight: 300;
}

.blogs-slider .blog-card .author .name {
  color: var(--color-white);
}

.blogs-slider .blog-card .author .company {
  color: var(--color-grey-1);
}

.blogs-slider .blog-card .gradient {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 85%);
  transition: all 0.3s;
}

.blogs-slider .blog-card .arrow {
  position: absolute;
  right: var(--spacing-lg);
  bottom: var(--spacing-lg);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blogs-slider .blog-card .arrow svg {
  width: 18px;
}

.blogs-slider .blog-card .arrow svg path {
  transition: all 0.2s;
}

.blogs-slider .blog-card .arrow:before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: 0;
  background: var(--color-primary);
  right: -1px;
  left: auto;
  bottom: -1px;
  transition: all 0.3s;
  z-index: -1;
}

.blogs-slider .blog-card .arrow:before {
  right: auto;
  left: -1px;
}

.blogs-slider .blog-card:hover .arrow:before {
  width: calc(100% + 2px);
  transition: all 0.2s;
}

.blogs-slider .blog-card:hover .arrow svg path {
  fill: var(--color-secondary);
}

@media screen and (max-width: 1439px) {
  .blogs-slider .swiper-slide {
    width: 560px;
    height: 400px;
  }
}

@media screen and (max-width: 1023px) {
  .blogs-slider .slider-nav button {
    width: 42px;
    height: 42px;
  }

  .blogs-slider .slider-nav button svg {
    width: 24px;
  }

  .blogs-slider .swiper-slide {
    width: 480px;
    height: 360px;
  }

  .blogs-slider .blog-card .arrow {
    width: 36px;
    height: 36px;
  }

  .blogs-slider .blog-card .arrow svg {
    width: 16px;
  }
}

@media screen and (max-width: 639px) {
  .blogs-slider .blogs-header {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: var(--spacing-3xl);
  }

  .blogs-slider .blog-card .content h3 {
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    min-height: 44px;
  }
  .blogs-slider .swiper-slide {
    width: 300px;
    height: 360px;
  }

  .blogs-slider .slider-nav {
    margin-top: var(--spacing-xl);
    justify-content: flex-end;
  }

  .blogs-slider .slider-nav button {
    width: 40px;
    height: 40px;
  }

  .blogs-slider .slider-nav button svg {
    width: 18px;
  }

  .blogs-slider .blog-card .content {
    width: 80%;
  }

  .blogs-slider .blog-card .arrow {
    width: 20px;
    height: 20px;
    border-width: 1px;
  }

  .blogs-slider .blog-card .arrow svg {
    width: 10px;
  }
}

/**************-------------------------------------**************/
/*                           INSTAGRAM FEED                      */
/**************-------------------------------------**************/
.instagram-feed {
  padding-top: var(--spacing-6xl);
  padding-bottom: var(--spacing-6xl);
  background-color: var(--color-secondary);
}

.instagram-feed .heading-xl {
  color: var(--color-primary);
  text-align: right;
}

.instagram-feed .container p {
  text-align: right;
  color: var(--color-grey-1);
  font-size: var(--font-size-3xl);
  margin-top: var(--spacing-lg);
}

.instagram-feed .container p a {
  color: var(--color-grey-1);
}

.instagram-feed .container p a:hover {
  color: var(--color-primary);
}

.instagram-feed .feed-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 320px;
  margin-top: var(--spacing-xl);
}

.instagram-feed .feed-wrapper .image {
  width: 100%;
  height: 100%;
}

.instagram-feed .feed-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1439px) {
  .instagram-feed .feed-wrapper {
    height: 260px;
  }
}

@media screen and (max-width: 1023px) {
  .instagram-feed .feed-wrapper {
    height: 200px;
  }
}

@media screen and (max-width: 1023px) {
  .instagram-feed .feed-wrapper {
    height: 180px;
  }
}

@media screen and (max-width: 639px) {
  .instagram-feed .feed-wrapper {
    grid-template-columns: repeat(4, 1fr);
    height: 160px;
  }

  .instagram-feed .feed-wrapper .image:nth-child(5) {
    display: none;
  }
}

@media screen and (max-width: 439px) {
  .instagram-feed .feed-wrapper {
    grid-template-columns: repeat(3, 1fr);
    height: 160px;
  }

  .instagram-feed .feed-wrapper .image:nth-child(4),
  .instagram-feed .feed-wrapper .image:nth-child(5) {
    display: none;
  }
}

/**************-------------------------------------**************/
/*                           MAIN CTA                            */
/**************-------------------------------------**************/
.main-cta {
  background-color: var(--color-secondary);
  padding-bottom: var(--spacing-6xl);
  position: relative;
  overflow: hidden;
}

.main-cta .shade {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.6) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
  will-change: transform;
}

.main-cta .shade.right {
  left: auto;
  right: -10%;
}

.main-cta .container .wrapper {
  text-align: center;
  padding: var(--spacing-2xl) 20px;
  border: 1px solid rgba(219, 164, 149, 0.38);
  background-color: var(--color-secondary);
  z-index: 1;
  position: relative;
  will-change: transform;
}

.main-cta .container .wrapper .content {
  max-width: var(--max-width-xl);
  margin: 0 auto;
}

.main-cta .heading-xl {
  color: var(--color-primary);
}

.main-cta .description {
  margin: var(--spacing-lg) 0 var(--spacing-2xl);
  color: var(--color-grey-1);
}

.main-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: center;
}

.main-cta .note {
  margin-top: var(--spacing-lg);
  color: var(--color-grey-1);
  font-style: italic;
  font-size: var(--font-size-lg);
}

@media screen and (max-width: 639px) {
  .main-cta .container .wrapper {
    padding: var(--spacing-3xl) 15px;
  }

  .main-cta .description {
    margin: var(--spacing-2xl) 0 var(--spacing-2xl);
  }

  .main-cta .actions {
    gap: var(--spacing-lg-2);
  }

  .main-cta .note {
  }
}

/**************-------------------------------------**************/
/*                           ABOUT HERO                          */
/**************-------------------------------------**************/

.about-hero {
  min-height: 100svh;
  position: relative;
}

.about-hero .hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.about-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity;
  opacity: 0;
}

.about-hero .gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 95%);
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: opacity, transform;
}

.about-hero .container {
  position: relative;
  z-index: 3;
  padding-top: 70svh;
  padding-bottom: var(--spacing-xl);
  margin-bottom: 60px;
}

.about-hero .container h1 {
  font-size: var(--font-size-9xl);
  max-width: var(--max-width-3xl);
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  will-change: opacity, transform;
}

.about-hero .container .description {
  max-width: var(--max-width-lg);
  text-align: right;
  margin-left: auto;
  margin-top: var(--spacing-xl);
  color: var(--color-grey-1);
}

.about-hero .container .btn-link {
  margin-top: var(--spacing-lg);
  margin-left: auto;
  width: max-content;

  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 1439px) {
  .about-hero .container h1 {
    padding-right: 12%;
  }
}

@media screen and (max-width: 1023px) {
  .about-hero .container {
    padding-top: max(300px, 60svh);
  }

  .about-hero .container .description {
    padding-left: 12%;
  }
}

@media screen and (max-width: 639px) {
  .about-hero .container h1 {
    padding-right: 5%;
  }
  .about-hero .container .description {
    padding-left: 5%;
  }
}

/**************-------------------------------------**************/
/*                           Video player                        */
/**************-------------------------------------**************/
:root {
  --track-bg: rgba(255, 255, 255, 0.3);
}

.section-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Gradients */
.section-video .overlay-mask {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.section-video .overlay-mask img {
  width: 100%;
}
.section-video .overlay-mask.bottom {
  bottom: -1px;
  /* This creates a smooth "Ease-In" curve rather than a linear line */
  /* background: linear-gradient(
    180deg,
    rgba(10, 34, 35, 0) 0%,
    rgba(10, 34, 35, 0.07) 18%,
    rgba(10, 34, 35, 0.25) 35%,
    rgba(10, 34, 35, 0.5) 55%,
    rgba(10, 34, 35, 0.8) 78%,
    #0a2223 95%
  ); */
  /* height: 25%; */
}

.section-video .overlay-mask.top {
  transform: rotate(180deg);
  top: -1px;
  /* background: linear-gradient(
    0deg,
    rgba(10, 34, 35, 0) 0%,
    rgba(10, 34, 35, 0.07) 18%,
    rgba(10, 34, 35, 0.25) 35%,
    rgba(10, 34, 35, 0.5) 55%,
    rgba(10, 34, 35, 0.8) 78%,
    #0a2223 95%
  ); */
  /* background: linear-gradient(0deg, rgba(10, 34, 35, 0) 0%, #0a2223 100%);

  height: 25%; */
}

.section-video .video-node {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* UI Positioning */
.section-video .ui-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  box-sizing: border-box;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  opacity: 0;
}

.section-video .ui-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Typography */
.section-video .main-title {
  margin: 0;
  font-size: var(--font-size-lg);
  color: var(--color-white);
  font-weight: 400;
}
.section-video .sub-title {
  margin: 4px 0 0;
  font-size: var(--font-size-sm);
  opacity: 0.6;
  color: var(--color-white);
}
.section-video .timer {
  font-size: var(--font-size-md);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
  color: var(--color-white);
}

/* Timeline FIX: Centered Handle */
.section-video .timeline-area {
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  touch-action: none;
}

.section-video .track-base {
  width: 100%;
  height: 2px;
  background: var(--track-bg);
  position: relative;
}

.section-video .track-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--color-white);
}

.section-video .track-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

/* Icons */
.section-video .ctrl-icon {
  background: none;
  border: none;
  padding: 15px;
  cursor: pointer;
  margin: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-video .ctrl-icon:active {
  transform: scale(0.9);
}
.section-video .ctrl-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
}

@media (max-width: 600px) {
  .section-video .ui-layer {
    padding: 20px;
  }
  .section-video .main-title {
    font-size: 0.9rem;
    display: none;
  }

  .section-video .sub-title,
  .section-video .main-title,
  .section-video .timer {
    display: none;
  }

  .section-video .ctrl-icon {
    padding: 3px 10px;
  }

  .section-video .ctrl-icon svg {
    width: 18px;
    height: 18px;
  }

  .section-video .track-handle {
    width: 10px;
    height: 10px;
  }

  .section-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/14;
  }
}

@media (max-width: 768px) {
  .section-video .ui-layer {
    padding: 10px 15px;
    gap: 8px;
  }

  .section-video .timer {
    font-size: var(--font-size-sm);
  }

  /* Hide sub-title on very small screens to save space */
  @media (max-height: 500px) {
  }
}

/**************-------------------------------------**************/
/*                           INTRODUCTION 2                      */
/**************-------------------------------------**************/

.introduction-2 {
  padding: var(--spacing-6xl) 0;
  position: relative;
  overflow: hidden;
}

.introduction-2 .shade {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  /* background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.5) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7; */
}

.introduction-2 .description-1 {
  margin: var(--spacing-xl) 0 var(--spacing-xl);
  max-width: var(--max-width-lg);
}

.introduction-2 .description-2 {
  margin-left: auto;
  max-width: var(--max-width-lg);
  color: var(--color-grey-1);
}

/**************-------------------------------------**************/
/*                           SECTION STRENGTHS                   */
/**************-------------------------------------**************/
.section-strengths {
  /* padding-top: var(--spacing-8xl); */
  position: relative;
  overflow: hidden;
}

.section-strengths .slider-container {
  max-width: 1520px;
  padding-left: 390px;
  overflow: hidden;
  position: relative;
}

.section-strengths .container.progress-container {
  max-width: 1520px;
}

.section-strengths .section-heading-wrapper .description {
  margin-top: var(--spacing-lg);
  color: var(--color-grey-1);
}

.section-strengths .shade {
  position: absolute;
  top: 700px;
  left: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.5) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.section-strengths {
  /* overflow: visible; */
}

.section-strengths .wrap {
  width: 100%;
  margin-top: calc(var(--spacing-2xl) * 1.5);
}
.section-strengths .swiper-container {
  width: 100%;
  margin: 0 auto;
  /* overflow: visible; */
  height: 520px;
}

.mySwiper-strengths-content .mySwiper-strengths-content {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Ensure the slides stay on top of each other during fade */
.mySwiper-strengths-content .swiper-slide {
  background: transparent; /* or your preferred background color */
  pointer-events: none; /* prevents clicking hidden slides */
}

.mySwiper-strengths-content .swiper-slide-active {
  pointer-events: auto; /* re-enables clicking for the visible slide */
}

.section-strengths .fixed-content {
  position: absolute;
  top: calc(var(--spacing-2xl) + 20px);
  left: 780px;
  z-index: 11;
  width: 460px;
}

.section-strengths .fixed-content .wrapper {
  position: relative;
  min-height: 200px;
}

.section-strengths .fixed-content .wrapper .content-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(1px);
  visibility: hidden;
  z-index: 1;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease,
    filter 0.6s ease;
  transition-delay: 0.2s;
}

.section-strengths .fixed-content .wrapper .content-item.active {
  opacity: 1;
  filter: blur(0);
  visibility: visible;
  z-index: 2;
}

.section-strengths .fixed-content .icon {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.section-strengths .fixed-content h3,
.section-strengths .mobile-content-item h3 {
  font-size: var(--font-size-5xl);
  font-weight: 400;
  color: var(--color-primary);
  margin: var(--spacing-md) 0;
}

.section-strengths .fixed-content p,
.section-strengths .mobile-content-item p {
  color: var(--color-grey-1);
}

.section-strengths .mySwiper-strengths .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 220px;
  transition: none;
}

.section-strengths .mySwiper-strengths .swiper-slide .cont {
  text-align: center;
}

.section-strengths .mySwiper-strengths .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-strengths .mySwiper-strengths .swiper-slide span {
  display: inline-block;
  margin-top: 20px;
}

.section-strengths .mySwiper-strengths .changing,
.section-strengths .mySwiper-strengths .changed {
  transform: translateX(-130px);
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.section-strengths .mySwiper-strengths .changing {
  transition: transform 0.8s;
  pointer-events: none;
}

.section-strengths .mySwiper-strengths .changed {
  transition: none;
}

.section-strengths .mySwiper-strengths .changing.swiper-slide-active,
.section-strengths .mySwiper-strengths .changed.swiper-slide-active {
  transform: translateX(0);
}

.section-strengths .mySwiper-strengths .swiper-slide-active ~ .changing,
.section-strengths .mySwiper-strengths .swiper-slide-active ~ .changed {
  transform: translateX(130px);
}

.section-strengths .mySwiper-strengths .changing .img-wrap,
.section-strengths .mySwiper-strengths .changed .img-wrap {
  transform-origin: center bottom;
  height: 260px;
}

.section-strengths .mySwiper-strengths .changing .img-wrap {
  transition: transform 0.8s;
}

.section-strengths .mySwiper-strengths .changed .img-wrap {
  transition: none;
}

.section-strengths .mySwiper-strengths .changing.swiper-slide-active .img-wrap,
.section-strengths .mySwiper-strengths .changed.swiper-slide-active .img-wrap {
  transform: scale(2.2);
}

.section-strengths .progress {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-grey-1);
  font-size: var(--font-size-xl);
  font-weight: 300;

  margin-left: 238px;
  margin-top: var(--spacing-lg-2);
}

.section-strengths .progress-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.section-strengths .custom-pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-grey-1);
  font-size: var(--font-size-xl);
  font-weight: 300;

  margin-left: 238px;
  margin-top: var(--spacing-lg-2);
}

.section-strengths .progress-bar .line {
  position: relative;
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
.section-strengths .progress-bar .progress-fill {
  height: 100%;
  background: white;
  width: 20%;
  transition: width 0.3s;
}

@media (max-width: 1439px) {
  .section-strengths .swiper-container {
    height: 460px;
  }

  .section-strengths .mySwiper-strengths .swiper-slide {
    width: 180px;
  }

  .section-strengths .fixed-content {
    top: calc(var(--spacing-2xl) + 10px);
    left: 600px;
    width: 400px;
  }

  .section-strengths .slider-container {
    padding-left: 300px;
  }

  .section-strengths
    .mySwiper-strengths
    .changing.swiper-slide-active
    .img-wrap,
  .section-strengths
    .mySwiper-strengths
    .changed.swiper-slide-active
    .img-wrap {
    transform: scale(2.1);
  }

  .section-strengths .mySwiper-strengths .swiper-slide-active ~ .changing,
  .section-strengths .mySwiper-strengths .swiper-slide-active ~ .changed {
    transform: translateX(100px);
  }

  .section-strengths .mySwiper-strengths .changing,
  .section-strengths .mySwiper-strengths .changed {
    transform: translateX(-100px);
  }

  .section-strengths .mySwiper-strengths .changing .img-wrap,
  .section-strengths .mySwiper-strengths .changed .img-wrap {
    height: 240px;
  }

  .section-strengths .custom-pagination {
    margin-left: 180px;
  }
}

@media (max-width: 1023px) {
  .section-strengths .swiper-container {
    height: 420px;
  }

  .section-strengths .mySwiper-strengths .swiper-slide {
    width: 144px;
  }

  .section-strengths .fixed-content {
    top: calc(var(--spacing-2xl) + 50px);
    left: 324px;
    width: 360px;
  }

  .section-strengths .fixed-content .wrapper {
    min-height: 150px;
  }

  .section-strengths .fixed-content .icon {
    height: 32px;
  }

  .section-strengths .slider-container {
    padding-left: 90px;
  }

  .section-strengths
    .mySwiper-strengths
    .changing.swiper-slide-active
    .img-wrap,
  .section-strengths
    .mySwiper-strengths
    .changed.swiper-slide-active
    .img-wrap {
    transform: scale(2);
  }

  .section-strengths .mySwiper-strengths .swiper-slide-active ~ .changing,
  .section-strengths .mySwiper-strengths .swiper-slide-active ~ .changed {
    transform: translateX(72px);
  }

  .section-strengths .mySwiper-strengths .changing,
  .section-strengths .mySwiper-strengths .changed {
    transform: translateX(-72px);
  }

  .section-strengths .mySwiper-strengths .changing .img-wrap,
  .section-strengths .mySwiper-strengths .changed .img-wrap {
    height: 200px;
  }

  .section-strengths .custom-pagination {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .section-strengths .fixed-content {
    width: 300px;
  }
}
@media (max-width: 639px) {
  .section-strengths .swiper-container {
    height: 280px;
  }

  .section-strengths .mySwiper-strengths .swiper-slide {
    width: 182px;
  }

  .section-strengths .slider-container {
    padding-left: 15px;
  }

  .section-strengths
    .mySwiper-strengths
    .changing.swiper-slide-active
    .img-wrap,
  .section-strengths
    .mySwiper-strengths
    .changed.swiper-slide-active
    .img-wrap {
    transform: scale(1.4);
  }

  .section-strengths .mySwiper-strengths .swiper-slide-active ~ .changing,
  .section-strengths .mySwiper-strengths .swiper-slide-active ~ .changed {
    transform: translateX(32px);
  }

  .section-strengths .mySwiper-strengths .changing,
  .section-strengths .mySwiper-strengths .changed {
    transform: translateX(-32px);
  }

  .section-strengths .mySwiper-strengths .changing .img-wrap,
  .section-strengths .mySwiper-strengths .changed .img-wrap {
    transform-origin: center;
    height: 200px;
    padding-bottom: 35px;
  }

  .section-strengths .fixed-content {
    width: 254px;
    position: static;
    margin: var(--spacing-xl) auto 0;
  }

  .section-strengths .fixed-content .top-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .section-strengths .fixed-content .icon {
    height: 20px;
  }

  .section-strengths .fixed-content h3,
  .section-strengths .mobile-content-item h3 {
    font-size: var(--font-size-6xl);
  }

  .section-strengths .container.progress-container {
    width: 254px;
    margin: 0 auto;
  }

  .section-strengths .fixed-content .wrapper {
    min-height: 140px;
  }

  .section-strengths .progress-bar {
    width: 100px;
  }
}

/**************-------------------------------------**************/
/*                          PEOPLE SECTION                       */
/**************-------------------------------------**************/
.section-people {
  padding: var(--spacing-6xl) 0;
  position: relative;
  overflow: hidden;
}

.section-people .heading-wrapper {
  max-width: var(--max-width-2xl);
  margin: 0 auto var(--spacing-2xl);
  text-align: center;
}

.section-people .heading-wrapper h2 {
  margin-bottom: var(--spacing-lg);
}

.section-people .heading-wrapper .description {
  color: var(--color-grey-1);
}

.section-people .people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  justify-content: space-between;
}

.section-people .people-grid .card {
  background-color: #115156;
  aspect-ratio: 7 / 9;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.section-people .people-grid .card .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}

.section-people .people-grid .card .name {
  z-index: 3;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: var(--spacing-lg);
  padding-left: var(--spacing-lg);
  padding-right: calc(var(--spacing-lg) * 2 + 40px);
}

.section-people .people-grid .card .name p:first-child {
  font-size: var(--font-size-3xl);
  font-weight: 400;
}

.section-people .people-grid .card .name p:last-child {
  opacity: 0.8;
  line-height: 1;
}

.section-people .people-grid .card .gradient {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 25%;
  background: linear-gradient(180deg, rgba(3, 25, 26, 0) 0%, #03191a 100%);
  backdrop-filter: blur(2.549999952316284px);
}

.section-people .people-grid .card .arrow {
  position: absolute;
  right: var(--spacing-lg);
  bottom: var(--spacing-lg);
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-people .people-grid .card .arrow svg {
  width: 18px;
}

.section-people .people-grid .card .arrow svg path {
  transition: all 0.2s;
}

.section-people .people-grid .card .arrow:before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: 0;
  background: var(--color-primary);
  right: -1px;
  left: auto;
  bottom: -1px;
  transition: all 0.3s;
  z-index: -1;
}

.section-people .people-grid .card .arrow:before {
  right: auto;
  left: -1px;
}

.section-people .people-grid .card:hover .arrow:before {
  width: calc(100% + 2px);
  transition: all 0.2s;
}

.section-people .people-grid .card:hover .arrow svg path {
  fill: var(--color-secondary);
}

.section-people .people-grid .card .content {
  position: absolute;
  inset: 0;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  justify-content: space-between;
  z-index: 3;
  background: #115156;
  backdrop-filter: blur(8.399999618530273px);
  transform: translateX(-101%);
  opacity: 0;
  transition:
    transform 0.5s,
    opacity 0.3s;
}

.section-people .people-grid .card:hover .content {
  transform: translateX(0);
  opacity: 1;
}

.section-people .people-grid .card .content .link-text {
  font-size: var(--font-size-lg);
  line-height: 1;
}

.section-people .people-grid .card-empty {
  width: 100%;
  height: 100%;
  cursor: auto;
}

.section-people .people-grid .card-empty img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1439px) {
  .section-people .heading-wrapper {
    max-width: var(--max-width-xl);
  }
}

@media (max-width: 1023px) {
  .section-people .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .section-people .people-grid .card-empty {
    dispaly: none;
  }

  .section-people .people-grid {
    grid-template-columns: 1fr;
  }

  .section-people .people-grid .card {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-people .people-grid .card .name {
    padding-right: calc(var(--spacing-lg) * 2 + 28px);
    bottom: var(--spacing-xl);
  }

  .section-people .people-grid .card .arrow {
    width: 28px;
    height: 28px;
    border-width: 1px;
    bottom: var(--spacing-xl);
  }

  .section-people .people-grid .card .gradient {
    height: 20%;
  }

  .section-people .people-grid .card .arrow svg {
    width: 14px;
  }
}

/**************-------------------------------------**************/
/*                          PEOPLE MODAL                         */
/**************-------------------------------------**************/
.people-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: none;
  align-items: center;
  justify-content: center;
  /* pointer-events: none; */
  /* opacity: 0; */
  z-index: 99999;
  overflow-y: auto;
  transition: all 0.3s ease;
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  padding-right: var(--scrollbar-width);
  right: var(--scrollbar-width);
}

.people-modal-overlay.active {
  display: flex;
  background: rgba(10, 34, 35, 0.25);
  backdrop-filter: blur(15px);
}

.people-modal {
  background: var(--color-secondary);
  width: min(1200px, 90vw);
  color: #fff;
  position: relative;
  outline: none;
  padding: 0 var(--spacing-xl) var(--spacing-xl) var(--spacing-xl);
  position: relative;
  border-radius: 4px;
  border: 0.5px solid rgba(219, 164, 149, 0.18);
  background: var(--Green, #002323);
  max-height: none;
  margin: auto;
  transform: scale(0.7);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.people-modal-overlay.active .people-modal {
  transform: scale(1);
  opacity: 1;
}

.people-modal .modal-close {
  border-radius: var(--rounded-full);
  overflow: hidden;
  border: none;
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  cursor: pointer;
  width: 36px;
  height: 36px;
  outline: none;
  background: none;
}

.people-modal .modal-close:focus,
.people-modal .modal-close::focus-visible {
  outline: none;
  border: none;
}

.people-modal .modal-close .shape {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  border-radius: 100%;
  transition: transform 0.4s ease-in-out;
}

.people-modal .modal-close:hover .shape {
  transform: scale(0.9);
}

.people-modal .modal-close .lines {
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-modal .modal-close span {
  position: absolute;
  width: 14px;
  height: 1px;
  background-color: var(--color-secondary);
  transition: all 0.75s cubic-bezier(0.87, 0, 0.13, 1);
  transform-origin: center;
  will-change: transform;
}

.people-modal .modal-close span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.people-modal .modal-close span:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.people-modal .modal-grid {
  display: grid;
  grid-template-columns: 40% calc(60% - var(--spacing-lg));
  grid-template-rows: max-content 1fr;
  gap: calc(var(--spacing-md) * 3);
  justify-content: space-between;
}

.people-modal .modal-grid .bottom {
  grid-column: span 2 / span 2;
  grid-row-start: 2;
  overflow: hidden;
  padding-right: 12px;
}

.people-modal .modal-grid .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  background-color: #115156;
  max-height: 470px;
}

.people-modal .modal-grid .right {
  margin-top: var(--spacing-lg);
  padding-right: calc(var(--spacing-xl) + var(--spacing-md));
}

.people-modal .modal-grid .right .name {
  color: var(--color-primary);
  font-family: var(--heading-font);
  font-size: var(--font-size-6xl);
}

.people-modal .modal-grid .right .title {
  color: var(--color-grey-1);
  font-weight: 300;
  font-size: var(--font-size-xl);
}

.people-modal .modal-grid .right h5,
.people-modal .modal-grid .mobile-block h5 {
  color: var(--color-grey-1);
  font-size: var(--font-size-md);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.people-modal .modal-grid .right .languages,
.people-modal .modal-grid .mobile-block .languages {
  margin-top: var(--spacing-lg);
}

.people-modal .modal-grid .right .languages .wrapper,
.people-modal .modal-grid .mobile-block .languages .wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.people-modal .modal-grid .right .languages .language,
.people-modal .modal-grid .mobile-block .languages .language {
  display: flex;
  padding: 8px 12px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid rgba(219, 164, 149, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 1;
}

.people-modal .modal-grid .right .languages .language img,
.people-modal .modal-grid .mobile-block .languages .language img {
  width: 18px;
}

.people-modal .modal-grid .right .contact,
.people-modal .modal-grid .mobile-block .contact {
  margin-top: var(--spacing-lg);
}

.people-modal .modal-grid .right .contact a,
.people-modal .modal-grid .mobile-block .contact a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--color-white);
  width: max-content;
}

.people-modal .modal-grid .right .contact a:hover,
.people-modal .modal-grid .mobile-block .contact a:hover {
  color: var(--color-primary);
}

.people-modal .modal-grid .right .contact a svg,
.people-modal .modal-grid .mobile-block .contact a svg {
  width: 28px;
}

.people-modal .modal-grid .right .contact .email,
.people-modal .modal-grid .mobile-block .email {
  margin-bottom: var(--spacing-sm);
  width: max-content;
}

.people-modal .modal-grid .right .socials-wrapper {
  margin-top: var(--spacing-lg);
}

.people-modal .modal-grid .right .socials {
  gap: 16px;
  display: inline-flex;
}

.people-modal .modal-grid .right .socials svg {
  height: 26px;
  width: 26px;
  stroke-width: 1px;
}
.people-modal .modal-grid .mobile-block {
  display: none;
}

.people-modal .modal-grid .bottom {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  padding: var(--spacing-md) 0;
}

.people-modal .modal-grid .bio {
  color: var(--color-grey-1);
  padding: 0 var(--spacing-lg);
  font-size: var(--font-size-lg);
  max-height: 350px;
  min-height: 250px;
  overflow: auto;
}

.people-modal .modal-grid .bio::-webkit-scrollbar {
  display: block;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.people-modal .modal-grid .bio::-webkit-scrollbar-thumb {
  background: var(--color-white);
  border-radius: 4px;
}

@media (max-width: 1023px) {
  .people-modal-overlay {
    padding: 0;
    margin: 0;
    top: 0;
    bottom: auto;
  }
  .people-modal {
    width: 100%;
    margin: 0;
    padding: var(--spacing-xl);
  }

  .people-modal-overlay.active {
    display: block !important;
  }

  .people-modal .modal-grid .right .languages .wrapper,
  .people-modal .modal-grid .mobile-block .languages .wrapper {
    gap: 10px;
  }

  .people-modal .modal-grid .right .languages .language,
  .people-modal .modal-grid .mobile-block .languages .language {
    padding: 6px 8px;
    gap: 6px;
  }

  .people-modal .modal-grid .right .contact a svg,
  .people-modal .modal-grid .mobile-block .contact a svg {
    width: 24px;
  }

  .people-modal .modal-grid .right .socials svg {
    height: 22px;
    width: 22px;
  }

  .people-modal .modal-grid .right {
    margin-top: 0;
    padding-right: 0;
  }

  .people-modal .modal-grid .right .name {
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
}

@media (max-width: 639px) {
  .people-modal .modal-grid .right .languages,
  .people-modal .modal-grid .right .contact {
    display: none;
  }

  .people-modal {
    padding: 72px 15px;
  }

  .people-modal .modal-close {
    width: 28px;
    height: 28px;
    top: 32px;
  }

  .people-modal .modal-close span {
    width: 14px;
  }

  .people-modal .modal-grid {
    grid-template-columns: 70px auto;
    gap: var(--spacing-lg);
  }

  .people-modal .modal-grid .right .name {
    padding-right: 40px;
  }

  .people-modal .modal-grid .right .socials-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .people-modal .modal-grid .right h5 {
    line-height: 1;
    margin-bottom: 0;
  }

  .people-modal .modal-grid .right .socials svg {
    height: 18px;
    width: 18px;
  }

  .people-modal .modal-grid .right .socials-wrapper {
    margin-top: var(--spacing-lg-2);
  }

  .people-modal .modal-grid .bottom {
    padding: 10px 0;
    margin-top: 7px;
    grid-column: span 2 / span 2;
    grid-row-start: 3;
  }

  .people-modal .modal-grid .mobile-block {
    display: block;
    grid-column: span 2 / span 2;
    grid-row-start: 2;
  }

  .people-modal .modal-grid .bio {
    padding: 0 10px;
    max-height: 300px;
    min-height: 300px;
  }

  .people-modal .modal-grid .mobile-block .contact {
    padding-top: var(--spacing-md);
  }

  .people-modal .modal-grid .mobile-block .contact a svg {
    width: 16px;
    height: 16px;
  }

  .people-modal .modal-grid .mobile-block .contact a {
    gap: 4px;
  }

  .people-modal .modal-grid .mobile-block .languages {
    margin-top: 20px;
  }

  .people-modal .modal-grid .mobile-block .languages .wrapper {
    gap: 8px;
  }

  .people-modal .modal-grid .mobile-block .languages .language {
    font-size: var(--font-size-xs);
  }

  .people-modal .modal-grid .mobile-block .languages .language img {
    width: 12px;
  }
}

/**************-------------------------------------**************/
/*                           LOGO SLIDER                         */
/**************-------------------------------------**************/
.logo-carousel {
}

.logo-carousel .container {
  margin-top: var(--spacing-6xl);
  display: grid;
  grid-template-columns: auto max-content;
  gap: var(--spacing-2xl);
  align-items: center;
  justify-content: space-between;
}

.logo-carousel .wrapper {
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-6xl);
}

.logo-carousel .line {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
}

.logo-carousel .wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.logo-carousel .badge.badge-mobile {
  display: none;
}

.logo-carousel .badge {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--color-primary);
}

.logo-carousel .badge svg {
  height: 32px;
}

.logo-carousel .badge span {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
}

/* .logo-carousel .wrapper:before,
.logo-carousel .wrapper:after {
  position: absolute;
  top: 0;
  content: "";
  width: 120px;
  height: 100%;
  z-index: 2;
}

.logo-carousel .wrapper:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgb(252, 252, 252)
  );
}

.logo-carousel .wrapper:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(252, 252, 252)
  );
} */

.logo-carousel .wrapper .logos {
  display: inline-block;
  width: max-content;
  animation: 24s infinite-slides infinite linear;
}

.logo-carousel .wrapper .logos .logo {
  padding: var(--spacing-md) var(--spacing-lg);
  display: inline-block;
}

.logo-carousel .wrapper .logos .logo img {
  height: 68px;
  transition: opacity 0.4s ease-in-out;
  opacity: 0.25;
}

.logo-carousel .wrapper .logos .logo img:hover {
  opacity: 1;
}

@media screen and (max-width: 1279px) {
  .logo-carousel .wrapper .logos .logo img {
    height: 56px;
  }
}

@media screen and (max-width: 1023px) {
  /* .logo-carousel .wrapper:before,
  .logo-carousel .wrapper:after {
    width: 80px;
  } */

  .logo-carousel .wrapper .logos .logo img {
    height: 42px;
  }

  .logo-carousel .wrapper .logos .logo {
    padding: var(--spacing-lg) var(--spacing-lg);
  }

  .logo-carousel .badge {
    padding: 16px 18px;
    gap: 12px;
  }
}

@media screen and (max-width: 639px) {
  .logo-carousel .container {
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .logo-carousel .container .heading-xl {
    text-align: center;
  }

  .logo-carousel .badge.badge-mobile {
    display: flex;
  }

  .logo-carousel .badge-desktop {
    display: none !important;
  }

  .logo-carousel .badge {
    display: flex;
    padding: 16px 20px 16px 10px;
    gap: 10px;
    width: max-content;
    margin: 0 auto;
    margin-bottom: var(--spacing-6xl);
  }

  .logo-carousel .badge span {
    font-size: var(--font-size-6xl);
  }

  .logo-carousel .badge svg {
    height: 24px;
  }

  .logo-carousel .wrapper {
    margin-bottom: var(--spacing-2xl);
  }

  .logo-carousel .wrapper .logos .logo img {
    height: 40px;
  }
}

@media screen and (max-width: 479px) {
  /* .logo-carousel .wrapper:before,
  .logo-carousel .wrapper:after {
    width: 60px;
  } */

  .logo-carousel .wrapper .logos .logo {
    padding: var(--spacing-xl) var(--spacing-lg);
  }
}

/**************-------------------------------------**************/
/*                           SECTION BLOGS                       */
/**************-------------------------------------**************/
.section-blogs {
  padding-bottom: var(--spacing-6xl);
  position: relative;
  overflow: hidden;
}

.section-blogs .shade {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.5) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.section-blogs h2,
.section-blogs .description,
.section-blogs .bottom-description {
  text-align: center;
  max-width: var(--max-width-2xl);
}

.section-blogs h2 {
  margin: 0 auto;
}

.section-blogs .description {
  margin: var(--spacing-lg) auto 0 auto;
  color: var(--color-grey-1);
}

.section-blogs .bottom-description {
  max-width: var(--max-width-3xl);
  margin: 0 auto;
  color: var(--color-grey-1);
}

.section-blogs .wrapper {
  display: flex;
  gap: var(--spacing-lg);
  position: relative;
  margin: var(--spacing-2xl) 0;
}

.section-blogs .blog-card {
  height: 100%;
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 9/12;
  border: 1px solid var(--color-primary);
  flex-basis: 25%;
}

.section-blogs .blog-card:nth-child(2),
.section-blogs .blog-card:nth-child(4) {
  margin-top: 100px;
}

.section-blogs .blog-card-wrapper > .image {
  height: 100%;
  width: 103%;
  z-index: 1;
  object-position: left;
  will-change: transform;
  transition: all 0.4s ease-in-out;
  transform: scale(1.05) translateX(-3%);
}

.section-blogs .blog-card-wrapper > .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-blogs .blog-card-wrapper:hover > .image {
  transform: scale(1) translateX(0);
}

.section-blogs .blog-card .content {
  position: absolute;
  width: 100%;
  z-index: 3;
  left: 0;
  bottom: var(--spacing-md);
  padding: 0 var(--spacing-md);
}

.section-blogs .blog-card .content h3 {
  font-weight: 300;
  color: var(--color-white);
  font-size: var(--font-size-2xl);
  min-height: 80px;
  margin-bottom: var(--spacing-md);
}

.section-blogs .blog-card .content .read-more {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  justify-content: space-between;
  font-size: var(--font-size-lg);
  transition: all 0.3s ease-in-out;
}

.section-blogs .blog-card:hover .content .read-more {
  color: var(--color-primary);
}

.section-blogs .blog-card .gradient {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 85%);
  transition: all 0.3s;
}

.section-blogs .blog-card .arrow {
  position: relative;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-blogs .blog-card .arrow svg {
  width: 18px;
}

.section-blogs .blog-card .arrow svg path {
  transition: all 0.2s;
}

.section-blogs .blog-card .arrow:before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: 0;
  background: var(--color-primary);
  right: -1px;
  left: auto;
  bottom: -1px;
  transition: all 0.3s;
  z-index: -1;
}

.section-blogs .blog-card .arrow:before {
  right: auto;
  left: -1px;
}

.section-blogs .blog-card:hover .arrow:before {
  width: calc(100% + 2px);
  transition: all 0.2s;
}

.section-blogs .blog-card:hover .arrow svg path {
  fill: var(--color-secondary);
}

.section-blogs .bottom-description {
  max-width: var(--max-width-2xl);
}

@media screen and (max-width: 1439px) {
  .section-blogs h2,
  .section-blogs .description,
  .section-blogs .bottom-description {
    max-width: var(--max-width-xl);
  }
}

@media screen and (max-width: 1023px) {
  .section-blogs .wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: var(--spacing-xl);
  }

  .section-blogs .blog-card {
    flex-basis: calc(50% - var(--spacing-lg));
  }

  .section-blogs .blog-card:nth-child(2),
  .section-blogs .blog-card:nth-child(4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 639px) {
  .section-blogs .wrapper {
    flex-direction: column;
    row-gap: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-blogs .blog-card {
    flex-basis: unset;
    aspect-ratio: 9/10;
  }

  .section-blogs .blog-card .content {
    bottom: var(--spacing-lg-2);
  }

  .section-blogs .blog-card .content h3 {
    min-height: 0;
    margin-bottom: var(--spacing-lg);
    padding-right: 20%;
    font-size: var(--font-size-3xl);
  }

  .section-blogs .blog-card .arrow {
    width: 28px;
    height: 28px;
    border-width: 1px;
  }

  .section-blogs .blog-card .arrow svg {
    width: 14px;
  }

  .section-blogs .blog-card .content {
  }
}

/**************-------------------------------------**************/
/*                           DEFAULT BANNER                      */
/**************-------------------------------------**************/

.default-banner {
  /* min-height: 70dvh; */
  position: relative;
}

.default-banner .background {
  position: absolute;
  inset: 0;
}

.default-banner .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: 0;
  will-change: opacity;
}

.default-banner .gradient-shade {
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 100%);
  /* opacity: 0; */
  will-change: opacity;
  user-select: none;
}

.default-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.default-banner .container .wrapper {
  max-width: var(--max-width-3xl);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: var(--spacing-5xl) 0 var(--spacing-5xl);
}

.default-banner .container .wrapper .heading-xl {
  font-size: var(--font-size-9xl);
  margin-bottom: var(--spacing-lg-2);
  transform: translate3d(0, 60px, 0);
  opacity: 0;
  will-change: opacity, transform;
}

.default-banner .container .wrapper .description {
  transform: translate3d(0, 60px, 0);
  opacity: 0;
  will-change: opacity, transform;
  max-width: var(--max-width-2xl);
  margin: 0 auto;
  color: var(--color-grey-1);
}

.default-banner .btn-wrapper {
  margin-top: var(--spacing-lg-2);
}

@media screen and (max-width: 1023px) {
  .default-banner .container .wrapper {
    padding: var(--spacing-6xl) 0 var(--spacing-6xl);
  }
}

/**************-------------------------------------**************/
/*                       FEATURED TESTIMONIALS SLIDER            */
/**************-------------------------------------**************/

.featured-testimonials-slider {
  position: relative;
  padding: var(--spacing-2xl) 0 var(--spacing-6xl);
  overflow: hidden;
  background-color: var(--color-secondary);
}

.featured-testimonials-slider .shade {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.6) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.featured-testimonials-slider .testimonials-header {
  display: grid;
  grid-template-columns: auto max-content;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-lg);
}

.featured-testimonials-slider .testimonials-header .content {
  max-width: var(--max-width-lg);
}

.featured-testimonials-slider .testimonials-header .content .description {
  margin-top: var(--spacing-lg);
  color: var(--color-grey-1);
}

.featured-testimonials-slider .slider-nav {
  display: flex;
  gap: 16px;
}

.featured-testimonials-slider .slider-nav button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.featured-testimonials-slider .slider-nav button svg {
  width: 28px;
}

.featured-testimonials-slider .slider-nav button svg path {
  transition: all 0.2s;
}

.featured-testimonials-slider .slider-nav button:before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: 0;
  background: var(--color-primary);
  right: -1px;
  left: auto;
  bottom: -1px;
  transition: all 0.3s;
  z-index: -1;
}

.featured-testimonials-slider .slider-nav .swiper-button-next:before {
  right: auto;
  left: -1px;
}

.featured-testimonials-slider .slider-nav button:hover:before {
  width: calc(100% + 2px);
  transition: all 0.2s;
}

.featured-testimonials-slider .slider-nav button:hover svg path {
  fill: var(--color-secondary);
}

.featured-testimonials-slider .slider-nav .swiper-button-next,
.featured-testimonials-slider .slider-nav .swiper-button-prev {
  position: relative;
}

.featured-testimonials-swiper {
  border-right: 2px solid rgba(219, 164, 149, 0.14);
  border-left: 2px solid rgba(219, 164, 149, 0.14);
}
.featured-testimonials-swiper-wrapper {
  border-top: 2px solid rgba(219, 164, 149, 0.14);
  border-bottom: 2px solid rgba(219, 164, 149, 0.14);
}

.featured-testimonials-swiper .testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg) var(--spacing-2xl) var(--spacing-lg)
    var(--spacing-lg);
  height: 540px;
}

.featured-testimonials-swiper .swiper-slide {
  position: relative;
}

.featured-testimonials-swiper .swiper-slide-active {
}

.featured-testimonials-swiper .testimonial-card .image-side {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.featured-testimonials-swiper .testimonial-card .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-testimonials-swiper .testimonial-card .image-side .profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  backdrop-filter: blur(2.549999952316284px);
  padding: var(--spacing-lg);
}

.featured-testimonials-swiper
  .testimonial-card
  .image-side
  .profile-overlay
  h3 {
  font-weight: 400;
  font-size: var(--font-size-3xl);
}

.featured-testimonials-swiper .testimonial-card .image-side .profile-overlay p {
  color: var(--color-grey-1);
}

.featured-testimonials-swiper .testimonial-card .content-side {
  text-align: left;
  padding-top: var(--spacing-xl);
}

.featured-testimonials-swiper .testimonial-card .content-side .logo-wrapper {
  display: flex;
  gap: var(--spacing-lg-2);
  align-items: flex-end;
  justify-content: space-between;
}

.featured-testimonials-swiper .testimonial-card .content-side .quote-mark svg {
  height: 64px;
}

.featured-testimonials-swiper .testimonial-card .content-side .logo {
  height: 80px;
  width: 200px;
  object-fit: contain;
  object-position: right;
}

.featured-testimonials-swiper .testimonial-card .content-side .quote-text {
  font-weight: 400;
  font-size: var(--font-size-4xl);
  margin-top: var(--spacing-xl);
}

.featured-testimonials-swiper .progress-bar {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.featured-testimonials-swiper .custom-pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-grey-1);
  font-size: var(--font-size-xl);
  font-weight: 300;
  position: absolute;
  bottom: var(--spacing-lg);
  right: var(--spacing-2xl);
}

.featured-testimonials-swiper .progress-bar .line {
  position: relative;
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.featured-testimonials-swiper .progress-bar .progress-fill {
  height: 100%;
  background: white;
  width: 20%;
  transition: width 0.3s;
}

.featured-testimonials-slider .btn-wrapper {
  text-align: center;
}

.featured-testimonials-slider .btn-link-internal {
  margin: var(--spacing-xl) auto 0;
}

@media screen and (max-width: 1439px) {
  .featured-testimonials-swiper .testimonial-card {
    height: 480px;
    gap: var(--spacing-xl);
  }
}

@media screen and (max-width: 1023px) {
  .featured-testimonials-slider .slider-nav button {
    width: 42px;
    height: 42px;
  }

  .featured-testimonials-slider .slider-nav button svg {
    width: 24px;
  }

  .featured-testimonials-swiper .testimonial-card {
    height: 450px;
  }

  .featured-testimonials-swiper
    .testimonial-card
    .content-side
    .quote-mark
    svg {
    height: 40px;
    width: auto;
  }

  .featured-testimonials-swiper .testimonial-card .content-side .logo {
    height: 50px;
    width: 100px;
  }

  .featured-testimonials-swiper .testimonial-card .content-side .quote-text {
    font-size: var(--font-size-4xl);
  }
}

@media screen and (max-width: 639px) {
  .featured-testimonials-slider .testimonials-header {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: var(--spacing-3xl);
  }

  .featured-testimonials-swiper .testimonial-card {
    padding: var(--spacing-md);
  }

  .featured-testimonials-slider .slider-nav {
    margin-top: var(--spacing-xl);
    justify-content: flex-end;
  }

  .featured-testimonials-slider .slider-nav button {
    width: 40px;
    height: 40px;
  }

  .featured-testimonials-slider .slider-nav button svg {
    width: 18px;
  }

  .featured-testimonials-swiper .testimonial-card {
    height: 500px;
    grid-template-columns: auto;
    grid-template-rows: 220px auto;
    gap: 20px;
  }

  .featured-testimonials-swiper .testimonial-card .image-side {
    height: 220px;
  }

  .featured-testimonials-swiper .testimonial-card .content-side {
    padding-bottom: 50px;
    padding-top: 0;
  }

  .featured-testimonials-swiper
    .testimonial-card
    .content-side
    .quote-mark
    svg {
    height: 24px;
  }

  .featured-testimonials-swiper .testimonial-card .content-side .quote-text {
    font-size: var(--font-size-5xl);
  }

  .featured-testimonials-swiper .custom-pagination {
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
  }
}

/**************-------------------------------------**************/
/*                       TESTIMONIAL MASONRY                     */
/**************-------------------------------------**************/
.testimonials-masonry {
  padding-bottom: var(--spacing-6xl);
  position: relative;
  overflow: visible;
}

.testimonials-masonry .shade-wrapper {
  width: 100%;
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.testimonials-masonry .shade {
  position: absolute;
  top: 800px;
  left: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.6) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.testimonials-masonry .heading-xl {
  margin-bottom: var(--spacing-lg);
}

.testimonials-masonry .description {
  color: var(--color-grey-1);
}

.testimonials-masonry .testimonial-section-wrapper {
  position: relative;
  /* height: 100vh; */
  width: 100%;
  /* overflow: hidden; */
}

.testimonials-masonry .testimonial-section-wrapper .masonry-grid {
  column-count: 2;
  gap: var(--spacing-lg);
  width: 100%;
  padding-top: var(--spacing-xl);
}

.testimonials-masonry .testimonial-section-wrapper .shades-container {
  width: 100%;
  position: fixed;
  pointer-events: none;
  inset: 0;
  height: 100dvh;
  z-index: 1;
}

.testimonials-masonry .testimonial-section-wrapper .shader {
  position: absolute;
  left: 0;
  right: 0;
  height: 25vh;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testimonials-masonry .testimonial-section-wrapper .top-shade {
  top: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 34, 35, 0) 0%,
    rgba(10, 34, 35, 0.05) 15%,
    rgba(10, 34, 35, 0.2) 35%,
    rgba(10, 34, 35, 0.5) 60%,
    rgba(10, 34, 35, 0.8) 80%,
    #0a2223 100%
  );
  opacity: 0;
}

.testimonials-masonry .testimonial-section-wrapper .bottom-shade {
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 34, 35, 0) 0%,
    rgba(10, 34, 35, 0.05) 15%,
    rgba(10, 34, 35, 0.2) 35%,
    rgba(10, 34, 35, 0.5) 60%,
    rgba(10, 34, 35, 0.8) 80%,
    #0a2223 100%
  );
  opacity: 1;
}

.testimonials-masonry .testimonial-card {
  display: flex;
  padding: var(--spacing-lg) var(--spacing-lg);
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  border-radius: var(--rounded-md);
  background: rgba(255, 255, 255, 0.07);
  height: calc(100% - (var(--spacing-xl) * 2));
  margin-bottom: var(--spacing-lg);
  break-inside: avoid;
}

.testimonials-masonry .testimonial-card .logo {
  height: 68px;
  width: 180px;
}

.testimonials-masonry .testimonial-card .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.testimonials-masonry .testimonial-card .text {
  color: var(--color-white);
  opacity: 0.8;
}

.testimonials-masonry .testimonial-card .author {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 20px;
  margin-top: auto;
  align-items: center;
}

.testimonials-masonry .testimonial-card .author .image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex: 1;
}

.testimonials-masonry .testimonial-card .author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.testimonials-masonry .testimonial-card .author span {
  display: block;
}

.testimonials-masonry .testimonial-card .author .name {
  color: var(--color-white);
}

.testimonials-masonry .testimonial-card .author .company {
  color: var(--color-grey-1);
}

@media screen and (max-width: 1023px) {
  .testimonials-masonry .testimonial-card .logo {
    height: 50px;
    width: 100px;
  }

  .testimonials-masonry .testimonial-card .author .image {
    width: 64px;
    height: 64px;
  }
}

@media screen and (max-width: 639px) {
  .testimonials-masonry .testimonial-section-wrapper .masonry-grid {
    column-count: 1;
  }
  .testimonials-masonry .testimonial-card {
    padding: var(--spacing-2xl) var(--spacing-lg);
    height: calc(100% - (var(--spacing-2xl) * 2));
    gap: 16px;
  }

  .testimonials-masonry .testimonial-card:last-child {
    margin-bottom: 0;
  }

  .testimonials-masonry .testimonial-card .author {
    gap: 10px;
  }

  .testimonials-masonry .testimonial-card .author .image {
    width: 54px;
    height: 54px;
  }

  .testimonials-masonry .testimonial-card .author .name,
  .testimonials-masonry .testimonial-card .author .company {
    font-size: var(--font-size-md);
  }
}

/**************-------------------------------------**************/
/*                       TESTIMONIAL MASONRY                     */
/**************-------------------------------------**************/
.main-content {
  padding-bottom: var(--spacing-6xl);
  padding-top: var(--spacing-md-2);
  position: relative;
  overflow: hidden;
}

.main-content .shade {
  position: absolute;
  top: 600px;
  right: -5%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.6) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.main-content .container {
  max-width: var(--max-width-3xl);
}

.main-content .container .content-prose {
  padding-right: var(--spacing-2xl);
}

@media screen and (max-width: 639px) {
  .main-content .container .content-prose {
    padding-right: 0;
  }
}

/**************-------------------------------------**************/
/*                            THANKYOU                           */
/**************-------------------------------------**************/
.thank-you {
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
  padding: var(--spacing-2xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you .shade {
  position: absolute;
  top: 30%;
  right: 10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.6) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.thank-you .container {
  max-width: var(--max-width-2xl);
  text-align: center;
  z-index: 2;
}

.thank-you .container h1 {
  font-size: var(--font-size-6xl);
  transform: translateY(60px);
  opacity: 0;
  will-change: opacity, transform;
}

.thank-you .actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-xl);
  transform: translateY(60px);
  opacity: 0;
  will-change: opacity, transform;
}

/**************-------------------------------------**************/
/*                           NOT FOUND                           */
/**************-------------------------------------**************/
.not-found {
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
  padding: var(--spacing-2xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found .shade {
  position: absolute;
  top: 40%;
  right: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.6) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
}

.not-found .container {
  max-width: var(--max-width-3xl);
  text-align: center;
  z-index: 2;
}

.not-found .container h1 {
  font-size: calc(var(--font-size-9xl) * 2.2);
  line-height: 1;
  opacity: 0;
  transform: translateY(60px);
  will-change: opacity, transform;
}

.not-found .container h2 {
  font-size: var(--font-size-7xl);
  opacity: 0;
  transform: translateY(60px);
  will-change: opacity, transform;
}

.not-found .description {
  margin-top: var(--spacing-xl);
  opacity: 0;
  transform: translateY(60px);
  will-change: opacity, transform;
}

.not-found .actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-xl);
  opacity: 0;
  transform: translateY(60px);
  will-change: opacity, transform;
}

/**************-------------------------------------**************/
/*                           GET IN TOUCH FORM                   */
/**************-------------------------------------**************/

.get-in-touch-form {
  position: relative;
  padding: var(--spacing-md-2) 0
    calc(var(--spacing-6xl) - (var(--spacing-lg) + 61px));
  overflow: hidden;
}

.get-in-touch-form .container {
  max-width: var(--max-width-2xl);
}

.get-in-touch-form .forminator-custom-form {
  background: transparent !important;
  margin: 0 auto;
}

.get-in-touch-form .forminator-custom-form *:focus {
  outline: none !important;
  box-shadow: none !important;
}

.get-in-touch-form #forminator-module-190 #name-1 .forminator-label,
.get-in-touch-form #forminator-module-190 #email-1 .forminator-label,
.get-in-touch-form #forminator-module-190 #phone-1 .forminator-label,
.get-in-touch-form #forminator-module-190 #text-1 .forminator-label,
.get-in-touch-form #forminator-module-190 #text-2 .forminator-label,
.get-in-touch-form #forminator-module-190 #textarea-1 .forminator-label {
  color: var(--color-white) !important;
  font-size: var(--font-size-2xl) !important;
  font-weight: 300 !important;
  margin-bottom: 0 !important;
  display: block;
  pointer-events: none;
}

.get-in-touch-form #forminator-module-190 #name-1 .forminator-input,
.get-in-touch-form #forminator-module-190 #email-1 .forminator-input,
.get-in-touch-form #forminator-module-190 #phone-1 .forminator-input,
.get-in-touch-form #forminator-module-190 #text-1 .forminator-input,
.get-in-touch-form #forminator-module-190 #text-2 .forminator-input,
.get-in-touch-form #forminator-module-190 #textarea-1 .forminator-textarea {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #99a7a7 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  padding: var(--spacing-md) 0 !important;
  position: relative;
  font-size: var(--font-size-xl) !important;
  font-weight: 300 !important;
  transition: all 0.4s ease-in-out;
}

.get-in-touch-form #forminator-module-190 #phone-1 {
  z-index: 1;
}

.get-in-touch-form #forminator-module-190 #phone-1 .forminator-input {
  margin-left: 44px !important;
  padding-left: 60px !important;
  width: calc(100% - 44px) !important;
}

.get-in-touch-form #forminator-module-190 {
  overflow-x: hidden !important;
}

.get-in-touch-form
  #forminator-module-190
  #textarea-1
  .forminator-field
  .forminator-label {
  margin-bottom: var(--spacing-sm) !important;
}

.get-in-touch-form #forminator-module-190 #textarea-1 .forminator-textarea {
  border: 1px solid #99a7a7 !important;
  padding-left: var(--spacing-md) !important;
  padding-right: var(--spacing-md) !important;
}

.get-in-touch-form
  #forminator-module-190
  #name-1
  .forminator-input::placeholder,
.get-in-touch-form
  #forminator-module-190
  #email-1
  .forminator-input::placeholder,
.get-in-touch-form
  #forminator-module-190
  #phone-1
  .forminator-input::placeholder,
.get-in-touch-form
  #forminator-module-190
  #text-1
  .forminator-input::placeholder,
.get-in-touch-form
  #forminator-module-190
  #text-2
  .forminator-input::placeholder,
.get-in-touch-form
  #forminator-module-190
  #textarea-1
  .forminator-textarea::placeholder {
  color: #99a7a7 !important;
  font-weight: 300 !important;
}

.get-in-touch-form
  #forminator-module-190
  #name-1
  .forminator-field.forminator-has_error
  .forminator-input,
.get-in-touch-form
  #forminator-module-190
  #email-1
  .forminator-field.forminator-has_error
  .forminator-input,
.get-in-touch-form
  #forminator-module-190
  #phone-1
  .forminator-field.forminator-has_error
  .forminator-input,
.get-in-touch-form
  #forminator-module-190
  #text-1
  .forminator-field.forminator-has_error
  .forminator-input,
.get-in-touch-form
  #forminator-module-190
  #text-2
  .forminator-field.forminator-has_error
  .forminator-input,
.get-in-touch-form
  #forminator-module-190
  #textarea-1
  .forminator-field.forminator-has_error
  .forminator-textarea {
  border-color: #ff6b6b !important;
}

.get-in-touch-form
  #forminator-module-190
  #name-1
  .forminator-input:focus-within,
.get-in-touch-form
  #forminator-module-190
  #email-1
  .forminator-input:focus-within,
.get-in-touch-form
  #forminator-module-190
  #phone-1
  .forminator-input:focus-within,
.get-in-touch-form
  #forminator-module-190
  #text-1
  .forminator-input:focus-within,
.get-in-touch-form
  #forminator-module-190
  #text-2
  .forminator-input:focus-within {
  border-color: #ffffff !important;
}

.forminator-ui.forminator-custom-form:not(
    .forminator-size--small
  )[data-grid="open"]
  .forminator-row,
.forminator-ui.forminator-custom-form:not(
    .forminator-size--small
  )[data-grid="open"]
  .forminator-row-inside {
  margin-bottom: var(--spacing-lg) !important;
}

.get-in-touch-form #forminator-module-190 .forminator-row-last {
  padding-bottom: 61px !important;
}

.iti__selected-country {
  background-color: var(--color-secondary) !important;
  color: #ffffff !important;
}

.iti__selected-dial-code {
  color: #ffffff !important;
  margin-left: 8px !important;
  font-size: var(--font-size-xl) !important;
  font-weight: 300 !important;
  margin-bottom: 1px !important;
}

.forminator-iti-input.iti ul.iti__country-list::-webkit-scrollbar {
  width: 2px;
  background: rgba(255, 255, 255, 0);
  border-radius: 5px;
}

.forminator-iti-input.iti ul.iti__country-list::-webkit-scrollbar-thumb {
  background: var(--color-white);
  border-radius: 6px;
}

.iti__dropdown-content {
  background-color: #0d2a2b !important; /* Darker teal for dropdown */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}

.iti__search-input {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  margin-bottom: 5px !important;
  padding: 10px !important;
}

.iti__search-input:focus,
.iti__search-input:focus-visible {
  outline: none !important;
}

.iti__country {
  padding: 10px 15px !important;
  transition: background 0.2s;
}

.iti__country:hover,
.iti__highlight {
  background-color: rgba(
    232,
    154,
    131,
    0.2
  ) !important; /* Subtle coral hover */
}

.iti__country-name {
  color: #ffffff !important;
  font-size: var(--font-size-lg) !important;
}

.iti__dial-code {
  color: rgba(255, 255, 255, 0.5) !important;
}

.forminator-iti-input.iti.iti--allow-dropdown
  .iti__country-container:not(:has(+ input[disabled])):not(
    :has(+ input[readonly])
  )
  .iti__selected-country-primary:hover,
.forminator-iti-input.iti.iti--allow-dropdown
  .iti__country-container:not(:has(+ input[disabled])):not(
    :has(+ input[readonly])
  )
  .iti__selected-country:has(+ .iti__dropdown-content:hover)
  .iti__selected-country-primary {
  background-color: transparent !important;
}

.get-in-touch-form #forminator-module-190 #html-1 p {
  font-size: var(--font-size-md) !important;
  color: var(--color-grey-1) !important;
}

.get-in-touch-form #forminator-module-190 #html-1 a {
  color: var(--color-primary) !important;
}

.get-in-touch-form #forminator-module-190 #html-1 a:hover {
  color: var(--color-white) !important;
}

.get-in-touch-form #forminator-module-190 #html-1 {
  margin-top: var(--spacing-md) !important;
}

.get-in-touch-form .forminator-error-message {
  color: #ff6b6b !important;
  font-size: var(--font-size-md) !important;
  font-weight: 300 !important;
  padding: 8px 0 0 !important;
  display: block;
  margin-top: 0 !important;
  background-color: transparent !important;
}

/* 1. The Main Button Container */
.get-in-touch-form .forminator-button-submit {
  position: relative !important;
  overflow: hidden !important;
  background-color: var(--color-primary) !important;
  color: var(--color-secondary) !important;
  font-size: var(--font-size-xl) !important;
  font-weight: normal !important;
  letter-spacing: -0.24px !important;
  line-height: 1 !important;
  border: 2px solid var(--color-primary) !important;
  padding: 0 80px 0 16px !important;
  display: inline-flex !important;
  align-items: center;
  height: 60px !important;
  cursor: pointer;
  transition: all 0.35s ease;
  border-radius: 0 !important;

  width: max-content !important;
}

.get-in-touch-form .forminator-button-submit::before {
  /* Using your SVG path in a Data URI */
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='32' viewBox='0 0 34 32' fill='none'%3E%3Cpath d='M32.8363 15.7295L18.1478 30.3379L17.9144 30.5693L17.6976 30.3232L16.2064 28.6377L16.0131 28.4199L16.2201 28.2139L27.5531 16.9434L0.30896 16.9434V14.0771L27.5531 14.0771L16.2201 2.80664L16.0131 2.60059L16.2064 2.38184L17.6976 0.696288L17.9144 0.451171L18.1478 0.68164L32.8363 15.291L33.057 15.5098L32.8363 15.7295Z' fill='%23e89a83'/%3E%3C/svg%3E");
  position: absolute;
  inset: 0;
  background-color: #0a2223; /* var(--color-secondary) */
  color: #e89a83; /* var(--color-primary) */
  display: flex;
  align-items: center;
  padding: 0 16px;
  transform: translateX(calc(100% - 64px));
  transition: transform 0.35s ease;
  z-index: 2;
  white-space: nowrap;
}

.get-in-touch-form .forminator-button-submit::after {
  content: "Submit Inquiry";
  position: absolute;
  inset: 0;
  background-color: transparent;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 0 60px;
  transition: transform 0.35s ease;
  z-index: 2;
  transform: translateX(calc(100% - 64px));
}

/* 4. Hover Interactions */
.forminator-button-submit:hover::after {
  transform: translateX(0);
}

.forminator-button-submit:hover::before {
  transform: translateX(0);
}

.forminator-ui#forminator-module-190.forminator-design--default
  .forminator-response-message.forminator-loading,
.forminator-ui#forminator-module-190.forminator-design--default
  .forminator-response-message.forminator-loading
  p {
  display: none !important;
}

/* 5. Mobile Adjustments */
@media screen and (max-width: 767px) {
  .get-in-touch-form .forminator-button-submit {
    padding-right: 80px !important;
    height: 56px !important;
  }

  .get-in-touch-form #forminator-module-190 #html-1 {
    margin-top: var(--spacing-xl) !important;
    margin-bottom: var(--spacing-lg) !important;
  }

  .forminator-ui.forminator-custom-form:not(
      .forminator-size--small
    )[data-grid="open"]
    .forminator-row,
  .forminator-ui.forminator-custom-form:not(
      .forminator-size--small
    )[data-grid="open"]
    .forminator-row-inside {
    margin-bottom: var(--spacing-xl) !important;
  }
}

/**************-------------------------------------**************/
/*                           POST HERO                           */
/**************-------------------------------------**************/
.news-hero {
  padding-top: var(--spacing-4xl);
}

.news-hero .breadcrumb {
  font-size: var(--font-size-md);
  color: var(--color-grey-1);
  will-change: opacity;
  opacity: 0;
}

.news-hero .breadcrumb a {
  color: var(--color-grey-1);
}

.news-hero .breadcrumb a:hover {
  color: var(--color-primary);
}

.news-hero .news-banner {
  margin-top: var(--spacing-lg);
  height: 580px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.news-hero .news-banner .image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.news-hero .news-banner .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
}

.news-hero .news-banner .gradient-shade {
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 85.74%);

  opacity: 0;
  will-change: opacity;
}

.news-hero .news-banner .content {
  position: relative;
  padding-top: var(--spacing-lg-2);
  padding-bottom: var(--spacing-lg-2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

.news-hero .news-banner .content .top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  overflow: hidden;
}

.news-hero .news-banner .content .top > div {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, 100%, 0);
  transform-style: preserve-3d;
}

.news-hero .news-banner .content .top .icon {
  padding: 5px;
  padding-left: 0;
}

.news-hero .news-banner .content .top .icon svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}

.news-hero .news-banner .content .top .time .icon svg {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}

.news-hero .news-banner .content .top .text {
  margin-top: 2px;
}

.news-hero .news-banner .content .bottom {
  display: flex;
  gap: var(--spacing-2xl);
  justify-content: space-between;
  align-items: flex-end;
}

.news-hero .news-banner .content .bottom .heading {
  max-width: var(--max-width-xl);
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transform-style: preserve-3d;
}

.news-hero .news-banner .content .bottom .author {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 20px;
  margin-top: auto;
  align-items: center;
  flex-shrink: 0;
  max-width: 320px;
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transform-style: preserve-3d;
}

.news-hero .news-banner .content .bottom .author .image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex: 1;
}

.news-hero .news-banner .content .bottom .author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.news-hero .news-banner .content .bottom .author span {
  display: block;
}

.news-hero .news-banner .content .bottom .author .name {
  color: var(--color-white);
  font-size: var(--font-size-2xl);
}

.news-hero .news-banner .content .bottom .author .company {
  color: var(--color-grey-1);
  font-size: var(--font-size-md);
}

@media screen and (max-width: 1439px) {
  .news-hero .news-banner {
    height: 500px;
  }

  .news-hero .news-banner .content .bottom .author .image {
    width: 84px;
    height: 84px;
  }
}

@media screen and (max-width: 1023px) {
  .news-hero .news-banner {
    height: 400px;
  }

  .news-hero .news-banner .content .top > div {
    gap: 2px;
  }

  .news-hero .news-banner .content .top .icon svg {
    width: 18px;
    height: 18px;
  }

  .news-hero .news-banner .content .top .time .icon svg {
    width: 20px;
    height: 20px;
  }

  .news-hero .news-banner .content .bottom .author .image {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .news-hero {
    padding-top: var(--spacing-6xl);
  }

  .news-hero .news-banner {
    margin-top: var(--spacing-xl);
  }

  .news-hero .news-banner .content {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }

  .news-hero .news-banner .content .top > div {
    gap: 3px;
  }

  .news-hero .news-banner .content .top .icon svg {
    width: 15px;
    height: 15px;
  }

  .news-hero .news-banner .content .top .time .icon svg {
    width: 17px;
    height: 17px;
  }

  .news-hero .news-banner .content .bottom .author {
    display: none;
  }
}

/**************-------------------------------------**************/
/*                           NEWS CONTENT                        */
/**************-------------------------------------**************/
.news-content {
  padding: var(--spacing-2xl) 0;
}

.news-content .container,
.news-bottom .container {
  max-width: var(--max-width-2xl);
}

/**************-------------------------------------**************/
/*                           NEWS BOTTOM                         */
/**************-------------------------------------**************/
.news-bottom .container .wrapper {
  border-top: 1px solid var(--color-primary);
  padding-top: var(--spacing-xl);
  display: flex;
  gap: var(--spacing-2xl);
  justify-content: space-between;
  align-items: flex-end;
}

.news-bottom .container .wrapper {
}

.news-bottom .container .wrapper .author-wrapper {
  max-width: 400px;
}

.news-bottom .container .wrapper .author {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 20px;
  margin-top: auto;
  align-items: center;
}

.news-bottom .container .wrapper .author .image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex: 1;
}

.news-bottom .container .wrapper .author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.news-bottom .container .wrapper .author span {
  display: block;
}

.news-bottom .container .wrapper .author .name {
  color: var(--color-white);
  font-size: var(--font-size-2xl);
}

.news-bottom .container .wrapper .author .company {
  color: var(--color-grey-1);
  font-size: var(--font-size-md);
}

.news-bottom .container .wrapper .author-wrapper .author-bio {
  font-size: var(--font-size-md);
  margin-top: var(--spacing-lg);
}

.news-bottom .container .wrapper .news-share {
}

.news-bottom .container .wrapper .news-share .title {
  font-size: var(--font-size-xl);
  text-align: right;
}

.news-bottom .container .wrapper .news-share .links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-md);
  flex-shrink: 0;
  margin-top: var(--spacing-md);
}

.news-bottom .container .wrapper .news-share .links a {
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.news-bottom .container .wrapper .news-share .links a:hover {
  transform: scale(1.02) translate3d(0, -2px, 0);
}

.news-bottom .container .wrapper .news-share .links a svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media screen and (max-width: 1439px) {
}

@media screen and (max-width: 1023px) {
  .news-bottom .container .wrapper .author .image {
    width: 60px;
    height: 60px;
  }

  .news-bottom .container .wrapper .author-wrapper {
    max-width: 330px;
  }

  .news-bottom .container .wrapper .news-share .links a {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 639px) {
  .news-bottom .container .wrapper .author {
    gap: 8px;
  }
  .news-bottom .container .wrapper .author .image {
    width: 48px;
    height: 48px;
  }
}

/**************-------------------------------------**************/
/*                           NEWS BLOGS SLIDER                   */
/**************-------------------------------------**************/

.news-blogs-slider {
  padding: var(--spacing-6xl) 0;
}

/**************-------------------------------------**************/
/*                        SINGLE FEATURED NEWS                   */
/**************-------------------------------------**************/
.single-featured-news {
  padding-top: var(--spacing-lg);
}

.single-featured-news .content-wrapper {
  height: 580px;
  width: 100%;
  position: relative;
  border: 1px solid var(--color-primary);
}

.single-featured-news .image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.single-featured-news .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-featured-news .gradient-shade {
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 85.74%);
}

.single-featured-news .content {
  position: relative;
  padding: var(--spacing-lg-2) var(--spacing-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

.single-featured-news .content .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-2xl);
}

.single-featured-news .content .top .left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  overflow: hidden;
}

.single-featured-news .content .top .left > div {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  overflow: hidden;
}

.single-featured-news .content .top .icon {
  padding: 5px;
  padding-left: 0;
}

.single-featured-news .content .top .icon svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}

.single-featured-news .content .top .time .icon svg {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}

.single-featured-news .content .top .text {
  margin-top: 2px;
}

.single-featured-news .content .top .author {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 16px;
  margin-top: auto;
  align-items: center;
  flex-shrink: 0;
  max-width: 320px;
}

.single-featured-news .content .top .author .image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex: 1;
}

.single-featured-news .content .top .author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.single-featured-news .content .top .author span {
  display: block;
}

.single-featured-news .content .top .author .name {
  color: var(--color-white);
  font-size: var(--font-size-2xl);
}

.single-featured-news .content .top .author .company {
  color: var(--color-grey-1);
  font-size: var(--font-size-md);
}

.single-featured-news .content .bottom {
  display: flex;
  justify-content: flex-end;
}

.single-featured-news .content-box {
  max-width: var(--max-width-lg);
  background-color: var(--color-secondary);
  padding: var(--spacing-md-2) var(--spacing-md-2) var(--spacing-lg) 1px;
  margin-top: -190px;
  position: relative;
}

.single-featured-news .content-box .heading {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: var(--font-size-6xl);
  color: var(--color-primary);
}

.single-featured-news .content-box .excerpt {
  color: var(--color-grey-1);
  margin-top: var(--spacing-md);
}

.single-featured-news .content-box .btn-wrapper {
  display: none;
}

@media screen and (max-width: 1439px) {
  .single-featured-news .content-wrapper {
    height: 500px;
  }

  .single-featured-news .content-box {
    max-width: var(--max-width-md);
  }

  .single-featured-news .content-box {
    margin-top: -160px;
  }
}

@media screen and (max-width: 1023px) {
  .single-featured-news .content-wrapper {
    height: 400px;
  }

  .single-featured-news .content .top .left > div {
    gap: 2px;
  }

  .single-featured-news .content .top .icon svg {
    width: 18px;
    height: 18px;
  }

  .single-featured-news .content .top .time .icon svg {
    width: 20px;
    height: 20px;
  }

  .single-featured-news .content .top .author .image {
    width: 60px;
    height: 60px;
  }

  .single-featured-news .content .content-box {
    max-width: var(--max-width-sm);
    margin-top: -120px;
  }
}

@media screen and (max-width: 767px) {
  .single-featured-news .content {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }

  .single-featured-news .content .top .left > div {
    gap: 3px;
  }

  .single-featured-news .content .top .icon svg {
    width: 15px;
    height: 15px;
  }

  .single-featured-news .content .top .time .icon svg {
    width: 17px;
    height: 17px;
  }

  .single-featured-news .content .bottom .author {
    gap: 8px;
  }

  .single-featured-news .content .bottom .author .image {
    width: 48px;
    height: 48px;
  }

  .single-featured-news .content-box {
    max-width: 75%;
    margin-top: -140px;
  }
}

@media screen and (max-width: 639px) {
  .single-featured-news .content .top .left {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .single-featured-news .content .top .author {
    gap: 8px;
  }
  .single-featured-news .content .top .author .image {
    width: 48px;
    height: 48px;
  }

  .single-featured-news .content-box {
    max-width: 90%;
    bottom: -15%;
    margin-top: -120px;
  }

  .single-featured-news .content-box .btn-wrapper {
    margin-top: var(--spacing-lg);
    display: block;
  }

  .single-featured-news .content .bottom {
    display: none;
  }
}

/**************-------------------------------------**************/
/*                            ALL NEWS                           */
/**************-------------------------------------**************/
.all-news {
  padding: var(--spacing-3xl) 0 var(--spacing-6xl);
}

.all-news .filter-bar {
  display: flex;
  gap: var(--spacing-2xl);
  justify-content: space-between;
  align-items: flex-end;
}

.all-news .filter-bar .post-count {
  color: var(--color-grey-1);
  font-size: var(--font-size-md);
  text-transform: uppercase;
  font-weight: 400;
}

.all-news .filter-bar .filter-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-md-2);
}

.all-news .filter-bar .filter-group .filter-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.all-news .filter-bar .filter-group .filter-item .filter-label {
  font-size: var(--font-size-md);
  font-weight: 400;
  color: var(--color-primary);
}

.all-news .filter-bar .filter-group .choices {
  width: 250px;
}

.all-news .filter-bar .filter-group .choices__inner {
  background-color: #f3f3f5 !important;
  border: none !important;
  border-radius: 0px !important;
  padding: 10px 12px 8px 12px !important;
  display: flex;
  align-items: center;
  font-size: var(--font-size-md) !important;
  color: var(--color-secondary) !important;
  min-height: unset !important;
}

.all-news .filter-bar .filter-group .choices__list--single {
  padding: 0 !important;
  color: #34495e; /* Dark slate text */
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-size: var(--font-size-md) !important;
}

.all-news .filter-bar .filter-group .choices__list--single .choices__item {
  padding-right: 24px;
}

.all-news .filter-bar .filter-group .choices[data-type*="select-one"]::after {
  content: "";
  height: 8px;
  width: 8px;
  border-style: solid;
  border-color: rgba(113, 113, 130, 0.5);
  border-width: 0 1px 1px 0;
  transform: translateY(-50%) rotate(45deg);
  right: 15px;
  top: 50%;
  border-radius: 0;
}

.all-news
  .filter-bar
  .filter-group
  .choices.is-open[data-type*="select-one"]::after {
  /* transform: translateY(-50%) rotate(-135deg);  */
  margin-top: -2.5px;
}

.all-news .filter-bar .filter-group .choices__list--dropdown {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
}

.all-news .filter-bar .filter-group .choices__list {
  color: var(--color-secondary);
}

.all-news .news-container {
  margin-top: var(--spacing-xl);
  position: relative;
}

.all-news .news-container .news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: var(--spacing-lg);
  row-gap: var(--spacing-xl);
}

.all-news .news-container .news-grid .card .image-wrapper {
  border: 1px solid var(--color-primary);
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}

.all-news .news-container .news-grid .card .image-wrapper .image {
  width: 103%;
  height: 100%;
  object-position: left;
  will-change: transform;
  transition: all 0.4s ease-in-out;
  transform: scale(1.05) translateX(-3%);
}

.all-news .news-container .news-grid .card:hover .image-wrapper .image {
  transform: scale(1) translateX(0);
}

.all-news .news-container .news-grid .card .image-wrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.all-news .news-container .news-grid .card .image-wrapper .gradient-shade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 85.74%);
  z-index: 1;
}

.all-news .news-container .news-grid .card .content-wrapper {
  margin-top: -88px;
  z-index: 1;
  position: relative;
  width: 94%;
}

.all-news .news-container .news-grid .card .content-wrapper .top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  overflow: hidden;
  padding-left: var(--spacing-md-2);
}

.all-news .news-container .news-grid .card .content-wrapper .top > div {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.all-news .news-container .news-grid .card .content-wrapper .top .icon svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}

.all-news .news-container .news-grid .card .content-wrapper .top .text {
  color: var(--color-white);
  font-size: var(--font-size-md);
  font-weight: 300;
  margin-top: 2px;
}

.all-news .news-container .news-grid .card .content-wrapper .heading-wrapper {
  background-color: var(--color-secondary);
  margin-top: var(--spacing-md);
  margin-right: var(--spacing-md);
  padding: var(--spacing-md);
  padding-left: 0;
  height: 260px;
  overflow: hidden;
}

.all-news .news-container .news-grid .card .content-wrapper .heading {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  font-weight: 400;
  margin-bottom: var(--font-size-sm);
}

.all-news .news-container .news-grid .card .content-wrapper .text {
  color: var(--color-grey-1);
  margin-right: var(--spacing-md);
  font-size: var(--font-size-md);
}

.all-news .news-container .news-grid .card .content-wrapper .bottom {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-md);
}

.all-news .news-container .news-grid .card .content-wrapper .bottom .author {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 10px;
  margin-top: auto;
  align-items: center;
  flex-shrink: 0;
}

.all-news .card .content-wrapper .bottom .author .image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex: 1;
}

.all-news .card .content-wrapper .bottom .author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.all-news .card .content-wrapper .bottom .author span {
  display: block;
}

.all-news .card .content-wrapper .bottom .author .name {
  color: var(--color-white);
  font-size: var(--font-size-xl);
}

.all-news .card .content-wrapper .bottom .author .company {
  color: var(--color-grey-1);
  font-size: var(--font-size-md);
}

.all-news .card .content-wrapper .bottom .arrow {
  position: relative;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-news .card .content-wrapper .bottom .arrow svg {
  width: 18px;
}

.all-news .card .content-wrapper .bottom .arrow svg path {
  transition: all 0.2s;
}

.all-news .card .content-wrapper .bottom .arrow:before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: 0;
  background: var(--color-primary);
  right: -1px;
  left: auto;
  bottom: -1px;
  transition: all 0.3s;
  z-index: -1;
}

.all-news .card .content-wrapper .bottom .arrow:before {
  right: auto;
  left: -1px;
}

.all-news .card:hover .content-wrapper .bottom .arrow:before {
  width: calc(100% + 2px);
  transition: all 0.2s;
}

.all-news .card:hover .content-wrapper .bottom .arrow svg path {
  fill: var(--color-secondary);
}

.all-news .news-container .pagination {
  margin: var(--spacing-2xl) auto 0;
  width: max-content;
  display: flex;
  gap: 6px;
}

.all-news .news-container .pagination a,
.all-news .news-container .pagination a.active {
  display: block;
  padding: 8px 12px 6px;
  line-height: 20px;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  font-size: var(--font-size-sm);
  cursor: pointer;
}

.all-news .news-container .pagination a.active {
  pointer-events: none;
  cursor: default;
}

.all-news .news-container .pagination .pagination-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.all-news .news-container .pagination a:hover,
.all-news .news-container .pagination a.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-secondary);
}

.all-news .news-container .pagination a:hover svg path {
  fill: var(--color-secondary);
}

.all-news .news-container .pagination a.prev,
.all-news .news-container .pagination a.next {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.all-news .news-container .pagination a svg {
  width: 16px;
  height: 16px;
  margin-bottom: 1px;
}

.all-news .news-grid {
  min-height: 400px;
}

.all-news .news-grid.is-loading .card {
  opacity: 0.4;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.all-news .news-loading .spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.all-news .news-loading {
  display: none;
  margin-bottom: 24px;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  z-index: 2;
}

.all-news .news-loading.is-visible {
  display: block;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1439px) {
  .all-news .news-container .news-grid .card .content-wrapper {
    margin-top: -72px;
  }

  .all-news .card .content-wrapper .bottom .arrow {
    width: 28px;
    height: 28px;
    border-width: 1px;
  }

  .all-news .card .content-wrapper .bottom .arrow svg {
    width: 14px;
  }

  .all-news .card .content-wrapper .bottom .author .image {
    width: 48px;
    height: 48px;
  }

  .all-news .news-container .news-grid .card .content-wrapper .top .icon svg {
    width: 14px;
    height: 14px;
  }
}

@media screen and (max-width: 1023px) {
  .all-news .filter-bar .filter-group .choices {
    width: 200px;
  }

  .all-news .filter-bar .filter-group .choices__inner {
    padding: 8px 10px 6px 10px !important;
  }

  .all-news .news-container .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 639px) {
  .all-news .filter-bar {
    flex-direction: column-reverse;
  }

  .all-news .filter-bar .news-filter,
  .all-news .filter-bar .filter-group,
  .all-news .filter-bar .filter-group .choices {
    width: 100%;
  }

  .all-news .filter-bar .filter-group .filter-item {
    width: 50%;
  }

  .all-news .news-container .news-grid {
    grid-template-columns: 1fr;
    row-gap: var(--spacing-3xl);
  }

  .all-news .news-container .news-grid .card .content-wrapper {
    max-width: 400px;
  }

  .all-news .news-container .news-grid .card .content-wrapper .heading {
    padding: var(--spacing-lg);
    padding-left: 0;
  }

  .all-news .news-container .pagination a,
  .all-news .news-container .pagination .current {
    line-height: 20px;
    font-size: var(--font-size-md);
  }

  .all-news .news-loading .spinner {
    width: 36px;
    height: 36px;
  }
}

/**************-------------------------------------**************/
/*                            FLIP BOOK                           */
/**************-------------------------------------**************/

.flipbook-main-wrapper {
  background-color: transparent !important;
}

.flipbook-menuBottom {
  background-color: var(--color-primary) !important;
}

.flipbook-overlay {
  transform: scale(0.7) !important;
  background: rgba(10, 34, 35, 0.25) !important;
  backdrop-filter: blur(15px) !important;
  transition: all 1s ease !important;
}

.flipbook-overlay.flipbook-overlay-visible {
  transform: scale(1) !important;
}

.cssload-speeding-wheel {
  /* width: 42px;
    height: 42px;
    border: 5px solid rgba(0, 0, 0, .4);
    border-radius: 50%;
    border-left-color: var;
    border-right-color: rgba(255, 255, 255, .2); */
  width: 48px !important;
  height: 48px !important;
  border: 5px solid #fff !important;
  border-bottom-color: var(--color-primary) !important;
  border-radius: 50% !important;
  box-sizing: border-box !important;
  animation: rotation 1s linear infinite !important;
}

span[data-name="btnClose"] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 36px !important;
  height: 36px !important;
  background: none !important;
  margin-top: var(--spacing-lg);
  margin-right: var(--spacing-lg);
  padding: 0 !important;
}

span[data-name="btnClose"] .shape {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  border-radius: 100%;
  transition: transform 0.4s ease-in-out;
}

span[data-name="btnClose"]:hover .shape {
  transform: scale(0.9);
}

span[data-name="btnClose"] .lines {
  display: flex;
  align-items: center;
  justify-content: center;
}

span[data-name="btnClose"] span {
  position: absolute;
  width: 14px;
  height: 1px;
  background-color: var(--color-secondary);
  transition: all 0.75s cubic-bezier(0.87, 0, 0.13, 1);
  transform-origin: center;
  will-change: transform;
}

span[data-name="btnClose"] span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

span[data-name="btnClose"] span:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.flipbook-currentPageHolder {
  margin-left: var(--spacing-lg) !important;
  margin-right: var(--spacing-lg) !important;
  background: none !important;
}

.flipbook-overlay .flipbook-currentPageNumber,
.flipbook-currentPageInput.digits-2 {
  font-family: var(--body-font) !important;
  font-size: var(--font-size-xl) !important;
  font-weight: 300 !important;
}

.flipbook-overlay .flipbook-tooltip {
  display: none !important;
}

/**************-------------------------------------**************/
/*                         SERVICE CARDS                         */
/**************-------------------------------------**************/
.service-cards {
  padding: var(--spacing-3xl) 0 var(--spacing-6xl);
}

.page-id-221 .service-cards {
  padding-top: 0;
  padding-bottom: 0;
}

.service-cards .heading-wrapper {
  max-width: var(--max-width-xl);
}

.service-cards .heading-wrapper .description {
  margin-top: var(--spacing-lg);
  color: var(--color-grey-1);
}

.service-cards .tabs-container {
  padding-top: var(--spacing-xl);
}

.service-cards .tabs-container .tabs {
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md-2);
  flex-wrap: wrap;
}

.service-cards .tabs-container .tabs .tab {
  border: none;
  outline: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(35.349998474121094px);
  padding: 20px;
  color: var(--color-white);
  cursor: pointer;
  transition: color 0.4s ease;
}

.service-cards .tabs-container .tabs .tab.active {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.service-cards .tabs-container .tabs .tab:hover {
  color: var(--color-primary);
}

.service-cards .tabs-container .tabs .tab.active:hover {
  color: var(--color-secondary);
}

.service-cards .tabs-container .tab-section {
  border-block: 2px solid rgba(219, 164, 149, 0.14);
}

.service-cards .tabs-container .tab-content-wrapper {
  border-inline: 2px solid rgba(219, 164, 149, 0.14);
  position: relative;
}

.service-cards .tabs-container .tab-content {
  opacity: 0;
  visibility: hidden;
  filter: blur(1px);
  pointer-events: none;
  transition: all 0.8s linear;
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg-2);
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
}

.service-cards .tabs-container .tab-content.active {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  pointer-events: all;
  z-index: 1;
  position: relative;
}

.service-cards .tabs-container .tab-content .heading {
  font-size: var(--font-size-6xl);
  font-family: var(--heading-font);
  color: var(--color-primary);
}

.service-cards .tabs-container .tab-content .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg-2);
  margin-top: var(--spacing-md-2);
  height: 640px;
}

.service-cards .tabs-container .content-wrapper .image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.service-cards .tabs-container .content-wrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cards .tabs-container .content-wrapper .content {
  padding: var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg-2);
}

.service-cards .tabs-container .content-wrapper .content .description {
  color: var(--color-grey-1);
}

.service-cards .tabs-container .content-tab {
  display: none;
}

.service-cards .tabs-container .tags .title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

.service-cards .tabs-container .tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.service-cards .tabs-container .tags ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  border-radius: 7px;
  border: 1px solid rgba(219, 164, 149, 0.25);
}

.service-cards .tabs-container .tags ul li img {
  width: 28px;
  height: 28px;
}

.service-cards .tabs-container .btn-wrapper {
  margin-top: auto;
}

@media screen and (max-width: 1439px) {
  .service-cards .tabs-container .tags ul {
    gap: 10px;
  }

  .service-cards .tabs-container .tags ul li {
    gap: 8px;
    padding: 6px 10px;
    color: var(--color-primary);
    font-size: var(--font-size-lg);
  }

  .service-cards .tabs-container .tags ul li img {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .service-cards .tabs-container .tabs .tab {
    padding: 12px 16px;
  }

  .service-cards .tabs-container .content-tab {
    display: block;
    margin-top: var(--spacing-xl);
  }

  .service-cards .tabs-container .content .tags,
  .service-cards .tabs-container .content .btn-wrapper {
    display: none;
  }

  .service-cards .tabs-container .content-tab .btn-wrapper {
    margin-top: var(--spacing-xl);
  }

  .service-cards .tabs-container .tab-content .content-wrapper {
    height: 360px;
  }
}

@media screen and (max-width: 639px) {
  .service-cards .tabs-container .tabs .tab {
    padding: 8px 12px;
  }

  .service-cards .tabs-container .tab-content .content-wrapper {
    height: auto;
    grid-template-columns: 1fr;
  }

  .service-cards .tabs-container .content-wrapper .image {
    height: 220px;
  }

  .service-cards .tabs-container .tags ul {
    gap: 6px;
  }

  .service-cards .tabs-container .tags ul li {
    gap: 5px;
    padding: 5px;
    font-size: var(--font-size-lg);
  }

  .service-cards .tabs-container .tags ul li img {
    width: 16px;
    height: 16px;
  }
}

/**************-------------------------------------**************/
/*                         LEGAL INTRO                           */
/**************-------------------------------------**************/
.legal-intro {
  padding-bottom: var(--spacing-6xl);
  position: relative;
  overflow: hidden;
}

.legal-intro .container {
  max-width: var(--max-width-2xl);
}

/* .introduction .shade {
  position: absolute;
  top: 25%;
  right: -10%;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(17, 81, 86, 0.5) 0%,
    rgba(17, 81, 86, 0.35) 30%,
    rgba(17, 81, 86, 0.15) 55%,
    rgba(17, 81, 86, 0) 70%
  );
  opacity: 0.7;
} */

.legal-intro .heading-xl {
  text-align: center;
  max-width: var(--max-width-lg);
  margin: 0 auto;
}

.legal-intro .heading-xl span {
  display: block;
}

.legal-intro .heading-xl span:first-child {
  text-align: left;
}

.legal-intro .heading-xl span:last-child {
  text-align: right;
}

.legal-intro .wrapper {
  margin-top: var(--spacing-2xl);
}

.legal-intro .description {
  margin: var(--spacing-lg-2) 0 var(--spacing-lg-2);
  color: var(--color-grey-1);
  text-align: center;
}

.legal-intro .image img {
  width: 100%;
}

.legal-intro .btn-wrapper {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1439px) {
  .legal-intro .heading-xl {
    max-width: var(--max-width-md);
  }
}

@media screen and (max-width: 1023px) {
  /* .legal-intro .shade {
    position: absolute;
    top: 40%;
    right: -10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
  } */
}

@media screen and (max-width: 767px) {
}

/**************-------------------------------------**************/
/*                         GUIDE HERO                            */
/**************-------------------------------------**************/
.guide-hero {
  min-height: 100svh;
  position: relative;
}

.guide-hero .hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.guide-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity;
  opacity: 0;
}

.guide-hero .gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 34, 35, 0) 0%, #0a2223 94%);
  opacity: 0;
  will-change: opacity, transform;
}

.guide-hero .container {
  position: relative;
  z-index: 3;
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-2xl);
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: var(--max-width-2xl);
}

.guide-hero .container .subheading {
  background: rgba(153, 167, 167, 0.18);
  padding: 16px 20px;
  color: var(--color-white);
  font-size: var(--font-size-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transform-style: preserve-3d;
}

.guide-hero .container .heading-xl {
  font-size: var(--font-size-9xl);
  text-align: center;
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transform-style: preserve-3d;
}

.guide-hero .container .description {
  color: var(--color-grey-1);
  font-size: var(--font-size-3xl);
  text-align: center;
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transform-style: preserve-3d;
}

.guide-hero .container .actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transform-style: preserve-3d;
}

.guide-hero .container .actions .btn-secondary .hover-text {
  background-color: transparent;
}

.transfer-guide-book-preview {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .guide-hero .container {
    padding-top: var(--spacing-5xl);
    padding-bottom: var(--spacing-3xl);
    gap: var(--spacing-xl);
  }
}
