@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}
* ul {
  list-style-type: none;
  padding-left: unset;
  margin-bottom: 0;
}
* u {
  text-decoration-line: none;
}
* p {
  margin-bottom: 0;
}
* ol li {
  padding-left: 25px;
}
* h1,
* h2,
* h3,
* h4,
* h5,
* h6 {
  line-height: normal;
  margin-bottom: 0;
}
* a {
  text-decoration: none;
}
* button {
  border: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
}
* button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}
* img {
  max-width: 100%;
  object-fit: cover;
}
* img.svg,
* svg {
  max-width: 100%;
}
* iframe,
* video {
  margin: 0;
  border: 0;
  padding: 0;
  max-width: 100% !important;
}
* table {
  width: 100%;
}

:focus {
  outline-offset: 4px;
}

[type=button] {
  -webkit-appearance: none !important;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

input,
textarea {
  resize: none;
}
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

:root {
  --transition: 0.3s ease-in-out;
}

body {
  font-family: var(--font-inter);
  background-color: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  position: relative;
  z-index: 99;
}

.container {
  max-width: 1600px;
  margin-inline: auto;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
@media (min-width: 992px) {
  .container {
    padding-inline: 80px;
  }
}
@media (max-width: 991px) {
  .container {
    padding-inline: 25px;
    max-width: 700px;
  }
}

.img-div img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
}

html,
body {
  overflow-x: clip;
}

.menu-backdrop {
  inset: 0;
  z-index: 1100;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  background-color: var(--clr-main);
  transition: 0.7s ease-in-out;
}
.menu-backdrop.active {
  opacity: 1;
}
.menu-backdrop.contact-active {
  pointer-events: all;
}

.swiper-wrapper,
.swiper-slide {
  max-height: unset;
  height: unset;
  display: flex;
}

@media (min-width: 992px) {
  .spacing-top {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .spacing-top {
    padding-top: 60px;
  }
}

@media (min-width: 992px) {
  .spacing-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .spacing-bottom {
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .spacing-block {
    padding-block: 100px;
  }
}
@media (max-width: 991px) {
  .spacing-block {
    padding-block: 60px;
  }
}

.primary-btn {
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 15px;
  border-radius: 100px;
  width: fit-content;
  transition: var(--transition);
  color: var(--clr-primary);
  background-color: var(--clr-alt-1);
  gap: 12px;
  overflow: hidden;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  letter-spacing: normal;
  position: relative;
}
.primary-btn.arrow-btn .btn-text {
  position: relative;
  z-index: 5;
  color: var(--clr-primary);
  transition: var(--transition);
}
.primary-btn.arrow-btn .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--clr-primary);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}
.primary-btn.arrow-btn .btn-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--clr-primary);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.primary-btn.arrow-btn .btn-arrow svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  fill: var(--clr-alt-1);
}
.primary-btn.arrow-btn .btn-arrow svg path {
  stroke: var(--clr-alt-1);
}
@media (pointer: fine) and (hover: hover) {
  .primary-btn.arrow-btn:hover .btn-text, .primary-btn.arrow-btn:focus-visible .btn-text {
    color: var(--clr-alt-1);
  }
  .primary-btn.arrow-btn:hover .btn-arrow, .primary-btn.arrow-btn:focus-visible .btn-arrow {
    transform: translateX(5px) scale(1.1);
  }
  .primary-btn.arrow-btn:hover .btn-arrow::before, .primary-btn.arrow-btn:focus-visible .btn-arrow::before {
    transform: scale(10);
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.socials {
  display: flex;
  gap: 15px;
}

.socials-list {
  display: flex;
  gap: 15px;
}
.socials-list svg rect {
  fill: var(--clr-secondary);
  transition: var(--transition);
}
.socials-list svg path {
  fill: var(--clr-alt-1);
  transition: var(--transition);
}
@media (pointer: fine) and (hover: hover) {
  .socials-list svg:hover rect, .socials-list svg:focus-visible rect {
    fill: var(--clr-alt-1);
  }
  .socials-list svg:hover path, .socials-list svg:focus-visible path {
    fill: var(--clr-primary);
  }
}

.heading-anim .heading-split-line {
  padding-bottom: 4px;
}

.generic {
  padding-block: 150px;
}
.generic__wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1200px;
}

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

:root {
  --font-inter: "inter", sans-serif;
  --font-area-variable: "area-variable", sans-serif;
}

.content-box {
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: normal;
}
.content-box > *:not(:last-child) {
  margin-bottom: 20px;
}
.content-box > *:last-child {
  margin-bottom: 0;
}
.content-box strong,
.content-box b {
  font-weight: 800;
}
.content-box img,
.content-box video {
  width: 100%;
}
.content-box ul {
  padding-left: 20px;
  list-style: none;
  position: relative;
}
.content-box ul li::before {
  content: "•";
  font-size: 0.8em;
  position: absolute;
  margin-right: 5px;
  left: 5px;
}
.content-box ol {
  padding-left: 20px;
}
.content-box ol li {
  padding-left: 0;
}
.content-box table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  width: 100%;
  flex-shrink: 0;
  overflow-x: auto;
  flex-grow: 1;
}
.content-box table th,
.content-box table td {
  padding: 0.5rem;
  border: 1px solid var(--clr-secondary);
}
.content-box table th {
  text-align: left;
  background-color: transparent;
  color: var(--clr-secondary);
}
.content-box table th:not(:last-child) {
  border-right-color: var(--clr-secondary);
}
.content-box iframe {
  width: 100%;
}
.content-box a {
  color: inherit;
  border-bottom: 1px solid var(--clr-primary);
  transition: var(--transition);
}
.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  color: var(--clr-main);
  font-family: var(--font-new-roman);
}
.content-box h1 {
  font-size: clamp(1.625rem, 2.632vw - 0.007rem, 2.625rem);
  line-height: clamp(2.125rem, 2.632vw + 0.493rem, 3.125rem);
  font-weight: 400;
  letter-spacing: normal;
}
@media (min-width: 992px) {
  .content-box h2 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    letter-spacing: normal;
  }
}
@media (max-width: 991px) {
  .content-box h2 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: normal;
  }
}
.content-box h3 {
  font-size: clamp(1.625rem, 0.658vw + 1.217rem, 1.875rem);
  line-height: clamp(1.875rem, 0.822vw + 1.365rem, 2.188rem);
  font-weight: 400;
  letter-spacing: normal;
}
.content-box h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: normal;
}
.content-box h5 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: normal;
}
.content-box h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: normal;
}
.content-box i {
  font-weight: 300;
}

.xl-title {
  font-size: 100px;
  line-height: 105px;
  font-weight: 600;
  letter-spacing: normal;
  font-family: var(--font-area-variable);
}
@media (max-width: 991px) {
  .xl-title {
    font-size: 50px;
    line-height: 65px;
  }
}

.lg-title {
  font-size: 50px;
  line-height: 58px;
  font-weight: 600;
  letter-spacing: normal;
  font-family: var(--font-area-variable);
}
@media (max-width: 991px) {
  .lg-title {
    font-size: 40px;
    line-height: 48px;
  }
}

.title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: normal;
  font-family: var(--font-area-variable);
}
@media (max-width: 991px) {
  .title {
    font-size: 26px;
    line-height: 32px;
  }
}

.md-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: normal;
  font-family: var(--font-area-variable);
}
@media (max-width: 991px) {
  .md-title {
    font-size: 20px;
    line-height: 28px;
  }
}

.sm-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: normal;
  font-family: var(--font-area-variable);
}
@media (max-width: 991px) {
  .sm-title {
    font-size: 16px;
    line-height: 24px;
  }
}

input[type=checkbox] {
  /* Add if not using autoprefixer */
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: var(--clr-primary);
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
  border: 0.11em solid var(--clr-primary);
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  transition: background-color 120ms ease-in-out;
}
input[type=checkbox]::before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: center center;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type=checkbox]:checked {
  background-color: transparent;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
  background-color: var(--clr-primary);
}

.loader-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px); /* Adjust the blur radius as needed */
  display: none;
}
.loader-wrapper .position-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.loader {
  width: 35px;
  height: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--clr-primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}

.form-styles {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.form-styles .form-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .form-styles .form-row {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .form-styles .form-row {
    gap: 20px;
  }
}
.form-styles .form-column {
  display: flex;
  gap: 25px;
  width: 100%;
}
@media (max-width: 991px) {
  .form-styles .form-column {
    flex-direction: column;
  }
}
.form-styles .input-wrapper {
  width: 100%;
}
.form-styles .input-text {
  border: unset;
  border-bottom: 1px solid var(--clr-primary);
  padding-bottom: 10px;
  background-color: transparent;
  color: var(--clr-main);
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: normal;
}
.form-styles .input-text::placeholder {
  color: var(--clr-main);
  opacity: 1;
}
.form-styles textarea {
  height: 90px;
}
.form-styles .file-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-grow: 1;
}
.form-styles .file-wrapper .fake-btn {
  background-color: #f6f3f1;
  padding-inline: 20px;
  border: 2px dashed var(--clr-main);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
}
.form-styles .file-wrapper .fake-btn .big-text {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: normal;
}
.form-styles .file-wrapper .fake-btn .types-of-files {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: normal;
}
@media (min-width: 992px) {
  .form-styles .file-wrapper .fake-btn {
    padding-block: 45px;
  }
}
@media (max-width: 991px) {
  .form-styles .file-wrapper .fake-btn {
    padding-block: 25px;
  }
}
.form-styles .cv-file {
  display: none;
  flex-grow: 1;
  border: 1px solid var(--clr-main);
  padding: 10px clamp(0.625rem, 1.689vw + 0.203rem, 1.25rem);
  justify-content: space-between;
  align-items: center;
}
.form-styles .cv-file .cv-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .form-styles .cv-file .cv-name span {
    display: block;
    width: 200px;
    overflow-wrap: break-word;
    font-size: 14px;
  }
}
.form-styles .terms-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-styles .dropdown-content {
  display: flex;
  position: relative;
  width: 100%;
}
.form-styles .dropdown-btn {
  display: flex;
  flex-grow: 1;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--clr-main);
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: normal;
}
.form-styles .dropdown-btn .selected-text {
  text-align: start;
}
.form-styles .dropdown-btn svg {
  transition: var(--transition);
}
.form-styles .dropdown-btn.open svg {
  transform: rotate(180deg);
}
.form-styles .dropdown-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 100%;
  border: 1px solid var(--clr-main);
  flex-grow: 1;
  width: 100%;
  text-align: start;
  align-items: start;
  border-top: unset;
  background-color: var(--clr-alt-5);
  display: none;
}
.form-styles .dropdown-box .dropdown-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: normal;
}
.form-styles .dropdown-box .dropdown-option {
  padding-inline: 10px;
  padding-block: 10px;
  width: 100%;
  align-items: start;
  display: flex;
  transition: var(--transition);
  color: var(--clr-main);
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: normal;
}
@media (pointer: fine) and (hover: hover) {
  .form-styles .dropdown-box .dropdown-option:hover, .form-styles .dropdown-box .dropdown-option:focus-visible {
    background-color: var(--clr-background);
  }
}
@media (max-width: 991px) {
  .form-styles.log-in-form {
    padding-block: 40px;
    gap: 25px;
  }
  .form-styles.log-in-form .title {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .form-styles {
    padding: 110px 100px;
  }
}
@media (max-width: 991px) {
  .form-styles {
    padding: 110px 20px;
  }
}

.response-wrapper {
  color: var(--clr-primary);
}

:root {
  /* Text & Content */
  --clr-primary: #101c2b;
  --clr-secondary: #283340;
  --clr-alt-1: #e8e7e6;
  --clr-alt-2: #b2a89e;
  /* Backgrounds & UI */
  --bg-body: #cec8c2;
  --bg-body-2: #596572;
  --bg-hover: #;
  --border-default: #93999f;
  /* Brand / Primary Actions */
  --brand-main: #;
  --brand-secondary: #;
  --brand-hover: #;
  --brand-dark: #;
  /* Status / Accents */
  --clr-success: #;
  --clr-success-bg: #;
  /* Forms */
  --input-bg: rgba(255, 255, 255, 0.5);
  --input-border: var(--border-default);
  --input-focus: var(--clr-primary);
  --input-placeholder: var(--bg-body-2);
}

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

.clr-secondary {
  color: var(--clr-secondary);
}

.clr-body {
  color: var(--bg-body);
}

.clr-brand-main {
  color: var(--brand-main);
}

.clr-content-1 {
  color: var(--clr-content-1);
}

.clr-light {
  color: #fff;
}

.clr-border {
  color: var(--border-default);
}

.clr-alt-1 {
  color: var(--clr-alt-1);
}

.clr-alt-2 {
  color: var(--clr-alt-2);
}

.nav-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1300;
  padding-block: 20px;
  transition: var(--transition);
  background-color: var(--clr-background);
}
.nav-header .header-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav-header .header-wrapper nav {
  justify-self: start;
}
.nav-header .header-wrapper .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.4s ease;
}
.nav-header .header-wrapper .logo > *:last-child {
  transition: all 0.4s ease;
  max-width: 200px;
  opacity: 1;
}
@media (max-width: 991px) {
  .nav-header .header-wrapper .logo > *:last-child {
    display: none;
  }
}
.nav-header .header-wrapper > div:last-child {
  justify-self: end;
}
.nav-header.scrolled .header-wrapper .logo {
  gap: 0;
}
.nav-header.scrolled .header-wrapper .logo > *:last-child {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
}
.nav-header.dark .pill-dropdown,
.nav-header.dark .menu-dropdown {
  color: #f5f4ef;
}
.nav-header.dark .pill-dropdown__trigger,
.nav-header.dark .menu-dropdown__trigger {
  border-color: rgba(255, 255, 255, 0.5);
}
.nav-header.dark .pill-dropdown__current, .nav-header.dark .pill-dropdown__item,
.nav-header.dark .menu-dropdown__current,
.nav-header.dark .menu-dropdown__item {
  color: #f5f4ef;
}
.nav-header.dark .pill-dropdown__item:hover,
.nav-header.dark .menu-dropdown__item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f5f4ef;
}
.nav-header.dark .pill-dropdown .dot,
.nav-header.dark .menu-dropdown .dot {
  background-color: #f5f4ef;
}
.nav-header.dark .logo svg path {
  fill: #f5f4ef;
}

footer {
  background-color: var(--clr-primary);
  position: relative;
}
footer .footer-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 15px;
  max-width: 700px;
  margin-inline: auto;
}
footer .wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  footer .wrap {
    gap: 100px;
  }
}
@media (max-width: 991px) {
  footer .wrap {
    gap: 60px;
  }
}
footer .primary-btn {
  margin-inline: auto;
  margin-top: 40px;
}
footer .footer__wrap-social {
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin-inline: auto;
}
footer .gemi {
  text-align: center;
  color: var(--border-default);
}
footer .bottom-footer {
  display: flex;
  justify-content: space-between;
  color: var(--clr-border);
  font-family: var(--font-area-variable);
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: normal;
}
footer .bottom-footer .footer-menu,
footer .bottom-footer .footer__wrap-right,
footer .bottom-footer .dontmatter {
  color: var(--border-default);
}
footer .bottom-footer .footer-menu a,
footer .bottom-footer .footer__wrap-right a,
footer .bottom-footer .dontmatter a {
  color: inherit;
  transition: var(--transition);
}
@media (pointer: fine) and (hover: hover) {
  footer .bottom-footer .footer-menu a:hover, footer .bottom-footer .footer-menu a:focus-visible,
  footer .bottom-footer .footer__wrap-right a:hover,
  footer .bottom-footer .footer__wrap-right a:focus-visible,
  footer .bottom-footer .dontmatter a:hover,
  footer .bottom-footer .dontmatter a:focus-visible {
    color: var(--clr-alt-1);
  }
}
footer .bottom-footer .footer-menu {
  display: flex;
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-menu {
    gap: 25px;
  }
}
@media (max-width: 991px) {
  footer .bottom-footer .footer-menu {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  footer .bottom-footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
footer .footer-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at center, transparent 0%, black 0%);
  -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 0%);
}
footer .footer-bg svg {
  width: 100%;
  height: 100%;
}
footer .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  footer {
    padding-block: 200px 80px;
  }
}
@media (max-width: 991px) {
  footer {
    padding-block: 120px 60px;
  }
}

.qr_card {
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  overflow: hidden;
  right: 80px;
  bottom: 80px;
  z-index: 1000;
}
.qr_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.qr_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}
.qr_card__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}
.qr_card__close {
  text-align: end;
  align-items: end;
  justify-content: end;
  display: flex;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
}
.qr_card__title {
  color: var(--clr-primary);
  font-family: var(--font-area-variable);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
.qr_card__image {
  width: 120px;
  height: 120px;
  background: white;
  padding: 5px;
  border-radius: 10px;
}
.qr_card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pill-dropdown {
  position: relative;
  z-index: 1000;
  font-family: var(--font-inter);
  color: var(--clr-primary);
  cursor: pointer;
  width: fit-content;
}
.pill-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  position: relative;
  z-index: 2;
  background: transparent;
}
.pill-dropdown__current {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #101C2B;
}
.pill-dropdown__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  position: relative;
}
.pill-dropdown__dots .dot {
  width: 3px;
  height: 3px;
  background-color: currentColor;
  border-radius: 50%;
  transform-origin: center;
  flex-shrink: 0;
}
.pill-dropdown__dots--grid {
  display: grid;
  grid-template-columns: repeat(2, 3px);
  grid-template-rows: repeat(2, 3px);
  gap: 3px;
  width: 9px;
  height: 9px;
}
.pill-dropdown__dropdown {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  min-width: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media (pointer: fine) and (hover: hover) {
  .pill-dropdown:hover .pill-dropdown__dropdown, .pill-dropdown:focus-visible .pill-dropdown__dropdown {
    opacity: 1;
    visibility: visible;
  }
  .pill-dropdown:hover .pill-dropdown__item, .pill-dropdown:focus-visible .pill-dropdown__item {
    opacity: 1;
    transform: translateY(0);
  }
}
.pill-dropdown__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}
.pill-dropdown__item {
  color: var(--clr-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin: 0;
  transition: background-color 0.2s ease;
}
@media (pointer: fine) and (hover: hover) {
  .pill-dropdown__item:hover, .pill-dropdown__item:focus-visible {
    background-color: rgba(0, 0, 0, 0.05);
  }
}
.pill-dropdown__item .lang-name {
  display: block;
  white-space: nowrap;
}

.pill-dropdown--right .pill-dropdown__dropdown {
  left: auto;
  right: 0;
}

.pill-dropdown--left .pill-dropdown__dropdown {
  left: 0;
  right: auto;
}

.about-card {
  display: flex;
  flex-direction: column;
  padding-right: 5px;
  position: relative;
  overflow: hidden;
}
.about-card .about-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .about-card .about-content {
    padding-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .about-card {
    border-right: 1px solid var(--clr-primary);
    height: 555px;
  }
  .about-card:last-child {
    border-right: none;
  }
}
@media (max-width: 991px) {
  .about-card {
    border-bottom: 1px solid var(--clr-primary);
  }
}

.providers-card {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #e6e5e3;
  border-radius: 15px;
  padding: 35px;
  color: #0f172a;
  width: 50%;
}
.providers-card .providers-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.providers-card .providers-header .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.providers-card .providers-header .title-row .icon-circle {
  width: 24px;
  height: 24px;
  background-color: #0f172a;
  border-radius: 50%;
  flex-shrink: 0;
}
.providers-card .providers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.providers-card .providers-list ul li {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px dashed var(--clr-alt-2);
  padding-top: 10px;
}
.providers-card .providers-list ul li a {
  color: #101C2B;
}
.providers-card .providers-list ul li:last-child {
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--clr-alt-2);
}
.providers-card .providers-list .provider-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px dashed var(--clr-alt-2);
  padding-top: 10px;
}
.providers-card .providers-list .provider-item:last-child {
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--clr-alt-2);
}
.providers-card.dark-bg {
  background-color: var(--clr-alt-2);
}
.providers-card.dark-bg .provider-item {
  border-top: 1px dashed var(--clr-alt-1);
}
.providers-card.dark-bg .provider-item:last-child {
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--clr-alt-1);
}

.swiper-partial {
  overflow: visible;
}
.swiper-partial .swiper {
  overflow: visible;
}
.swiper-partial .swiper-nav-wrapper {
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .swiper-partial .swiper-nav-wrapper {
    flex-direction: column;
    gap: 20px;
    z-index: 15;
  }
}
@media (max-width: 991px) {
  .swiper-partial .swiper-nav-wrapper {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 20px;
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .swiper-partial .swiper-nav-wrapper::before {
    content: "";
    background-color: var(--clr-background);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    bottom: 0;
    transform: translateX(-100%);
    left: 0;
    z-index: 9;
  }
  .swiper-partial .swiper-nav-wrapper::after {
    content: "";
    background-color: var(--clr-background);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 9;
  }
}
.swiper-partial .swiper-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 10;
}
.swiper-partial .swiper-sm-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--clr-alt-4);
}
.swiper-partial .swiper-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
}
.swiper-partial .swiper-btns .next-btn svg {
  transform: rotate(180deg);
}
.swiper-partial .swiper-btns .next-btn,
.swiper-partial .swiper-btns .prev-btn {
  width: 40px;
  height: auto;
  aspect-ratio: 1;
}
.swiper-partial .swiper-btns .next-btn svg path,
.swiper-partial .swiper-btns .next-btn svg rect,
.swiper-partial .swiper-btns .prev-btn svg path,
.swiper-partial .swiper-btns .prev-btn svg rect {
  transition: var(--transition);
}
@media (pointer: fine) and (hover: hover) {
  .swiper-partial .swiper-btns .next-btn:hover svg rect, .swiper-partial .swiper-btns .next-btn:focus-visible svg rect,
  .swiper-partial .swiper-btns .prev-btn:hover svg rect,
  .swiper-partial .swiper-btns .prev-btn:focus-visible svg rect {
    fill: var(--clr-main);
  }
  .swiper-partial .swiper-btns .next-btn:hover svg path, .swiper-partial .swiper-btns .next-btn:focus-visible svg path,
  .swiper-partial .swiper-btns .prev-btn:hover svg path,
  .swiper-partial .swiper-btns .prev-btn:focus-visible svg path {
    fill: #fff;
  }
}
.swiper-partial .button-pos {
  display: flex;
}
@media (min-width: 992px) {
  .swiper-partial .button-pos {
    padding-top: 60px;
    justify-content: end;
  }
}
@media (max-width: 991px) {
  .swiper-partial .button-pos {
    padding-top: 40px;
    justify-content: center;
  }
}

/*# sourceMappingURL=app.css.map */
