/* RESET */
:root {
  /* #701B64 */
  --primary-clr: hsl(308, 61%, 27%);

  /* #A90466 */
  --secondary-clr: hsl(324, 95%, 34%);
  --secondary-clr-5: hsla(324, 95%, 34%, 5%);
  --secondary-clr-10: hsla(324, 95%, 34%, 10%);
  --secondary-clr-15: hsla(324, 95%, 34%, 15%);
  /* #9B2064 */
  --secondary-clr-900: hsl(327, 66%, 37%);
  /* #992F6A */
  --secondary-clr-800: hsl(327, 53%, 39%);

  /* #262F45 */
  --tertiary-clr: hsl(223, 29%, 21%);
  /* #2C2F4A */
  --tertiary-clr-900: hsl(234, 25%, 23%);
  /* #EEEEFB */
  --tertiary-clr-100: hsl(240, 62%, 96%);
  /* #FFFFFF */
  --white-clr: hsl(0, 0%, 100%);
  /* #F2F2F8 */
  --white-clr-900: hsl(240, 30%, 96%);
  /* #F5F5FA */
  --white-clr-850: hsl(240, 33%, 97%);
  /* #E8E8F7 */
  --white-clr-800: hsl(240, 48%, 94%);
  /* #EBEBF2 */
  --white-clr-700: hsl(240, 21%, 94%);
  /* #EDEFFF */
  --white-clr-600: hsl(233, 100%, 96%);
  /* #333333 */
  --black-clr: hsl(0, 0%, 20%);
  /* #404040 */
  --black-clr-800: hsl(0, 0%, 25%);
  /* #1865F2 */
  --extra-clr: hsl(219, 89%, 52%);
  /* #545760 */
  --text-clr: hsl(225, 7%, 35%);
  /* #2C2F4A */
  --text-clr-700: hsl(234, 25%, 23%);

  /* #D5D5D5 */
  --border-clr: hsl(0, 0%, 84%);
  --border-clr-30: hsla(0, 0%, 84%, 0.3);

  /* #BDBDDB */
  --border-clr-900: hsl(240, 29%, 80%);
  /* #DDDDEB */
  --border-clr-800: hsl(240, 26%, 89%);

  --ff-lato: "Lato", sans-serif;
  --ff-inter: "Inter", sans-serif;
  --ff-satoshi: "Satoshi", sans-serif;
  --ff-roboto: "Roboto", sans-serif;
  --ff-geist: "Geist", sans-serif;

  /* 40px */
  /* --fs-1000: clamp(3.5rem, 2.5vw + 1.5rem, 6rem); */
  /* 5rem (80px) max */
  --fs-1000: clamp(3.5rem, 4vw + 1.5rem, 5rem);

  /* 4rem (64px) max */
  --fs-950: clamp(2.8rem, 3.2vw + 1.2rem, 4rem);

  /* 3.75rem (60px) max */
  --fs-900: clamp(2.6rem, 3vw + 1.2rem, 3.75rem);

  /* 3.5rem (56px) max */
  --fs-850: clamp(2.5rem, 2.8vw + 1.1rem, 3.5rem);

  /* 3rem (48px) max */
  --fs-800: clamp(2.25rem, 2.4vw + 1rem, 3rem);

  /* 2.5rem (40px) max */
  --fs-700: clamp(2rem, 2vw + 0.9rem, 2.5rem);

  /* 2.25rem (36px) max */
  --fs-650: clamp(1.5rem, 1.8vw + 0.8rem, 2.25rem);

  /* 2rem (32px) max */
  --fs-600: clamp(1.4rem, 1.6vw + 0.7rem, 2rem);

  /* 1.75rem (28px) max */
  --fs-550: clamp(1.25rem, 1.4vw + 0.6rem, 1.75rem);

  /* 1.5rem (24px) max */
  --fs-500: clamp(1.125rem, 1.2vw + 0.5rem, 1.5rem);

  /* 1.25rem (20px) max */
  --fs-450: clamp(0.95rem, 1vw + 0.5rem, 1.25rem);

  /* 1.125rem (18px) max */
  --fs-425: clamp(0.85rem, 0.9vw + 0.4rem, 1.125rem);

  /* 1rem (16px) fixed */
  --fs-400: 1rem;

  /* 0.875rem (14px) max */
  --fs-300: clamp(0.75rem, 0.7vw + 0.4rem, 0.875rem);

  /* 0.75rem (12px) max */
  --fs-200: clamp(0.65rem, 0.5vw + 0.3rem, 0.75rem);

  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;

  accent-color: var(--secondary-clr);
  caret-color: var(--secondary-clr);
}

/* Box sizing rules*/
*,
*::before,
*::after {
  box-sizing: border-box;
  /* border: 1px solid red; */
}

/* Reset margin, padding and font-size */
* {
  margin: 0;
  padding: 0;
  font: inherit;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h2 {
  text-wrap: balance;
}

/* Allow percentage-based heights in the application */
html,
body {
  height: 100%;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  interpolate-size: allow-keywords;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Custom CSS */
body {
  font-family: var(--ff-satoshi);
  font-size: var(--fs-400);
  font-weight: var(--fw-400);
  color: var(--text-clr);
  line-height: 19.2px;
  /* interpolate-size: allow-keywords; */
}

/* END OF RESET */

/* HEADER FOOTER */

/* Topbar */
.topbar {
  /* Full width background */
  border-image-source: conic-gradient(var(--tertiary-clr) 0% 0%);
  border-image-slice: fill 0;
  border-image-outset: 0 100vw;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;

  @media (width <=890px) {
    display: none;
  }
}

.topbar-contacts {
  --_topbar-contacts-gap: 1rem;
  display: flex;
  gap: var(--_topbar-contacts-gap);
}

.topbar-contact-details {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--white-clr);
  text-decoration: none;

  &:not(:last-of-type) {
    padding-right: var(--_topbar-contacts-gap);
    border-right: 1px solid var(--white-clr);
  }

  &:hover {
    .topbar-contact-icon {
      scale: 1.2;
      transition: all 180ms ease-in-out;
    }
  }
}

.topbar-contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 180ms ease-in-out;
}

.topbar-contact-text {
  font-weight: var(--fw-400);
  font-size: var(--fs-300);
}

.topbar-social {
  display: flex;
  gap: 1rem;
}

.topbar-social-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: scale 180ms ease-in-out;

  &:hover {
    transition: scale 180ms ease-in-out;
    scale: 1.2;
  }
}

/* End of Topbar */
.primary-header.wrapper {
  @media (width <=768px) {
    --_gap: 1.125rem !important;
  }
}

/* Primay Nav */
.primary-nav {
  display: flex;
  align-items: center;
  padding-block: 2.125rem;

  .logo {
    width: 6.25rem;
    height: 3rem;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .btns {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.75rem;
  }

  .btn-link {
    color: var(--tertiary-clr-900);
    font-weight: var(--fw-700);
    text-transform: uppercase;

    &:hover {
      color: var(--secondary-clr-900);
    }
  }

  @media (width <=896px) {
    .btns,
    .nav-links {
      display: none;
    }
  }
}

.nav-links {
  margin-inline: 3rem auto;
  display: flex;
  text-transform: uppercase;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: var(--fw-700);

  a {
    color: var(--tertiary-clr-900);

    &:hover {
      color: var(--secondary-clr-900);
    }
  }
}

.primary-nav-toggler {
  --_toggler-clr: var(--tertiary-clr-900);

  cursor: pointer;
  margin-left: auto;
  border: none;
  border-radius: 50%;
  color: var(--white-clr);

  &:hover {
    --_toggler-clr: var(--white-clr);
    color: var(--tertiary-clr-900);
  }

  @media (width > 896px) {
    display: none;
  }
}

.sidebar {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(3rem);

  .sidebar-dialog-content {
    padding-inline: 2rem;

    @media (width <=768px) {
      padding-inline: 1.125rem;
    }
  }
}

.sidebar {
  .dialog-header {
    margin-top: 2.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 1.75rem;

    .close-btn {
      cursor: pointer;
      width: 1.75rem;
      height: 1.75rem;
      color: var(--tertiary-clr);
      background-color: var(--white-clr);
    }
  }

  .primary-nav {
    flex-direction: column;
    align-items: start;
    padding-block: 0;
    margin-block: 2.125rem;
  }

  .nav-links,
  .btns {
    display: revert;
    width: 100%;
  }

  .nav-links {
    margin-left: 0;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .nav-link {
    font-size: var(--fs-600);
  }

  .btns {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    border: none;
    box-shadow: none;
  }

  @media (width > 896px) {
    display: none;
  }
}

/* End of Primary Nav */

/* Footer */
.footer.wrapper {
  --_gap: 1.125rem !important;

  color: var(--white-clr);
  position: relative;

  &::before {
    content: "";
    position: absolute;
    z-index: -6;
    inset: 0;
    background-image: url("/assets/images/home/footer.png");
    background-size: cover;
  }

  a {
    color: var(--white-clr);
    text-decoration: none;
  }

  .content {
    position: relative;
    /* padding-block: 11.5rem 18rem; */
    padding-block: clamp(6.5rem, 15vw + 0.75rem, 11.5rem) 3rem;
    padding-inline: 0.625rem;

    &::after {
      content: "";
      bottom: 0;
      left: 0;
      position: absolute;
      display: block;
      width: 100%;
      z-index: -1;
      aspect-ratio: 3142/928;
      background-image: url("/images/white-logo.png");
      background-size: 100%;
      opacity: 0.04;
    }
  }
}

.footer-links:hover {
  text-decoration: underline;
}

.footer-title {
  font-size: var(--fs-400);
  font-weight: var(--fw-900);
  color: inherit;
  padding-bottom: 1.5rem;
  /* position: relative; */
  border-bottom: 1px solid #896d7d;
  /* &::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: -0.5rem;
    inset-block-end: var(--underline-position, -0.5rem);
    height: 4px;
    width: var(--underline-width, 4ch);
    background-color: var(--primary-clr);
    transform-origin: center;
    transition: width 500ms ease;
  }

  &:hover::after {
    --underline-width: 100%;
    transition: width 500ms ease;
  } */
}

.footer-description {
  max-width: 55ch;
  line-height: 26px;
  margin-right: 1.5rem;
}

.footer-top {
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  column-gap: 2.5rem;
  justify-content: center;

  @media (width > 600px) {
    grid-template-columns: 1.5fr 1fr;
    /* justify-items: center;

    .columns:nth-of-type(2n + 1) {
      justify-self: start;
    } */
  }

  @media (width > 1024px) {
    grid-template-columns: 1.75fr repeat(3, 1fr);
    /* justify-items: center;
    justify-content: center;

    .columns:nth-of-type(2n + 1) {
      justify-self: inherit;
    } */
  }
}

.footer-contact,
.footer-about,
.footer-popular-services,
.footer-quick-links {
  display: grid;
  gap: 1.25rem;
  /* justify-content: start; */
}

.footer-about,
.footer-popular-services,
.footer-quick-links {
  align-content: start;
}

.footer-list-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  color: currentColor;
  transition: all 180ms ease;

  &:hover {
    .footer-list-icon {
      scale: 1.3;
      transition: all 180ms ease;
    }
  }
}

.footer-list-icon {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.footer-socials {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2.875rem;
  padding-block: 2.5rem 0.5rem;
  border-top: 1px solid var(--white-clr-700);
}

.footer-socials-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--white-clr);
  width: 100px;
}

.footer-social-links {
  display: flex;
  gap: 4rem;

  @media (width <=600px) {
    --_social-icon-size: 2.125rem;
    gap: 1.5rem;
    width: 100%;
    justify-content: space-between;
  }

  .social-icon-32 {
    width: var(--_social-icon-size, 2.25rem);
    height: var(--_social-icon-size, 2.25rem);
    color: var(--white-clr);
  }
}

.footer-social-link {
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  background-color: var(--secondary-clr);
  border-radius: 50%;
  transition: all 180ms ease-in-out;

  &:hover {
    scale: 1.2;
    transition: all 180ms ease-in-out;
  }
}

.footer-bottom,
.footer-bottom-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom {
  @media screen and (width <=600px) {
    flex-wrap: wrap;
  }
}

/* End of Footer */

/* END OF HEADER FOOTER */

/* Utilities */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Variable.woff2") format("woff2"),
    url("../fonts/Satoshi-Variable.woff") format("woff"),
    url("../fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-VariableFont_wght.woff2") format("woff2"),
    url("../fonts/Geist-VariableFont_wght.woff") format("woff"),
    url("../fonts/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

.btn-pill {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 6.25rem;
  background-color: var(--_btn-clr);
  color: var(--_btn-txt-clr);
  padding: 1.25em 2.25rem;
  border: none;
  border-radius: 100vw;
  font-size: var(--_btn-fs, var(--fs-400));
  font-weight: var(--_btn-fw, var(--fw-700));
  text-align: center;
  text-wrap: nowrap;
  text-transform: uppercase;
  transition: all 180ms ease;

  a {
    all: unset;
  }

  &:hover {
    color: var(--_btn-clr);
    background-color: var(--_btn-txt-clr);
    outline: 1px solid var(--_btn-clr);

    transition: all 180ms ease;

    .btn-icon {
      svg {
        path {
          fill: currentColor;
        }
      }
    }
  }

  &:has(.btn-icon),
  &:has(.bx) {
    --_btn-clr: var(--_btn-icon-clr);
    --_btn-txt-clr: var(--_btn-icon-txt-clr);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.625rem;

    .btn-icon {
      flex-shrink: 0;
      width: var(--_btn-icon-size, 1.25rem);
      height: var(--_btn-icon-size, 1.25rem);
      aspect-ratio: 1;

      svg {
        width: 100%;
        height: 100%;
      }
    }
  }

  &.btn-primary {
    --_btn-clr: var(--primary-clr);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-secondary {
    --_btn-clr: var(--secondary-clr);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-secondary-900 {
    --_btn-clr: var(--secondary-clr-900);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-tertiary {
    --_btn-clr: var(--tertiary-clr);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-tertiary-900 {
    --_btn-clr: var(--tertiary-clr-900);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-text-700 {
    --_btn-clr: var(--text-clr-700);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-outline,
  &.btn-outline-tertiary {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--tertiary-clr);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-tertiary-900 {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--tertiary-clr-900);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-secondary-900 {
    --_btn-txt-clr: var(--secondary-clr-900);
    --_btn-clr: var(--white-clr);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-primary {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--primary-clr);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-secondary {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--secondary-clr);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-secondary-900 {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--secondary-clr-900);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-fw-500 {
    --_btn-fw: var(--fw-500);
  }

  &.btn-sm {
    padding-block: 1rem;

    @media (width <=768px) {
      --_btn-fs: 0.875rem;
    }
  }

  &.btn-md {
    padding-inline: 1.625rem;
  }

  &.btn-xl {
    padding: 1rem 2.5rem;
  }

  &.btn-2xl {
    width: 13.5rem;
  }

  &.btn-3xl {
    padding: 0.875rem;
    width: 20.5rem;
  }

  &.btn-full {
    width: 100%;
  }

  &.btn-partner {
    border: none;
    border-bottom: 2px solid var(--secondary-clr);

    &:hover {
      outline: none;
      border-bottom-color: var(--white-clr);
    }
  }
}

.h1 {
  font-weight: var(--fw-900);
  font-size: var(--fs-1000);
  line-height: 1.14;
}

h2 {
  margin-bottom: 0;
  color: var(--tertiary-clr-900);
}

/* End of Utilities */

/* Css Only Carousel */
.trusted-institutions-slider {
  --_institution-width: 12.75rem;
  --_institution-height: 8.5rem;
  --_institution-spacing: 2rem;

  margin-top: 1.625rem;
  width: 100%;
  height: var(--_institution-height);
  mask-image: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0) 10% 90%,
    transparent
  );
  overflow-x: clip;

  &.reverse {
    --_animation-direction: reverse;
  }
}

.trusted-institutions {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--_institution-spacing);
  position: relative;
  min-width: calc(
    (var(--_institution-width) + var(--_institution-spacing)) *
      var(--_institution-quantity)
  );

  &:hover {
    .institution {
      animation-play-state: paused !important;
    }
  }

  .institution {
    --_animation-duration: calc(var(--_institution-quantity) * 5s);
    position: absolute;
    z-index: 1;
    left: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    filter: grayscale(1);

    transition: filter 300ms ease;
    animation: institutionSlider var(--_animation-duration) linear infinite;
    animation-direction: var(--_animation-direction);
    animation-delay: calc(
      (-1 * var(--_animation-duration) / var(--_institution-quantity)) *
        (var(--_institution-position) - 1)
    );

    &:hover {
      filter: grayscale(0);
      background-color: var(--white-clr);
    }

    img {
      padding: 1.25rem 1.5rem;
      width: var(--_institution-width);
      height: var(--_institution-height);
      object-fit: contain;
    }
  }
}

@keyframes institutionSlider {
  from {
    left: 100%;
  }

  to {
    left: calc(var(--_institution-width) * -1);
  }
}

/* End of Css Only Carousel */

body {
  font-family: var(--ff-satoshi);
  background-color: var(--white-clr-700);
  line-height: 1.6;
}

.wrapper {
  --_max-width: 1352px;
  --_max-width: 1500px;

  @media (width <=768px) {
    --_gap: 0px !important;
  }
}

/* Appointment */
.appointment-content {
  padding: 3.5rem;
  /* padding: var(--fs-850); */
  border-radius: 2.5rem;
  border: 1px solid #e8e8f9;
  background-color: var(--white-clr);

  @media (width <= 768px) {
    padding: 1.5rem;
  }
}

.appointment-header {
  display: flex;
  justify-content: space-between;
  align-items: end;

  h1 {
    color: var(--text-clr-700);
    font-weight: 900;
    font-size: var(--fs-950);
    text-transform: uppercase;
    max-width: 15ch;

    @media (width <=1024px) {
      font-size: var(--fs-850);
    }

    @media (width <=600px) {
      text-align: center;
      margin-inline: auto;
    }
  }

  .btn-pill {
    --_btn-fw: var(--fw-700);
    --_btn-fs: 0.75rem;
    height: 46px;

    @media (width <=600px) {
      display: none;
    }
  }
}

.appointment-body {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  background-color: #fcfcfc;
  border: 1px solid #e8e8f9;
  border-radius: 1.5rem;
  > * {
    padding: 2.25rem;
  }
}

.appointment-details-section {
  --_tab-mx: 0;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;

  h2 {
    font-weight: var(--fw-900);
    font-size: var(--fs-500);
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-clr-700);
  }

  .appointment-list {
    dl {
      display: grid;
      grid-template-columns: 0.875rem 1fr;
      gap: 0.75rem;
      align-items: center;

      > *:not(dt:first-child),
      > *:not(dd:first-child) {
        padding-block: 0.875rem;
      }
    }
    dt {
      color: var(--text-clr-700);
    }

    dd {
      font-weight: var(--fw-500);
    }

    dt,
    dd {
      border-bottom: 1px solid #f2f2f8;
    }
  }
}

.appointment-date {
  justify-self: center;
  border-inline: 1px solid #e8e8f9;

  #datepicker {
    /* visibility: hidden; */
    display: none;
  }
  .calendar {
    padding: 2.25rem;
  }
}

/* End of Appointment */
.appointment-wrapper {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.visa-points-body {
  margin-top: var(--fs-650);
  display: grid;
  background-color: #fbfbfb;
  border: 1px solid #e8e8f9;
  border-radius: 1.5rem;

  > * {
    /* padding: var(--fs-650) 3rem; */
    padding: var(--fs-650) var(--fs-800);

    @media (width <= 768px) {
      padding: var(--fs-650) var(--fs-425);
    }
  }

  h2 {
    font-weight: var(--fw-700);
    font-size: var(--fs-450);
    line-height: 0.97;
    margin-bottom: 1rem;
  }

  /* @media (width <= 1024px) {
    .visa-points-results {
      grid-row: 1/1;
    }
  } */
  @media (width > 1024px) {
    grid-template-columns: 1fr 1fr;
  }
}

.visa-points-filters {
  border-right: 1px solid #e8e8f9;

  hr {
    margin-block: 1.125rem 1.5rem;
    border-top: none;
    border-color: #f2f2f8;
  }
}

.visa-points-subsection {
  .filter-checkbox-list {
    display: grid;
    gap: 0.5rem;
  }
}

.visa-points-result-wrapper {
  padding: var(--fs-650);
  text-align: center;
  background-color: var(--white-clr);
  border-radius: 0.75rem;
  border: 1px solid #e8e8f9;
  display: grid;

  .visa-points-result-title {
    margin-block: 1.25rem 1.5rem;
  }
}

.visa-points-result-total {
  font-weight: 900;
  font-size: var(--fs-800);
  line-height: 0.97;
  color: var(--text-clr-700);
}

.visa-points-result-title {
  font-size: var(--fs-450);
  line-height: 0.97;
  color: var(--secondary-clr-900);
}

.visa-points-summary-wrapper {
  margin-block: 1.5rem var(--fs-650);
}

.visa-points-summary {
  .icon-key-value {
    padding-bottom: 1rem;
    border-bottom: 1px solid #ebecff;

    display: flex;
    justify-content: space-between;

    &:not(:first-child) {
      padding-top: 1rem;
    }
  }
}
