@charset "UTF-8";
/* =============== VARIABLES ===============  */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --clr-primary-100: #15033A;
  --clr-primary-200: #333D99;
  --clr-primary-300: #282D6A;
  --clr-primary-400: #1F255D;
  --clr-primary-500: #2C3483;
  --clr-primary-600: #121637;
  --clr-primary-700: #484E84;
  --clr-primary-800: #383F94;
  --clr-neutral-100: #FFFFFF;
  --clr-neutral-200: #EAEBF3;
  --clr-neutral-300: #BEC0D9;
  --clr-neutral-400: #747681;
  --clr-neutral-500: #E3E5E8;
  --clr-neutral-600: #F4F4FB;
  --clr-neutral-700: #F2F2F2;
  --clr-neutral-800: #E9E9E9;
  --clr-neutral-900: #1F1F1F;
  --clr-neutral-950: #E6E6EF;
  --clr-purple-100: #96008E;
  --clr-purple-200: #A62A90;
  --clr-purple-300: #CC33B1;
  --clr-orange-100: #EF8E21;
  --clr-orange-200: #F3AA59;
  --clr-blue-100: #1F9ACB;
  --clr-blue-200: #38B1E1;
  --clr-teal-100: #17BAAD;
  --clr-teal-200: #1CE3D3;
  --bg-gd-primary-200: linear-gradient(141.12deg, var(--clr-neutral-100) 22.32%, var(--clr-primary-200) 333.97%);
  --bg-gd-gold-btn: linear-gradient(125.15deg, var(--clr-primary-200) -20.71%, var(--clr-neutral-100) 116.97%);
  --btn-primary-bg: var(--clr-primary-200);
  --btn-primary-txt: var(--clr-neutral-100);
  /* Font family */
  --ff-Lato: "Lato", sans-serif;
  --fs-50: 1.4rem;
  --fs-100: 1.6rem;
  --fs-200: 1.8rem;
  --fs-300: 2rem;
  --fs-400: 2.2rem;
  --fs-450: 2.8rem;
  --fs-500: 3rem;
  --fs-600: 3.2rem;
  --fs-700: 4rem;
  --fs-800: 4.5rem;
  --fs-850: 5.6rem;
  --fs-900: 6.0rem;
  --fs-950: 9.6rem;
  --lh-100: 2.4rem;
  --lh-200: 2.6rem;
  --lh-300: 2.7rem;
  --lh-400: 3.5rem;
  --lh-500: 4rem;
  --lh-600: 4.8rem;
  --lh-700: 5.6rem;
  --radius-100: 0.4rem;
  --radius-200: 0.8rem;
  --radius-300: 1.2rem;
  --radius-400: 1.6rem;
  --radius-500: 2rem;
  --radius-600: 10rem;
  --shadow-400: 0px 4px 15px rgba(2, 7, 32, 0.08);
  --size-100: 1rem;
  --size-200: 1.5rem;
  --size-300: 2rem;
  --size-400: 2.5rem;
  --size-500: 3rem;
  --size-600: 3.5rem;
  --size-700: 4rem;
  --size-800: 5.6rem;
  --size-900: 6rem;
  --section-gap: clamp(4rem, 5vw, 8rem);
  --section-top-gap: clamp(4rem, 5vw, 8rem);
  --section-bottom-gap: clamp(4rem, 5vw, 8rem);
}

@media (max-width: 991px) {
  :root {
    --section-gap: 4rem;
    --section-top-gap: 4rem;
    --section-bottom-gap: 4rem;
  }
}
/* box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*reset font sizes of all tags*/
* {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

/* reset font size 1rem to 10px */
html {
  font-size: 62.5%;
}

body,
html {
  height: 100%;
}

/* remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* set core body defaults */
body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background: var(--clr-neutral-100);
  font-family: var(--ff-Onest);
}

/* a elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* avoid text overflows */
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-size: inherit;
}

/* remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-size: var(--fs-100);
  line-height: 1.3;
  font-family: var(--ff-Lato);
}

/* Heading */
/* Sub Title — LG 32px */
.sub-title-lg {
  font-size: var(--fs-450);
  line-height: var(--lh-400);
}

/* Main Title — Medium 56px */
.main-title-md {
  font-size: var(--fs-800);
  line-height: 5.4rem;
}

/* Sub Title — MD 22px */
.sub-title-md {
  font-size: var(--fs-300);
  line-height: 2.5rem;
}

/* Sub Title — SM 20px */
.sub-title-sm {
  font-size: var(--fs-200);
}

/* Sub Title — XL 40px */
.sub-title-xl {
  font-size: var(--fs-600);
  line-height: var(--lh-500);
}

/* Sub desc */
.sub-desc {
  font-size: var(--fs-100);
  line-height: 2.1rem;
}

@media (min-width: 1025px) {
  /* Main Title — Large 60px) */
  .main-title-lg {
    font-size: var(--fs-900);
  }
  /* Main Title — Medium 56px */
  .main-title-md {
    font-size: var(--fs-850);
    line-height: 8.4rem;
  }
  /* Sub Title — XL 40px */
  .sub-title-xl {
    font-size: var(--fs-700);
    line-height: var(--lh-600);
  }
  /* Sub Title — LG 32px */
  .sub-title-lg {
    font-size: var(--fs-600);
    line-height: var(--lh-600);
  }
  /* Sub Title — MD 22px */
  .sub-title-md {
    font-size: var(--fs-400);
    line-height: 3.3rem;
  }
  /* Sub Title — SM 20px */
  .sub-title-sm {
    font-size: var(--fs-300);
  }
  /* Desc 20px */
  .main-desc {
    font-size: var(--fs-200);
    line-height: var(--lh-100);
  }
  /* Sub desc */
  .sub-desc {
    font-size: var(--fs-200);
    line-height: 2.7rem;
  }
}
@media (max-width: 600px) {
  /* Desc 18px */
  .main-desc {
    font-size: var(--fs-100);
    line-height: 2rem;
  }
  .sub-title-xl {
    font-size: var(--fs-600);
    line-height: var(--lh-400);
  }
  .sub-title-sm {
    font-size: var(--fs-100);
  }
  .main-title-md {
    font-size: var(--fs-600);
    line-height: 3.4rem;
  }
  .sub-title-lg {
    font-size: var(--fs-400);
    line-height: var(--lh-200);
  }
}
@media (max-width: 585px) {
  .main-title-md {
    font-size: var(--fs-400);
    line-height: 2.5rem;
  }
}
@media (max-width: 400px) {
  .main-title-md {
    font-size: var(--fs-400);
    line-height: 2.5rem;
  }
}
.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.text-neutral-200 {
  color: var(--clr-neutral-200);
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200);
}

.text-neutral-300 {
  color: var(--clr-neutral-300);
}

.bg-neutral-300 {
  background-color: var(--clr-neutral-300);
}

.text-neutral-400 {
  color: var(--clr-neutral-400);
}

.bg-neutral-400 {
  background-color: var(--clr-neutral-400);
}

.text-neutral-500 {
  color: var(--clr-neutral-500);
}

.bg-neutral-500 {
  background-color: var(--clr-neutral-500);
}

.text-neutral-600 {
  color: var(--clr-neutral-600);
}

.bg-neutral-600 {
  background-color: var(--clr-neutral-600);
}

.text-neutral-700 {
  color: var(--clr-neutral-700);
}

.bg-neutral-700 {
  background-color: var(--clr-neutral-700);
}

.text-primary-600 {
  color: var(--clr-primary-600);
}

.text-primary-500 {
  color: var(--clr-primary-500);
}

.text-neutral-400 {
  color: var(--clr-neutral-400);
}

.section-gap {
  padding: var(--section-gap) 0;
}

.section-top-gap {
  padding-top: var(--section-top-gap);
}

.section-bottom-gap {
  padding-bottom: var(--section-bottom-gap);
}

.grid {
  display: grid;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.fs-50 {
  font-size: var(--fs-50);
}

@media (min-width: 1200px) {
  .fs-xl-50 {
    font-size: var(--fs-50);
  }
}
@media (min-width: 992px) {
  .fs-lg-50 {
    font-size: var(--fs-50);
  }
}
.fs-100 {
  font-size: var(--fs-100);
}

@media (min-width: 1200px) {
  .fs-xl-100 {
    font-size: var(--fs-100);
  }
}
@media (min-width: 992px) {
  .fs-lg-100 {
    font-size: var(--fs-100);
  }
}
.fs-200 {
  font-size: var(--fs-200);
}

@media (min-width: 1200px) {
  .fs-xl-200 {
    font-size: var(--fs-200);
  }
}
@media (min-width: 992px) {
  .fs-lg-200 {
    font-size: var(--fs-200);
  }
}
.fs-300 {
  font-size: var(--fs-300);
}

@media (min-width: 1200px) {
  .fs-xl-300 {
    font-size: var(--fs-300);
  }
}
@media (min-width: 992px) {
  .fs-lg-300 {
    font-size: var(--fs-300);
  }
}
.fs-400 {
  font-size: var(--fs-400);
}

@media (min-width: 1200px) {
  .fs-xl-400 {
    font-size: var(--fs-400);
  }
}
@media (min-width: 992px) {
  .fs-lg-400 {
    font-size: var(--fs-400);
  }
}
.fs-500 {
  font-size: var(--fs-500);
}

@media (min-width: 1200px) {
  .fs-xl-500 {
    font-size: var(--fs-500);
  }
}
@media (min-width: 992px) {
  .fs-lg-500 {
    font-size: var(--fs-500);
  }
}
.fs-600 {
  font-size: var(--fs-600);
}

@media (min-width: 1200px) {
  .fs-xl-600 {
    font-size: var(--fs-600);
  }
}
@media (min-width: 992px) {
  .fs-lg-600 {
    font-size: var(--fs-600);
  }
}
.fs-700 {
  font-size: var(--fs-700);
}

@media (min-width: 1200px) {
  .fs-xl-700 {
    font-size: var(--fs-700);
  }
}
@media (min-width: 992px) {
  .fs-lg-700 {
    font-size: var(--fs-700);
  }
}
.fs-800 {
  font-size: var(--fs-800);
}

@media (min-width: 1200px) {
  .fs-xl-800 {
    font-size: var(--fs-800);
  }
}
@media (min-width: 992px) {
  .fs-lg-800 {
    font-size: var(--fs-800);
  }
}
.fs-900 {
  font-size: var(--fs-900);
}

@media (min-width: 1200px) {
  .fs-xl-900 {
    font-size: var(--fs-900);
  }
}
@media (min-width: 992px) {
  .fs-lg-900 {
    font-size: var(--fs-900);
  }
}
.radius-100 {
  border-radius: var(--radius-100);
}

.radius-200 {
  border-radius: var(--radius-200);
}

.radius-300 {
  border-radius: var(--radius-300);
}

.radius-400 {
  border-radius: var(--radius-400);
}

@media (min-width: 768px) {
  .grid--md {
    display: grid;
  }
  .grid--md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1025px) {
  .grid-xl {
    display: grid;
  }
  .grid--xl-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1200px) {
  .grid-xxl {
    display: grid;
  }
  .grid--xxl-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--xxl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--xxl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--xxl-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.mybtn {
  font-size: var(--fs-100);
  line-height: var(--lh-100);
  border-radius: var(--radius-200);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
}
.mybtn--md {
  padding: 1.4rem 2rem;
}
.mybtn--sm {
  padding: 1rem 1.2rem;
  display: block;
}
.mybtn--primary {
  background: var(--clr-primary-500);
  color: var(--clr-neutral-100);
  border: 0;
  display: inline-flex;
}
.mybtn--primary:hover {
  background-color: var(--clr-primary-700);
}
.mybtn--neutral {
  background: var(--clr-neutral-100);
  color: var(--clr-primary-500);
  border: 0;
  display: inline-flex;
}
.mybtn--neutral:hover {
  background-color: var(--clr-neutral-700);
}
.mybtn--outline {
  border: 1px solid var(--clr-neutral-100);
  border-radius: var(--radius-500);
  color: var(--clr-neutral-100);
  padding: 1.3rem 4.1rem;
}
.mybtn--link {
  font-size: var(--fs-100);
  line-height: var(--lh-100);
  color: var(--clr-primary-400);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.3s;
}
.mybtn--ic {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 992px) {
  .mybtn {
    font-size: var(--fs-100);
    line-height: var(--lh-200);
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
    height: 4.8rem;
    border-radius: var(--radius-200);
  }
  .mybtn--link {
    font-size: var(--fs-200);
    line-height: var(--lh-200);
    gap: 0.3rem;
  }
  .mybtn--md {
    padding: 1rem 2.5rem;
  }
  .mybtn--sm {
    padding: 1rem 1.4rem;
    display: block;
  }
  .mybtn--certified {
    gap: 6px;
    padding: 1.1rem 2.4rem;
  }
  .mybtn--ic {
    width: 2.4rem;
    height: 2.4rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.swiper-pagination {
  left: 0;
  display: flex;
  bottom: 3.4rem !important;
}

.swiper-pagination-bullet {
  background-color: var(--clr-neutral-100);
  opacity: 0.4;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 5rem;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 9;
  width: 3rem;
}

.myinput {
  min-height: 6rem;
  display: flex;
  align-items: center;
  padding: 2rem 3.5rem;
  font-weight: 300;
  border-radius: 2rem;
}

.datetime-box {
  position: relative;
  display: flex;
  align-items: center;
  height: 4.1rem;
  gap: 1rem;
  background: var(--clr-neutral-100);
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  border-radius: 0px 0px 8px 8px;
  border: 3px solid transparent;
  -o-border-image: url("../img/gredient-border-image.svg") 3 fill;
     border-image: url("../img/gredient-border-image.svg") 3 fill;
  background-clip: padding-box, border-box;
  font-size: var(--fs-50);
  line-height: 2.1rem;
  font-weight: 600;
  color: var(--clr-primary-600);
  width: -moz-fit-content;
  width: fit-content;
}
.datetime-box__divider {
  width: 2px;
  height: 4.1rem;
  background-color: var(--clr-neutral-800);
  display: block;
}
.datetime-box__date, .datetime-box__time {
  color: var(--clr-primary-600);
  white-space: nowrap;
  font-size: var(--fs-50);
}
.datetime-box--inner {
  border-radius: 0px 0px 4px 4px;
  border: 1px solid transparent;
  -o-border-image: url("../img/inner-page-date-time.svg") 1 fill;
     border-image: url("../img/inner-page-date-time.svg") 1 fill;
}

.breadcrumb-wrapper {
  position: sticky;
  transition: all 0.3s ease;
  top: 8.7rem;
  z-index: 1;
}
.breadcrumb-wrapper .breadcrumb {
  position: relative;
  width: 100%;
  height: 25.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-neutral-100);
  margin-bottom: 0;
}
.breadcrumb-wrapper .breadcrumb__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.breadcrumb-wrapper .breadcrumb__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.breadcrumb-wrapper .breadcrumb__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(44, 52, 131, 0.7), rgba(44, 52, 131, 0.7));
  z-index: 1;
}
.breadcrumb-wrapper .breadcrumb__bg::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background: url("../img/top-border.svg") no-repeat bottom/cover;
  z-index: 1;
}
.breadcrumb-wrapper .breadcrumb__content {
  position: relative;
  z-index: 2;
}
.breadcrumb-wrapper .breadcrumb__title {
  margin-bottom: 2rem;
}
.breadcrumb-wrapper .breadcrumb__divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.6rem;
}
.breadcrumb-wrapper .breadcrumb__divider .breadcrumb__line {
  height: 1px;
  width: 140px;
}
.breadcrumb-wrapper .breadcrumb__divider .breadcrumb__line--left {
  margin-right: 10px;
}
.breadcrumb-wrapper .breadcrumb__divider .breadcrumb__line--right {
  margin-left: 10px;
}
.breadcrumb-wrapper .breadcrumb__divider-image {
  width: 54.2rem;
}
.breadcrumb-wrapper .breadcrumb__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  flex-wrap: wrap;
}
.breadcrumb-wrapper .breadcrumb__link {
  color: var(--clr-neutral-100);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.breadcrumb-wrapper .breadcrumb__link:hover {
  color: var(--clr-neutral-200);
}
.breadcrumb-wrapper .breadcrumb__link--active {
  font-weight: 500;
}
.breadcrumb-wrapper .breadcrumb__separator {
  margin: 0 10px;
  font-size: 20px;
}

@media (max-width: 991px) {
  .breadcrumb__title {
    margin-bottom: 1.5rem;
  }
  .breadcrumb__divider-image {
    width: 40.2rem;
  }
  .breadcrumb__nav {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .breadcrumb-wrapper {
    position: static;
    margin: 7rem 0 0;
  }
}
.scrolltop {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateX(-50%);
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: var(--clr-primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: none;
  z-index: 999999;
}
.scrolltop--show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .scrolltop {
    right: -1rem;
    top: 92%;
  }
}
@media (max-width: 600px) {
  .scrolltop {
    right: -1rem;
    top: 92%;
    width: 3.5rem;
    height: 3.5rem;
  }
}
.footer {
  padding: 4rem 0;
  background-color: var(--clr-primary-500);
  color: var(--clr-neutral-100);
  /* Responsive sweetness */
}
.footer__brand {
  max-width: 434px;
}
.footer__logo {
  max-width: 23.7rem;
  margin-bottom: 3.2rem;
}
.footer__text {
  font-size: var(--fs-100);
  line-height: var(--lh-100);
  font-weight: 500;
}
.footer__links {
  width: 80%;
  margin: 0 auto;
}
.footer__title {
  font-size: var(--fs-300);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.footer__title::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background: var(--clr-neutral-100);
  display: block;
  margin-top: 0.8rem;
}
.footer__list {
  padding: 0;
  margin: 0;
}
.footer__list li {
  list-style: none;
  margin-bottom: 1.6rem;
}
.footer__link {
  text-decoration: none;
  transition: 0.2s;
  color: var(--clr-neutral-100);
  font-size: var(--fs-100);
  line-height: var(--lh-100);
}
.footer__link:hover {
  padding-left: 2px;
}
.footer__bottom {
  background-color: var(--clr-primary-200);
  padding: 1.6rem 4rem;
  border-radius: var(--radius-100);
  margin-top: 6.4rem;
}
.footer__info {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 1.6rem;
  line-height: var(--lh-100);
}
.footer__info .footer__icon {
  position: absolute;
  left: 0;
  top: 0;
}
.footer__divider {
  border-color: rgba(255, 255, 255, 0.2);
}
.footer__copy {
  font-size: var(--fs-100);
  line-height: var(--lh-100);
  font-weight: 500;
}
.footer__social {
  display: flex;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.footer__social a {
  transition: all 0.3s ease;
  transform: scale(1);
  opacity: 1;
}
.footer__social a:hover {
  opacity: 0.7;
  transform: scale(1.05);
}
@media (max-width: 1199px) {
  .footer .footer__links {
    width: 100%;
    margin: 0 auto;
  }
  .footer .footer__logo {
    max-width: 100%;
    margin-bottom: 2.2rem;
  }
  .footer .footer__title::after {
    display: none;
  }
  .footer .footer__brand {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
  .footer .footer__bottom {
    margin-top: 3.4rem;
  }
}
@media (max-width: 1024px) {
  .footer .footer__brand {
    max-width: 100%;
  }
  .footer .footer__links {
    width: 100%;
    margin: 0 auto;
  }
  .footer .footer__bottom {
    padding: 1.6rem 2rem;
  }
  .footer .footer__info {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .footer__title {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__social {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
  .footer .footer__brand {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .footer .footer__info {
    max-width: 100%;
  }
  .footer .footer__bottom {
    margin-top: 2rem;
  }
}

header {
  z-index: 99;
  background-color: var(--clr-neutral-100);
}

.navigation {
  padding: 1.6rem 2.5rem;
  position: fixed;
  top: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  .navigation {
    padding: 1.6rem 0.5rem;
  }
}
@media (max-width: 991px) {
  .navigation {
    padding: 1rem 0;
  }
}
.navigation .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 100%;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
nav ul li {
  position: relative;
  /* DROPDOWN */
}
nav ul li a {
  display: flex;
  color: var(--clr-neutral-400);
  text-decoration: none;
  transition: 0.3s ease;
  align-items: center;
  -moz-column-gap: 0.9rem;
       column-gap: 0.9rem;
}
nav ul li .dropdown-toggles {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.9rem;
       column-gap: 0.9rem;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  color: var(--clr-neutral-400);
}
nav ul li .nav-dropdown {
  position: absolute;
  top: 3.5rem;
  left: 0;
  padding: 1.2rem 1rem;
  width: 27.32rem;
  background: var(--clr-neutral-100);
  display: none;
  flex-direction: column;
  border-radius: 0.8rem;
  border: 1px solid var(--clr-neutral-600);
  z-index: 10;
}
nav ul li .nav-dropdown.what-we-do-dropdown {
  width: 28.32rem;
}
nav ul li .nav-dropdown li a {
  padding: 1.1rem 1rem;
  font-size: var(--fs-100);
  line-height: 2.3rem;
  border-radius: 0.8rem;
}
nav ul li .nav-dropdown li a:hover {
  background: var(--clr-neutral-600);
  color: var(--clr-primary-600);
}
nav ul li .nav-dropdown.show {
  display: flex !important;
}
nav .nav-list {
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media (max-width: 1199px) {
  nav .nav-list {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media (max-width: 991px) {
  nav .nav-list {
    display: none;
    background-color: var(--clr-neutral-100);
    padding: 0 0 1.5rem;
  }
}

.nav-mobile {
  display: none;
  height: 5rem;
  width: 5rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .nav-mobile {
    display: flex;
  }
}
.nav-mobile #nav-toggle {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.nav-mobile #nav-toggle span,
.nav-mobile #nav-toggle span:before,
.nav-mobile #nav-toggle span:after {
  position: absolute;
  width: 3.5rem;
  height: 0.3rem;
  background: var(--clr-primary-100);
  border-radius: 1rem;
  content: "";
  transition: 300ms ease;
}
.nav-mobile #nav-toggle span {
  top: 10px;
}
.nav-mobile #nav-toggle span:before {
  top: -10px;
}
.nav-mobile #nav-toggle span:after {
  top: 10px;
}
.nav-mobile #nav-toggle.active span {
  background: transparent;
}
.nav-mobile #nav-toggle.active span:before,
.nav-mobile #nav-toggle.active span:after {
  top: 0;
}
.nav-mobile #nav-toggle.active span:before {
  transform: rotate(45deg);
}
.nav-mobile #nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media (max-width: 1450px) {
  .navigation {
    padding: 1.6rem 0rem;
  }
}
@media (max-width: 991px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    left: 0;
  }
  nav ul .dropdown-toggles {
    padding: 15px;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li .nav-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0 0.5rem;
  }
  nav ul li .nav-dropdown li a {
    padding-left: 30px;
  }
  nav ul li .nav-dropdown li a:hover {
    background-color: transparent;
  }
  nav ul li .what-we-do-dropdown {
    width: 100%;
  }
  nav ul li .what-we-do-dropdown li a:hover {
    background-color: transparent;
  }
}
@media (max-width: 600px) {
  .navigation {
    padding: 1rem 0;
  }
  .brand img {
    width: 70%;
  }
  nav ul li .nav-dropdown li a {
    padding-left: 30px;
    padding: 0.8rem 1.4rem;
  }
}
.container {
  max-width: min(163.1rem, 100% - 1.2rem);
  margin: 0 auto;
}

.container-fluid {
  max-width: min(139rem, 100% - 1.2rem);
}

.custom-container {
  max-width: 123.2rem;
  margin: 0 auto;
}

@media (max-width: 1700px) {
  .container {
    max-width: min(163.1rem, 100% - 3.4rem);
  }
  .container-fluid {
    max-width: min(139rem, 100% - 2.3rem);
  }
  .custom-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1199px) {
  .custom-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: min(163.1rem, 100% - 2.3rem);
  }
  .container-fluid {
    max-width: min(139rem, 100% - 2.3rem);
  }
  .custom-container {
    padding: 0 1.2rem;
  }
}
.hero {
  position: relative;
  margin: 8.7rem 0 0;
}
.hero__slide {
  height: 90vh;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 52, 131, 0.7), rgba(44, 52, 131, 0.7));
  z-index: 1;
}
.hero__content-wrapper {
  position: absolute;
  width: 100%;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  color: var(--clr-neutral-100);
}
.hero__title-desc {
  max-width: 55%;
  margin: 0 auto;
}
.hero__title {
  margin-bottom: 1.5rem;
}
.hero__text {
  margin-bottom: 2rem;
  line-height: 3rem;
}
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}
.hero__nav--prev {
  left: 8rem;
}
.hero__nav--next {
  right: 8rem;
}

.whatwedo {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}
.whatwedo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30rem;
  height: 30rem;
  background: url("../img/what-we-do-top-right-decor.svg") top right no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}
.whatwedo::before {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 0;
  width: 30rem;
  height: 30rem;
  background: url("../img/what-we-do-bottom-left-decor.svg") bottom left no-repeat;
  opacity: 1;
  pointer-events: none;
}
.whatwedo .content-box {
  margin-bottom: 5.6rem;
}
.whatwedo .partners .content-box {
  margin-bottom: 2.4rem;
}
.whatwedo__grid {
  gap: 2.4rem;
  text-align: center;
}
.whatwedo .whatwedo-card {
  border: 1px solid var(--clr-neutral-200);
  padding: 3.2rem 1.6rem;
  background: var(--clr-neutral-100);
  border-radius: 0.8rem;
  transition: all 0.4s ease-in-out;
  position: relative;
  background-clip: padding-box;
  height: 100%;
}
.whatwedo .whatwedo-card:hover {
  border: 1px solid transparent;
  background: linear-gradient(var(--clr-neutral-100), var(--clr-neutral-100)) padding-box, linear-gradient(180deg, #EF8E21 0%, #282D6A 39.85%, #A62A90 65.93%, #17BAAD 100%) border-box;
}
.whatwedo .whatwedo-card img {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2.4rem;
  display: block;
}
.whatwedo .whatwedo-card__title {
  min-height: 6.6rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.whatwedo .whatwedo-card p {
  color: var(--clr-neutral-400);
  margin-bottom: 2.4rem;
}
.whatwedo .whatwedo-card__link {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  font-weight: bold;
  color: var(--clr-primary-500);
}

.russell-bedford-world {
  position: relative;
  color: var(--clr-neutral-100);
}
.russell-bedford-world h3 {
  margin-bottom: 4rem;
}
.russell-bedford-world__video-wrapper {
  height: 46.6rem;
  width: 100%;
  overflow: hidden;
}
.russell-bedford-world__video-wrapper video {
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.russell-bedford-world::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(44, 52, 131, 0.7) 0%, rgba(44, 52, 131, 0.7) 100%);
}
.russell-bedford-world::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 100%;
  height: 0.6rem;
  background: url("../img/top-border.svg") no-repeat bottom/cover;
  z-index: 2;
}
.russell-bedford-world__content {
  position: absolute;
  z-index: 3;
  width: 100%;
  padding: 12rem 0;
  top: 0;
}
.russell-bedford-world__border {
  width: 100%;
  height: 0.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.russell-bedford-world__title-sub-title {
  text-align: center;
}
.russell-bedford-world__title-sub-title h4 {
  font-size: 6.4rem;
  line-height: 9.6rem;
  font-weight: bold;
}

.partners .custom-container {
  position: relative;
}
.partners .custom-container::before, .partners .custom-container::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}
.partners .custom-container::before {
  left: 1.4rem;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}
.partners .custom-container::after {
  right: 1.4rem;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}
.partners .content-box {
  margin-bottom: 6.4rem;
}
.partners .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
.partners .partners__img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.8;
  width: 90%;
  transition: all 0.3s ease;
}
.partners .partners__img:hover {
  filter: grayscale(100%);
}

.home-datetime {
  position: relative;
}
.home-datetime .datetime-box {
  z-index: 3;
  top: 0;
  position: absolute !important;
}

.content-box h3 {
  margin-bottom: 0.8rem;
}
.content-box img {
  width: 42.2rem;
  margin: 0 auto;
}

.cta {
  width: 100%;
  padding: 8rem 0;
  display: flex;
  justify-content: center;
}
.cta .cta__content-wrapper {
  max-width: 63rem;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  margin-bottom: 3.2rem;
}
.cta__title .cta__highlight--orange {
  color: var(--clr-orange-100);
}
.cta__title .cta__highlight--purple {
  color: var(--clr-purple-100);
}

.consulting-page-wrapper .whatwedo::before {
  display: none;
}
.consulting-page-wrapper .whatwedo::after {
  display: none;
}
.consulting-page-wrapper .whatwedo .whatwedo-card__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* only 3 lines show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .hero__text {
    margin-bottom: 2rem;
    line-height: 2.2rem;
  }
  .hero__slide {
    height: 75vh;
  }
  .whatwedo .whatwedo-card__title {
    min-height: auto;
    font-weight: bold;
    margin-bottom: 1.6rem;
  }
  .russell-bedford-world__title-sub-title h4 {
    font-size: 4.4rem;
    line-height: 6.6rem;
  }
  .russell-bedford-world__content {
    padding: 14.5rem 0;
  }
}
@media (max-width: 991px) {
  .russell-bedford-world__content {
    padding: 15rem 0;
  }
  .whatwedo .content-box {
    margin-bottom: 4.6rem;
  }
  .whatwedo .whatwedo-card img {
    width: 7rem;
    height: 7rem;
  }
  .partners .content-box {
    margin-bottom: 2.4rem;
  }
  .cta {
    padding: 4rem 0;
  }
  .whatwedo {
    padding: 4rem 0;
  }
  .hero__slide {
    height: 55vh;
  }
  .hero__nav--prev {
    left: 4rem;
  }
  .hero__nav--next {
    right: 4rem;
  }
  .hero__title-desc {
    max-width: 70%;
    margin: 0 auto;
  }
  .russell-bedford-world__title-sub-title h4 {
    font-size: 3.4rem;
    line-height: 5.6rem;
  }
}
@media (max-width: 820px) {
  .hero__title-desc {
    max-width: 90%;
    margin: 0 auto;
  }
  .hero__nav--prev {
    left: 1.1rem;
  }
  .hero__nav--next {
    right: 1.1rem;
  }
}
@media (max-width: 768px) {
  .russell-bedford-world__content {
    padding: 15rem 0;
  }
  .cta__title {
    margin-bottom: 2.2rem;
  }
  .cta__button {
    padding: 1.2rem 2.4rem;
    font-size: calc(var(--fs-sub-title-sm) - 2px);
  }
}
@media (max-width: 600px) {
  .whatwedo .content-box {
    margin-bottom: 3.6rem;
  }
  .partners .custom-container::before {
    left: 1.1rem;
  }
  .partners .custom-container::after {
    right: 1.1rem;
  }
  .whatwedo .whatwedo-card img {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
  }
  .content-box img {
    width: 28.2rem;
    margin: 0 auto;
  }
  .hero {
    margin: 7rem 0 0;
  }
  .hero__title-desc {
    max-width: 90%;
    margin: 0 auto;
  }
  .hero__nav--prev {
    left: 0rem;
  }
  .hero__arrow svg {
    width: 2.6rem;
    height: 2.6rem;
  }
  .hero__text {
    margin-bottom: 2rem;
    line-height: 2rem;
  }
  .hero__nav--next {
    right: 0rem;
  }
  .hero__slide {
    height: 55vh;
  }
  .cta__title br {
    display: none;
  }
  .whatwedo::after {
    content: "";
    width: 12rem;
    height: 12rem;
    background-size: contain;
  }
  .whatwedo::before {
    content: "";
    bottom: -2rem;
    left: -2rem;
    width: 16rem;
    height: 16rem;
    background-size: cover;
  }
  .russell-bedford-world h3 {
    margin-bottom: 2rem;
  }
  .russell-bedford-world__video-wrapper {
    height: 38.5rem;
    width: 100%;
    overflow: hidden;
  }
  .russell-bedford-world__title-sub-title h4 {
    font-size: 3.4rem;
    line-height: 5.6rem;
  }
  .russell-bedford-world__content {
    padding: 8.5rem 0;
  }
  .russell-bedford-world__title-sub-title {
    margin-bottom: 2rem;
  }
  .datetime-box {
    height: 4rem;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    border-radius: 0px 0px 8px 8px;
    border: 2px solid transparent;
    -o-border-image: url("../img/gredient-border-image.svg") 3 fill;
    border-image: url("../img/gredient-border-image.svg") 3 fill;
    background-clip: padding-box, border-box;
    line-height: 1.2rem;
    font-weight: 500;
  }
  .datetime-box__divider {
    width: 1px;
    height: 4rem;
  }
  .datetime-box__date, .datetime-box__time {
    font-size: 1.2rem;
  }
}
@media (max-width: 430px) {
  .russell-bedford-world__content {
    padding: 6.5rem 0;
  }
}
@media (max-width: 414px) {
  .russell-bedford-world__content {
    padding: 6.5rem 0;
  }
}
@media (max-width: 400px) {
  .russell-bedford-world__content {
    padding: 6.3rem 0;
  }
}
@media (max-width: 390px) {
  .hero__slide {
    height: 70vh;
  }
}
.advisory-desc {
  position: relative;
  margin-top: 8.7rem;
}
.advisory-desc__content {
  color: var(--clr-neutral-400);
}
.advisory-desc__content p {
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-size: var(--fs-200);
  line-height: 2.7rem;
}
.advisory-desc__bottom-border {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.counter .content-box {
  margin-bottom: 1.6rem;
}
.counter .content-box img {
  width: 42.2rem;
  margin: 0;
}
.counter__title {
  margin-bottom: 1.6rem;
}
.counter__grid {
  -moz-column-gap: 10.4rem;
       column-gap: 10.4rem;
  row-gap: 8rem;
}
.counter__grid--tax {
  -moz-column-gap: 5rem;
  column-gap: 5rem;
}
.counter__grid--audit-assurance {
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}
.counter__grid--business-advisory {
  -moz-column-gap: 6.5rem;
  column-gap: 6.5rem;
}
.counter__grid--why-russell {
  -moz-column-gap: 5rem;
  column-gap: 5rem;
}
.counter__item {
  display: flex;
  align-items: flex-start;
  gap: 6.4rem;
}
.counter__number {
  font-size: var(--fs-950);
  line-height: 9.4rem;
  font-weight: 700;
  color: var(--clr-primary-500);
  -webkit-text-stroke: 2px var(--clr-primary-500);
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  position: relative;
}
.counter__number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.2rem;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--clr-orange-100);
  border-radius: 50px;
}
.counter__content {
  flex: 1;
}
.counter__title {
  color: var(--clr-primary-600);
}
.counter__text {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: var(--clr-neutral-400);
  font-weight: 400;
}

.accounting-advisory-page-wrapper .breadcrumb__bg::after {
  display: none;
}

.consulting-page-wrapper .whatwedo {
  margin-top: 8.7rem;
}

@media (max-width: 1280px) {
  .counter__grid {
    -moz-column-gap: 5.4rem;
    column-gap: 5.4rem;
  }
  .counter__item {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 6.4rem;
         column-gap: 6.4rem;
  }
  .counter__number::after {
    content: "";
    right: -2.7rem;
  }
}
@media (max-width: 1199px) {
  .counter__number {
    font-size: var(--fs-900);
    line-height: 6rem;
  }
  .counter__grid {
    -moz-column-gap: 5.4rem;
    column-gap: 5.4rem;
  }
  .counter__title {
    font-size: var(--fs-450);
    line-height: 3.1rem;
  }
}
@media (max-width: 991px) {
  .counter__grid {
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    row-gap: 4rem;
  }
  .advisory-desc__content p {
    font-size: var(--fs-100);
    line-height: 2.3rem;
  }
}
@media (max-width: 600px) {
  .advisory-desc {
    margin-top: 0;
  }
  .consulting-page-wrapper .whatwedo {
    margin-top: 0;
  }
  .counter__title {
    font-size: var(--fs-400);
    line-height: var(--lh-200);
  }
  .counter .content-box img {
    width: 100%;
  }
  .counter__text {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .counter__item {
    gap: 1.5rem;
    gap: 1.5rem;
    flex-direction: column;
  }
  .counter__number::after {
    display: none;
  }
  .counter__title {
    margin-bottom: 1.5rem;
  }
}
.our-clients__grid {
  display: grid;
  gap: 4rem 2.4rem;
}
.our-clients__card {
  border-radius: 1.6rem;
  border: 1px solid var(--clr-neutral-200);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.7rem;
  height: 100%;
  height: 29rem;
  width: 29rem;
}
.our-clients__card img {
  width: 100%;
  height: 23.9rem;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .our-clients__grid {
    gap: 4rem 2.4rem;
  }
  .our-clients__card {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .our-clients__grid {
    gap: 2.4rem 2.4rem;
  }
}
.our-team__grid {
  margin-top: 5.6rem;
  gap: 3.2rem 2.4rem;
}
.our-team__grid-item img {
  width: 30rem;
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 2.4rem;
}
.our-team__grid-item__content h3 {
  margin-bottom: 0.8rem;
}
.our-team__grid-item__content p {
  margin-bottom: 1.2rem;
}
.our-team__grid-item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
  font-weight: bold;
  color: var(--clr-primary-500);
  margin-top: 2.4rem;
}
.our-team__grid-item__link span svg {
  transition: 0.3s ease;
}
.our-team__grid-item__link:hover span svg {
  transform: translateX(5px);
}

.team-details__img {
  width: 40rem;
  height: 40rem;
}
.team-details__content h3 {
  margin-bottom: 1.6rem;
}
.team-details__partner-type {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.team-details__linkedin {
  margin: 2.4rem 0;
}

@media (max-width: 1199px) {
  .team-details__img {
    width: 100%;
    height: auto;
  }
  .team-details__content {
    margin-left: 3rem;
  }
}
@media (max-width: 991px) {
  .team-details__content {
    margin-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .team-details__img {
    display: flex;
    justify-content: center;
  }
  .team-details__linkedin {
    margin: 1.6rem 0;
  }
  .team-details__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
    margin-left: 0;
  }
  .team-details__content p {
    text-align: center;
  }
  .team-details__partner-type {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .team-details__linkedin {
    margin: 1.1rem 0;
  }
  .team-details__partner-type {
    font-size: 1.8rem;
    margin-bottom: 1.1rem;
  }
  .team-details__content h3 {
    margin-bottom: 1.1rem;
  }
}
.profile__grid {
  gap: 2.4rem;
}
.profile__card {
  border-radius: 1.6rem;
  border: 1px solid var(--clr-neutral-200);
  padding: 2.4rem 1.2rem;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.profile__card-icon {
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 0.7rem;
  background-color: var(--clr-neutral-200);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.4rem;
}
.profile__title {
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(-clr-primary-600);
}
.profile__text {
  margin-bottom: 3.2rem;
  color: var(--clr-neutral-400);
}
.profile__bottom-border {
  padding-top: 8rem;
}
.profile__bottom-border img {
  width: 100%;
  height: 0.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .profile__bottom-border {
    padding-top: 4rem;
  }
}
@media (max-width: 600px) {
  .profile__grid {
    gap: 1.5rem;
  }
  .profile__card {
    padding: 2rem 1.2rem;
  }
  .profile__card-icon {
    height: 5.5rem;
    width: 5.5rem;
    margin-bottom: 1.5rem;
  }
  .profile__title {
    margin-bottom: 0.8rem;
    font-weight: 500;
  }
  .profile__text {
    margin-bottom: 2.2rem;
  }
  .profile__bottom-border img {
    height: 0.4rem;
  }
}
.accreditations__item {
  overflow: hidden;
  border: 1px solid var(--clr-neutral-500);
  border-radius: 1rem;
  padding: 1.44rem 2.4rem;
  margin-bottom: 3.2rem;
}
.accreditations__item:last-child {
  margin-bottom: 0;
}
.accreditations__title {
  font-size: 2.2rem;
  line-height: 3.3rem;
  font-weight: bold;
}
.accreditations__desc {
  margin-top: 0;
  transition: margin 0.3s ease;
  font-size: 1.8rem;
  line-height: 2.7rem;
}
.accreditations__item.open .accreditations__desc {
  margin-top: 1.6rem;
}
.accreditations__item.open .accreditations__logos {
  margin: 1.2rem 0;
}
.accreditations__logos--kuwait-capital-market {
  width: 36.3rem;
  height: 12.7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.accreditations__logos--cbk-logo {
  width: 12.75rem;
  height: 12.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.accreditations__logos--mof-logo {
  width: 10.2rem;
  height: 12.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.accreditations__logos--iru-logo {
  width: 14rem;
  height: 12.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.accreditations__logos--forum-of-firms-logo {
  width: 36.3rem;
  height: 12.6rem;
}
.accreditations__header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}
.accreditations__toggle {
  background: transparent;
  border: none;
  font-size: 3rem;
  cursor: pointer;
}
.accreditations__desc, .accreditations__logos {
  height: auto;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (max-width: 767px) {
  .accreditations__item {
    padding: 1.44rem 1.44rem;
  }
  .accreditations__title {
    font-size: 2rem;
    line-height: 4rem;
    font-weight: bold;
  }
  .accreditations__desc {
    margin-top: 0;
    transition: margin 0.3s ease;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .accreditations__item.open .accreditations__desc {
    margin-top: 1rem;
  }
  .accreditations__item.open .accreditations__logos {
    margin: 1rem 0;
  }
}
@media (max-width: 600px) {
  .accreditations__item {
    padding: 1.44rem 1.44rem;
  }
  .accreditations__title {
    line-height: 2.5rem;
  }
  .accreditations__item.open .accreditations__desc {
    margin-top: 0.5rem;
  }
  .accreditations__item.open .accreditations__logos {
    margin: 1.3rem 0 0;
  }
  .accreditations__header {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .accreditations__logos--kuwait-capital-market {
    width: 25.3rem;
    height: auto;
  }
  .accreditations__logos--cbk-logo {
    width: 10.75rem;
    height: auto;
  }
  .accreditations__logos--mof-logo {
    width: 10.2rem;
    height: auto;
  }
  .accreditations__logos--iru-logo {
    width: 14rem;
    height: auto;
  }
  .accreditations__logos--forum-of-firms-logo {
    width: 25rem;
    height: auto;
  }
}
.contact-info {
  padding: var(--section-gap) 0;
  background: var(--clr-neutral-100);
}
.contact-info__grid {
  -moz-column-gap: 5.6rem;
       column-gap: 5.6rem;
  row-gap: 2.3rem;
}
.contact-info__item {
  display: flex;
  align-items: start;
  gap: 2.4rem;
}
.contact-info__icon {
  width: 6.4rem;
  height: 6.4rem;
  background: var(--clr-neutral-200);
  border-radius: var(--radius-400);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 3.9rem;
  height: 3.9rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-info__content {
  max-width: 20rem;
  flex-shrink: 0;
}
.contact-info__title {
  margin-bottom: 1.6rem;
  font-weight: bold;
}
.contact-info__address {
  color: var(--clr-neutral-400);
  line-height: 2.4rem;
  font-weight: 500;
}
.contact-info__text {
  color: var(--clr-neutral-400);
  line-height: 2.4rem;
  transition: all 0.4s ease;
  font-weight: 500;
}
.contact-info__text:hover {
  color: var(--clr-primary-600);
}

.contact-form-sec {
  border-top: 1px solid var(--clr-neutral-200);
}
.contact-form-sec .content-box__head img {
  width: 25.8rem;
}
.contact-form-sec .content-box p {
  margin-bottom: 1.6rem;
}
.contact-form-sec .content-box__social {
  margin-top: 4rem;
}
.contact-form-sec .content-box__social h3 {
  margin-bottom: 4rem;
}
.contact-form-sec .content-box__social ul {
  display: flex;
  gap: 1rem 3.2rem;
  flex-wrap: wrap;
}
.contact-form-sec .content-box__social ul li {
  border: 1px solid var(--clr-neutral-200);
  border-radius: 2rem;
  padding: 1.625rem 1.625rem;
  flex-shrink: 0;
}
.contact-form-sec .contact-form {
  width: 100%;
  max-width: 650px;
  padding: 2.4rem 2.4rem;
  margin: 0 auto;
  background: var(--clr-neutral-100);
  border-radius: var(--radius-400);
  box-shadow: 0px 6px 14.9px 1px rgba(44, 52, 131, 0.1);
}
.contact-form-sec .contact-form__group {
  margin-bottom: 1.6rem;
}
.contact-form-sec .contact-form__label {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: var(--clr-primary-100);
  font-weight: bold;
}
.contact-form-sec .contact-form__input-wrapper {
  display: flex;
  align-items: center;
  border-radius: var(--radius-200);
  padding: 1.8rem 1.2rem;
  border: 1px solid var(--clr-neutral-950);
}
.contact-form-sec .contact-form__icon {
  margin-right: 1rem;
  opacity: 0.6;
}
.contact-form-sec .contact-form__input, .contact-form-sec .contact-form__textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  outline: none;
  color: var(--clr-primary-100);
}
.contact-form-sec .contact-form ::-moz-placeholder {
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: var(--clr-neutral-400);
}
.contact-form-sec .contact-form ::placeholder {
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: var(--clr-neutral-400);
}
.contact-form-sec .contact-form__textarea {
  min-height: 11.2rem;
  resize: none;
  padding: 1.8rem 1.2rem;
  border: 1px solid var(--clr-neutral-200);
  border-radius: var(--radius-200);
}
.contact-form-sec .contact-form .mybtn {
  width: 14.8rem;
  margin: 3.2rem auto 0;
}

.our-location {
  z-index: 1;
}
.our-location__map {
  height: 50.16rem;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.our-location .content-box {
  margin-bottom: 4rem;
}
.our-location .content-box__head img {
  width: 25.8rem;
}
.our-location .content-box h3 {
  margin-bottom: 1.6rem;
}
.our-location .map-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-location .map-marker__address {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 600;
  color: #1f255d;
  margin-bottom: 8px;
  white-space: pre-line;
}
.our-location .map-marker__pin {
  width: 44px;
  height: 44px;
  animation: map-marker-bounce 1.6s infinite;
  z-index: 10;
}
.our-location .map-marker__pin svg {
  width: 100%;
  height: 100%;
}

@keyframes map-marker-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  60% {
    transform: scale(1.1);
  }
}
@media (max-width: 1199px) {
  .contact-info__grid {
    -moz-column-gap: 2.6rem;
         column-gap: 2.6rem;
  }
  .contact-info__item {
    gap: 1.4rem;
  }
  .contact-info__content {
    max-width: 73%;
    flex-shrink: 0;
  }
}
@media (max-width: 991px) {
  .contact-form-sec .contact-form {
    width: 100%;
    max-width: 100%;
    margin-top: 3.2rem;
  }
  .contact-form-sec .contact-form .mybtn {
    width: 14.8rem;
    margin: 1.2rem auto 0;
  }
  .contact-form-sec .content-box {
    margin-bottom: 0;
  }
  .our-location .content-box {
    margin-bottom: 3rem;
  }
}
@media (max-width: 600px) {
  .contact-form-sec .contact-info__address {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .contact-form-sec .contact-info__item {
    gap: 1.4rem;
  }
  .contact-form-sec .contact-info__icon {
    height: 5.4rem;
    width: 5.4rem;
  }
  .contact-form-sec .contact-info__icon svg {
    width: 2.9rem;
    height: 2.9rem;
  }
  .contact-form-sec .contact-info__title {
    margin-bottom: 1rem;
  }
  .contact-form-sec .contact-info__content {
    max-width: 80%;
    flex-shrink: 0;
  }
  .contact-form-sec .content-box__social {
    margin-bottom: 1.6rem;
  }
  .contact-form-sec .content-box__social ul {
    gap: 2.2rem 2.2rem;
  }
  .contact-form-sec .content-box__social ul li {
    padding: 1.5rem 1.5rem;
    border-radius: 1rem;
  }
  .contact-form-sec .content-box__social ul li svg {
    width: 3.2rem;
    height: 3.2rem;
  }
  .contact-form-sec .content-box h3 {
    margin-bottom: 2rem;
  }
  .contact-form-sec .contact-form {
    margin-top: 1.2rem;
  }
  .contact-form-sec .contact-form__input-wrapper {
    padding: 1.2rem 1.2rem;
  }
  .contact-form-sec .contact-form__textarea {
    min-height: 9.2rem;
    padding: 1.2rem 1.2rem;
  }
  .contact-form-sec .contact-form .mybtn {
    margin-top: 0;
    width: 12.8rem;
  }
  .our-location__map {
    height: auto;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .our-location .content-box {
    margin-bottom: 3rem;
  }
  .our-location .content-box h3 {
    margin-bottom: 1.2rem;
  }
  .contact-info__title {
    margin-bottom: 0.5rem;
  }
  .contact-info__item {
    gap: 1.5rem;
  }
  .contact-info__icon {
    width: 5.4rem;
    height: 5.4rem;
    border-radius: var(--radius-300);
  }
  .contact-info__icon svg {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 390px) {
  .our-location__map {
    aspect-ratio: 0.8/0.8;
    height: auto;
  }
}
.our-vision .content-box h3 {
  margin-bottom: 1.6rem;
}
.our-vision .content-box__decs {
  max-width: 70.11rem;
  margin: 0 auto;
  margin-top: 5rem;
}
.our-vision .content-box img {
  height: 2.4rem;
}

.goals {
  height: 63.9rem;
  position: relative;
  padding: var(--section-gap) 0;
  background: url("../img/goal-bg.webp") no-repeat center/cover;
}
.goals__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(166, 42, 144, 0.81) 0%, rgba(40, 45, 106, 0.9) 100%);
}
.goals__title {
  color: var(--clr-neutral-100);
}
.goals .container,
.goals .row,
.goals .col-lg-4,
.goals .col-lg-8 {
  position: relative;
}
.goals__content {
  position: relative;
}
.goals__circle {
  width: 47rem;
  height: 47rem;
  border: 0.89px solid rgba(255, 255, 255, 0.89);
  border-radius: 50%;
  margin-left: auto;
  position: relative;
}
.goals__circle-item {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  padding: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.goals__circle-item img {
  width: 4rem;
  height: 4rem;
  transition: opacity 0.5s ease-in-out;
}
.goals__circle-item--1 {
  top: 6rem;
  left: 1.5rem;
  background: var(--clr-orange-100);
}
.goals__circle-item--1:hover {
  background: var(--clr-orange-200);
}
.goals__circle-item--2 {
  top: 4rem;
  right: 4rem;
  background: var(--clr-teal-100);
}
.goals__circle-item--2:hover {
  background: var(--clr-teal-200);
}
.goals__circle-item--3 {
  top: 50%;
  right: -3rem;
  background: var(--clr-purple-200);
}
.goals__circle-item--3:hover {
  background: var(--clr-purple-300);
}
.goals__circle-item--4 {
  bottom: -31px;
  left: 41.5%;
  background: var(--clr-primary-300);
}
.goals__circle-item--4:hover {
  background: var(--clr-primary-800);
}
.goals__circle-item--5 {
  top: 70%;
  left: 4%;
  transform: translate(-50%, -50%);
  background-color: var(--clr-blue-100);
}
.goals__circle-item--5:hover {
  background: var(--clr-blue-200);
}
.goals__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 35.3rem;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.goals__text.fade {
  opacity: 0.6;
}
.goals__heading {
  color: var(--clr-neutral-100);
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.goals__desc {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--clr-neutral-100);
  font-size: var(--fs-200);
  line-height: var(--lh-300);
  transition: color 0.3s;
}
.goals .goals__heading,
.goals .goals__desc {
  transition: opacity 0.5s ease-in-out;
}

.values {
  width: 100%;
  text-align: center;
  padding: var(--section-gap) 0;
  background: var(--clr-neutral-100);
  position: relative;
  overflow: hidden;
}
.values::before {
  content: "";
  position: absolute;
  bottom: -17rem;
  left: -16rem;
  width: 30rem;
  height: 30rem;
  background: url("../img/what-we-do-bottom-left-decor.svg") bottom left no-repeat;
  opacity: 1;
  pointer-events: none;
}
.values::after {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 30rem;
  height: 30rem;
  background: url("../img/what-we-do-top-right-decor.svg") top right no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.values__grid {
  gap: 3.2rem 2.4rem;
  margin-top: 5.6rem;
}
.values .values-card {
  width: 39rem;
  height: 39rem;
  overflow: hidden;
  background: var(--clr-neutral-100);
  border: 1px solid var(--clr-neutral-200);
  border-radius: 50%;
  padding: var(--size-400);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.values .values-card:hover {
  box-shadow: var(--shadow-400);
  border: 1px solid transparent;
}
.values .values-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 0rem;
  width: 15rem;
  height: 15rem;
  background: url("../img/our-value-round.svg") bottom right no-repeat;
  opacity: 1;
  pointer-events: none;
}
.values .values-card__icon {
  margin-bottom: var(--size-200);
}
.values .values-card__icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.6;
  stroke: var(--clr-primary-200);
}
.values .values-card__title {
  font-size: var(--fs-400);
  font-weight: 600;
  margin-bottom: var(--size-100);
  color: var(--clr-primary-600);
  line-height: var(--lh-200);
  margin-bottom: 1.6rem;
}
.values .values-card__desc {
  font-size: var(--fs-100);
  color: var(--clr-neutral-400);
  line-height: var(--lh-100);
  max-width: 80%;
}

@media (max-width: 1366px) {
  .values .values-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 1279px) {
  .goals__circle {
    margin-right: 4%;
  }
}
@media (max-width: 1199px) {
  .goals__circle {
    margin-right: auto;
  }
  .values::after {
    top: -11rem;
    right: -11rem;
  }
  .values .values-card {
    width: 100%;
    height: auto;
  }
  .values .values-card::after {
    top: 0rem;
    right: -2rem;
  }
}
@media (max-width: 991px) {
  .our-vision .content-box__decs {
    max-width: 100%;
    margin-top: 2rem;
  }
  .goals {
    height: 66.9rem;
  }
  .goals__title {
    text-align: center;
    margin-bottom: 3.2rem;
  }
  .values__grid {
    gap: 2.4rem 2.4rem;
    margin-top: 3.6rem;
  }
  .values::before {
    bottom: -19rem;
    left: -21rem;
  }
  .values::after::after {
    top: -12rem;
    right: -13rem;
  }
}
@media (max-width: 600px) {
  .goals {
    height: 100%;
    padding: 40px 0 60px;
  }
  .goals__title {
    text-align: center;
    margin-bottom: 3.2rem;
  }
  .goals__circle {
    width: 42rem;
    height: 42rem;
    margin: 0 auto;
  }
  .goals__circle-item {
    width: 5.4rem;
    height: 5.4rem;
    padding: 1rem;
  }
  .goals__circle-item img {
    width: 3rem;
    height: 3rem;
    transition: opacity 0.5s ease-in-out;
  }
  .values::before {
    bottom: -19rem;
    left: -21rem;
  }
  .values::after {
    top: -12rem;
    right: -13rem;
  }
  .values .values-card::after {
    top: -1rem;
    right: -3rem;
  }
  .values .values-card__icon {
    width: 5rem;
    height: 5rem;
  }
  .values .values-card__title {
    font-size: var(--fs-300);
    line-height: var(--lh-100);
    margin-bottom: 1.2rem;
  }
  .values .values-card__desc {
    font-size: var(--fs-50);
    line-height: 2rem;
  }
}
@media (max-width: 500px) {
  .goals__circle {
    width: 32rem;
    height: 32rem;
  }
  .goals__heading {
    line-height: 2rem;
    font-size: 1.6rem;
  }
  .goals__desc {
    max-width: 27rem;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .goals__circle-item img {
    width: 4rem;
    height: 4rem;
  }
  .goals__circle-item--1 {
    top: 5.5rem;
    left: -0.8rem;
  }
  .goals__circle-item--2 {
    right: 1rem;
  }
  .goals__circle-item--4 {
    bottom: -28px;
    left: 41.5%;
  }
}
@media (max-width: 390px) {
  .goals__title {
    margin-bottom: 2.2rem;
  }
  .goals__text {
    width: 19.3rem;
  }
  .goals__circle {
    width: 25rem;
    height: 25rem;
  }
  .goals__heading {
    line-height: 2rem;
    font-size: 1.6rem;
  }
  .goals__desc {
    max-width: 27rem;
    font-size: 1.5rem;
    line-height: 1.7rem;
  }
  .goals__circle-item {
    width: 3.4rem;
    height: 3.4rem;
    padding: 0.6rem;
  }
  .goals__circle-item img {
    width: 3rem;
    height: 3rem;
  }
  .goals__circle-item--1 {
    top: 1.5rem;
    left: 2.4rem;
  }
  .goals__circle-item--2 {
    right: 1.6rem;
    top: 2.5rem;
  }
  .goals__circle-item--3 {
    top: 54%;
    right: -2rem;
  }
  .goals__circle-item--4 {
    bottom: -18px;
  }
  .goals__circle-item--5 {
    bottom: -18px;
  }
}/*# sourceMappingURL=main.css.map */