@charset "UTF-8";
:root {
  --cg-primary: #4ca9a5;
  --cg-primary-dark: #189A9D;
  --cg-primary-deep: #117b7e;
  --cg-primary-light: #68dadd;
  --cg-bg: #f7fbfb;
  --cg-bg-soft: #F7FAFC;
  --cg-surface: #ffffff;
  --cg-text: #192E48;
  --cg-text-secondary: #425b5d;
  --cg-text-muted: #718586;
  --cg-border: #dce8e8;
  --cg-border-light: #eaf1f1;
  --cg-radius-sm: 10px;
  --cg-radius-md: 16px;
  --cg-radius-lg: 24px;
  --cg-radius-xl: 32px;
  --cg-radius-pill: 999px;
  --cg-shadow-sm: 6px 9px 26px rgba(26, 55, 54, 0.05);
  --cg-shadow-md: 0 12px 32px rgba(16, 42, 43, 0.08);
  --cg-shadow-lg: -10px 16px 25px -8px rgba(74, 130, 129, 0.16);
  --cg-container: 1280px;
  --cg-header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  margin: 0;
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-block: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

body {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45;
}

h1 {
  font-size: clamp(1.5rem, 6vw, 3.25rem);
}

h2 {
  font-size: clamp(1.35rem, 5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 4vw, 1.75rem);
}

h4 {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
}

@media (max-width: 575px) {
  h1 {
    font-size: clamp(1.25rem, 4vw, 2.75rem);
  }
  h2 {
    font-size: clamp(1.15rem, 3.5vw, 2.25rem);
  }
  h3 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }
  h4 {
    font-size: clamp(0.85rem, 2vw, 1.25rem);
  }
}
p {
  color: #425b5d;
}

.text-primary {
  color: #4ca9a5;
}

.text-muted {
  color: #718586;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(76, 169, 165, 0.4);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 40px, 1440px);
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 40px, 900px);
  margin-inline: auto;
}

@media (max-width: 575px) {
  .container {
    width: min(100% - 24px, 1280px);
  }
  .container--wide {
    width: min(100% - 24px, 1440px);
  }
  .container--narrow {
    width: min(100% - 24px, 900px);
  }
}
.section {
  padding-block-start: 96px;
}

.section--sm {
  padding-block-start: 64px;
}

.section--lg {
  padding-block-start: 128px;
}

@media (max-width: 991px) {
  .section {
    padding-block-start: 80px;
  }
  .section--sm {
    padding-block-start: 48px;
  }
  .section--lg {
    padding-block-start: 80px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-block-start: 64px;
  }
  .section--sm {
    padding-block-start: 40px;
  }
  .section--lg {
    padding-block-start: 64px;
  }
}
@media (max-width: 575px) {
  .section {
    padding-block-start: 48px;
  }
  .section--lg {
    padding-block-start: 56px;
  }
}
.section__header {
  max-width: 720px;
  margin-block-end: 48px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block-end: 20px;
  color: #4ca9a5;
  font-size: 14px;
  font-weight: 600;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

.section__title {
  margin-block-end: 20px;
}

.section__description {
  max-width: 640px;
  font-weight: 600;
  color: #718586;
  font-size: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 500;
  width: 100%;
  margin-top: 16px;
  transition: background-color 250ms ease, box-shadow 250ms ease;
}
.site-header .container {
  position: relative;
}

.site-header__inner {
  position: relative;
  z-index: 2;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  backdrop-filter: blur(10px);
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 144px;
  height: 50.88px;
}
.site-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header__logo .custom-logo-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.site-header__logo .custom-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 575px) {
  .custom-logo-link img {
    width: 80px;
  }
}
.site-nav {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__list li {
  position: relative;
}
.site-nav__list li a {
  font-weight: 600;
  font-size: 20px;
  transition: color 250ms ease;
}
.site-nav__list li:hover > a {
  color: #4ca9a5;
  transition: color 250ms ease;
}
.site-nav__list li::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 0%;
  height: 1px;
  background: transparent;
  transition: width 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav__list li:hover::after {
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(24, 154, 157, 0.2), #68dadd, rgba(24, 154, 157, 0.4), transparent);
  transition: background-color width 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav__list li.current-menu-item > a {
  color: #4ca9a5;
}
.site-nav__list li.current-menu-item:after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 154, 157, 0.2), #68dadd, rgba(24, 154, 157, 0.4), transparent);
}

.site-nav__link {
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 250ms ease;
}
.site-nav__link:hover {
  color: #189a9d;
}
.site-nav__link--active, .current-menu-item > .site-nav__link, .current-menu-ancestor > .site-nav__link {
  color: #189a9d;
  font-weight: 600;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-header__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.site-header__icon-btn:hover {
  transform: translateY(-2px);
}

.site-header__cart-count {
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  background: #189A9D;
  border-radius: 999px;
  pointer-events: none;
}
.site-header__cart-count.is-empty {
  display: none;
}

.site-header__wishlist-count {
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  background: #e11d48;
  border-radius: 999px;
  pointer-events: none;
}
.site-header__wishlist-count.is-empty {
  display: none;
}

.site-header__icon-btn--search,
.site-header__icon-btn--wishlist {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.header-search-overlay {
  display: none;
}

.header-search-panel {
  display: none;
}

@media (min-width: 992px) {
  .header-search-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(25, 46, 72, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
  }
  .header-search-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .header-search-overlay[hidden] {
    display: none;
  }
  .header-search-panel {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    inset-inline-end: 0;
    z-index: 50;
    width: min(440px, 100% - 32px);
    padding: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #eaf1f1;
    box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 250ms ease, transform 250ms ease;
  }
  .header-search-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header-search-panel[hidden] {
    display: none;
  }
}
.site-header__icon-bg {
  width: 48px;
  height: 48px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(104, 218, 221, 0.1));
  transition: background-color 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header__icon-bg:hover {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(76, 169, 165, 0.15));
}

.site-header__icon {
  width: auto;
  height: auto;
}

.site-header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #189A9D;
  background: transparent;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
}
.site-header__toggle .site-header__icon-bg {
  position: relative;
}
.site-header__toggle:hover .site-header__icon-bg {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(104, 218, 221, 0.15));
}
.site-header__toggle:focus-visible {
  outline: 3px solid rgba(76, 169, 165, 0.25);
  outline-offset: 3px;
}

.site-header__toggle-menu,
.site-header__toggle-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}

.mobile-menu {
  display: none;
}

.mobile-menu__overlay {
  display: none;
}

@media (max-width: 991px) {
  .site-header__inner {
    min-height: 72px;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
  }
  .site-nav {
    display: none;
  }
  .site-header__actions {
    gap: 8px;
  }
  .site-header__icon-btn--search {
    display: none;
  }
  .site-header__icon-btn--wishlist {
    order: 1;
  }
  .site-header__icon-btn--account {
    order: 2;
  }
  .site-header__icon-btn--cart {
    order: 3;
  }
  .site-header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 4;
  }
  .site-header__logo {
    width: 128px;
    height: 40px;
  }
  .mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    z-index: 1;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
  }
  .mobile-menu__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(25, 46, 72, 0.28);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
  }
  .mobile-menu__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu__panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: min(72vh, 100dvh - 120px);
    margin-block-start: 12px;
    padding: 20px 20px 24px;
    overscroll-behavior: contain;
    touch-action: pan-y;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(24, 154, 157, 0.14) 100%), rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 154, 157, 0.18);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
  }
  .mobile-menu__search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(24, 154, 157, 0.14);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(16, 42, 43, 0.04);
  }
  .mobile-menu__search:focus-within {
    border-color: #189A9D;
    box-shadow: 0 0 0 4px rgba(24, 154, 157, 0.1);
  }
  .mobile-menu__search-icon {
    display: flex;
    flex-shrink: 0;
    color: #117b7e;
  }
  .mobile-menu__search-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #192E48;
    font-family: "Cairo", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: start;
  }
  .mobile-menu__search-input:focus {
    outline: 0;
  }
  .mobile-menu__search-input::placeholder {
    color: #718586;
  }
  .mobile-menu__search-input {
    appearance: none;
    -webkit-appearance: none;
  }
  .mobile-menu__search-input::-webkit-search-decoration, .mobile-menu__search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  .mobile-menu__nav {
    min-width: 0;
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-menu__list > li > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    color: #192E48;
    font-family: "Cairo", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: start;
    background: transparent;
    border-radius: 16px;
  }
  .mobile-menu__list > li > a:focus-visible {
    outline: 3px solid rgba(76, 169, 165, 0.25);
    outline-offset: 3px;
  }
  .mobile-menu__list > li:not(.current-menu-item):not(.current-menu-ancestor) > a:hover,
  .mobile-menu__list > li:not(.current-menu-item):not(.current-menu-ancestor) > a:focus-visible {
    color: #117b7e;
    background: rgba(24, 154, 157, 0.1);
  }
  .mobile-menu__list .current-menu-item > a,
  .mobile-menu__list .current-menu-ancestor > a {
    color: #ffffff;
    background: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
    font-weight: 700;
  }
  .mobile-menu__list .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 4px 0 0;
    padding: 0;
    padding-inline-start: 16px;
    list-style: none;
  }
  .mobile-menu__list .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 16px;
    color: #425b5d;
    font-size: 15px;
    font-weight: 500;
    text-align: start;
    border-radius: 10px;
  }
  .mobile-menu__list .sub-menu a:hover, .mobile-menu__list .sub-menu a:focus-visible {
    color: #117b7e;
    background: rgba(24, 154, 157, 0.08);
  }
}
@media (max-width: 575px) {
  .site-header__inner {
    min-height: 64px;
    padding: 8px 12px;
  }
  .site-header__logo img {
    max-width: 112px;
  }
  .site-header__actions {
    gap: 4px;
  }
  .site-header__icon-btn,
  .site-header__toggle {
    width: 44px;
    height: 44px;
  }
  .site-header__icon-bg {
    width: 44px;
    height: 44px;
  }
  .mobile-menu__panel {
    padding: 16px;
    gap: 20px;
  }
  .mobile-menu__list > li > a {
    font-size: 15px;
    min-height: 48px;
  }
}
html.menu-open,
body.menu-open {
  overflow: hidden;
  overflow-x: hidden;
  overscroll-behavior: none;
}

.site-footer {
  position: relative;
  padding-top: 120px;
  padding-bottom: 32px;
  background: url("../images/footer-bg.webp") no-repeat center top;
  background-size: cover;
  color: #ffffff;
}

@media (max-width: 575px) {
  .site-footer {
    background: url("../images/footer-bg-sm.webp") no-repeat center top;
    background-size: cover;
  }
}
.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("../images/footer-bg.webp") no-repeat center top;
  background-size: cover;
  border-radius: 50px 50px 0 0;
}
.site-footer__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 154, 157, 0.1) 0%, transparent 100%);
  border-radius: 50px 50px 0 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__column--company {
  gap: 20px;
}

.site-footer__logo {
  width: 120px;
}

.site-footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__logo-tag {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.site-footer__description {
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
  color: #ffffff;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__contact-item {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__contact-label {
  color: #68dadd;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 250ms ease;
}
.site-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.site-footer__social-link:focus-visible {
  outline: 2px solid #68dadd;
  outline-offset: 2px;
}

.site-footer__social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-footer__social-icon-bg {
  width: 48px;
  height: 48px;
  background: linear-gradient(217.58deg, #142023 5%, #09161a 95%);
  border-radius: 10px;
}

.site-footer__heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
  color: #189A9D;
}

.site-footer__nav {
  margin-top: 8px;
}

.site-footer__nav-list,
.site-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__nav-list li,
.site-footer__nav ul li {
  margin: 0;
}

.site-footer__nav-list a,
.site-footer__nav ul li a {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 42px;
  color: #ffffff;
  text-decoration: none;
  transition: color 250ms ease;
}
.site-footer__nav-list a:hover,
.site-footer__nav ul li a:hover {
  color: #68dadd;
}
.site-footer__nav-list a:focus-visible,
.site-footer__nav ul li a:focus-visible {
  outline: 2px solid #68dadd;
  outline-offset: 2px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #494949;
}

.site-footer__payment {
  flex: 1;
}

.site-footer__payment-logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.site-footer__payment-logo img {
  max-width: 60%;
  max-height: 100%;
  object-fit: contain;
}
.site-footer__payment-logo span {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #192E48;
}

.site-footer__copyright {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  flex: 1;
}

@media (max-width: 1199px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .site-footer__column--company {
    grid-column: span 2;
  }
}
@media (max-width: 991px) {
  .site-footer {
    padding-top: 80px;
  }
  .site-footer__bg {
    height: 80px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer__column--company {
    grid-column: span 1;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 16px;
  }
  .site-footer__payment {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-top: 96px;
    padding-bottom: 24px;
  }
  .site-footer__bg {
    height: 60px;
  }
  .site-footer__description {
    font-size: 15px;
  }
  .site-footer__contact-item {
    font-size: 15px;
  }
  .site-footer__heading {
    font-size: 18px;
  }
  .site-footer__nav-list a,
  .site-footer__nav ul li a {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .mt-sm-6 {
    margin-top: 24px;
  }
  .site-footer__logo {
    width: 140px;
    margin: auto;
  }
  .site-footer__nav {
    margin-top: 0;
  }
  .site-footer__logo-tag {
    font-size: 14px;
  }
  .site-footer__description {
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
  }
  .site-footer__contact-item svg {
    width: 20px;
    height: 20px;
  }
  .site-footer__contact-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  .site-footer__contact-item {
    font-size: 14px;
  }
  .site-footer__social-link {
    width: 40px;
    height: 40px;
  }
  .site-footer__social-icon {
    width: 20px;
    height: 20px;
  }
  .site-footer__heading {
    font-size: 16px;
  }
  .site-footer__nav-list a,
  .site-footer__nav ul li a {
    font-size: 14px;
  }
  .site-footer__payment-logo img {
    max-width: 100%;
  }
  .site-footer__copyright {
    font-size: 12px;
  }
  .site-footer__inner {
    gap: 16px;
    margin-bottom: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__social-link,
  .site-footer__nav-list a,
  .site-footer__nav ul li a {
    transition: none;
  }
  .site-footer__social-link:hover {
    transform: none;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding-inline: 24px;
  border: 0;
  border-radius: 16px;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: visible;
  isolation: isolate;
  transition: transform 250ms ease, color 250ms ease, background-color 250ms ease, background-position 0.5s ease, box-shadow 250ms ease, opacity 250ms ease;
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 2px solid #189A9D;
  outline-offset: 3px;
}
.btn:disabled, .btn[aria-disabled=true], .btn.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}
.btn > span {
  margin-left: auto;
  margin-right: auto;
}

.btn__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 6px;
  transition: transform 250ms ease, background-color 250ms ease;
}
.btn__icon img,
.btn__icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.btn__icon--plain {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
}
.btn__icon--plain img,
.btn__icon--plain svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  color: #ffffff !important;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 6px 18px rgba(24, 154, 157, 0.16);
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 12%;
  width: 76%;
  height: 6px;
  background: linear-gradient(90deg, transparent, #189A9D, #68dadd, #189A9D, transparent);
  filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 250ms ease;
}
.btn--primary .btn__icon {
  background: #ffffff;
}
.btn--primary .btn__icon svg path {
  fill: #189A9D;
}
.btn--primary .btn__icon svg path[stroke] {
  fill: none;
  stroke: #189A9D;
}
.btn--primary:hover {
  background-position: 40% 20%;
  box-shadow: 0 8px 25px rgba(24, 154, 157, 0.2);
}
.btn--primary:hover::after {
  opacity: 0.55;
}
.btn--primary:active {
  background-image: linear-gradient(135deg, #189A9D 0%, #189A9D 100%);
  box-shadow: 0 4px 12px rgba(24, 154, 157, 0.14);
}
.btn--primary:active::after {
  opacity: 0;
}
.btn--primary:disabled, .btn--primary[aria-disabled=true], .btn--primary.is-disabled {
  color: rgba(255, 255, 255, 0.85);
  background-image: linear-gradient(135deg, #d7e0e0 0%, #e8eeee 100%);
  box-shadow: none;
}
.btn--primary:disabled::after, .btn--primary[aria-disabled=true]::after, .btn--primary.is-disabled::after {
  opacity: 0;
}
.btn--primary:disabled .btn__icon, .btn--primary[aria-disabled=true] .btn__icon, .btn--primary.is-disabled .btn__icon {
  background: rgba(255, 255, 255, 0.7);
}
.btn--primary:disabled .btn__icon svg path,
.btn--primary:disabled .btn__icon svg, .btn--primary[aria-disabled=true] .btn__icon svg path,
.btn--primary[aria-disabled=true] .btn__icon svg, .btn--primary.is-disabled .btn__icon svg path,
.btn--primary.is-disabled .btn__icon svg {
  fill: #9aa9aa;
  stroke: #9aa9aa;
}

.btn--outline {
  background: #ffffff;
  color: #189A9D;
  box-shadow: none;
}
.btn--outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(110deg, rgb(86, 230, 233), #189A9D, #68dadd, rgba(104, 218, 221, 0.2), #189A9D);
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  transition: background-position 0.5s ease;
}
.btn--outline::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 15%;
  width: 70%;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(24, 154, 157, 0.2), #68dadd, rgba(24, 154, 157, 0.4), transparent);
  filter: blur(2px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
  transition: opacity 250ms ease;
}
.btn--outline .btn__icon {
  background: #ffffff;
}
.btn--outline .btn__icon svg path {
  stroke: #189A9D;
  fill: none;
}
.btn--outline .btn__icon--plain {
  background: transparent;
}
.btn--outline .btn__icon--plain svg path,
.btn--outline .btn__icon--plain svg {
  fill: #189A9D;
  stroke: #189A9D;
}
.btn--outline:hover {
  color: #117b7e;
  box-shadow: 0 8px 25px rgba(24, 154, 157, 0.16);
}
.btn--outline:hover::before {
  background-position: 100% 50%;
}
.btn--outline:hover::after {
  opacity: 0.7;
}
.btn--outline:active {
  box-shadow: 0 4px 14px rgba(24, 154, 157, 0.1);
}
.btn--outline:active::after {
  opacity: 0.3;
}
.btn--outline:disabled, .btn--outline[aria-disabled=true], .btn--outline.is-disabled {
  color: #9aa9aa;
  background: #ffffff;
}
.btn--outline:disabled::before, .btn--outline[aria-disabled=true]::before, .btn--outline.is-disabled::before {
  background: linear-gradient(110deg, #d7e0e0, #e8eeee);
}
.btn--outline:disabled::after, .btn--outline[aria-disabled=true]::after, .btn--outline.is-disabled::after {
  opacity: 0;
}
.btn--outline:disabled .btn__icon, .btn--outline[aria-disabled=true] .btn__icon, .btn--outline.is-disabled .btn__icon {
  background: #eaf3f3;
}
.btn--outline:disabled .btn__icon svg path, .btn--outline[aria-disabled=true] .btn__icon svg path, .btn--outline.is-disabled .btn__icon svg path {
  stroke: #9aa9aa;
}

.btn--soft {
  color: #189A9D;
  background-color: rgba(24, 154, 157, 0.1);
  background-image: none;
  box-shadow: none;
}
.btn--soft::before, .btn--soft::after {
  content: none;
}
.btn--soft:hover {
  background-color: rgba(24, 154, 157, 0.14);
  color: #117b7e;
  box-shadow: 0 8px 20px rgba(24, 154, 157, 0.1);
}
.btn--soft:active {
  background-color: rgba(24, 154, 157, 0.18);
  box-shadow: none;
}
.btn--soft:focus-visible {
  outline: 2px solid #189A9D;
  outline-offset: 3px;
}
.btn--soft:disabled, .btn--soft[aria-disabled=true], .btn--soft.is-disabled {
  color: #9aa9aa;
  background-color: #eaf3f3;
  box-shadow: none;
}

.btn--text {
  min-height: auto;
  padding-inline: 0;
  background: transparent;
  border-radius: 16px;
  box-shadow: none;
  background-color: rgba(76, 169, 165, 0.1);
  color: #189A9D;
  font-weight: 700;
}
.btn--text > span {
  margin-left: initial;
  margin-right: initial;
}
.btn--text::after {
  content: none;
}
.btn--text:hover {
  box-shadow: 0 8px 25px rgba(24, 154, 157, 0.16);
}
.btn--text:hover {
  color: #117b7e;
}
.btn--text:hover svg {
  transform: translateX(-3px);
}
.btn--text:active {
  color: #117b7e;
  transform: none;
}
.btn--text:disabled, .btn--text[aria-disabled=true], .btn--text.is-disabled {
  color: #9aa9aa;
}

.btn--dark {
  background: #192E48;
  color: #ffffff;
}
.btn--dark:hover {
  background: #117b7e;
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
}

.btn--white {
  background: #ffffff;
  color: #189A9D;
}
.btn--white:hover {
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
}

.btn {
  min-height: 52px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.btn--lg {
  padding-inline: 16px;
  min-width: 200px;
}

.btn--md {
  padding-inline: 12px;
  min-width: 150px;
}

.btn--sm {
  min-height: 36px;
  padding-inline: 16px;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
}
.btn--sm .btn__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.btn--sm .btn__icon img,
.btn--sm .btn__icon svg {
  width: 12px;
  height: 12px;
}

.btn--tab {
  min-height: 48px;
  height: 48px;
  min-width: 160px;
  padding-inline: 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.btn--full {
  display: flex;
  width: 100%;
}

@media (max-width: 575px) {
  .btn--lg,
  .btn--md {
    min-width: 0;
    font-size: 14px;
  }
  .btn span {
    margin-left: initial;
    margin-right: initial;
  }
  .btn svg {
    width: 30px;
    height: 30px;
  }
  .btn--lg {
    padding-inline-start: 12px;
  }
  .btn--full {
    min-width: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn--primary,
  .btn--outline,
  .btn--soft,
  .btn--text,
  .btn__icon {
    transition: none;
  }
  .btn--primary,
  .btn--outline::before {
    transition: none;
  }
  .btn--primary:hover,
  .btn--outline:hover::before {
    background-position: 0% 50%;
  }
  .btn:hover,
  .btn--primary:hover,
  .btn--outline:hover {
    transform: none;
  }
  .btn:hover .btn__icon,
  .btn--text:hover svg {
    transform: none;
  }
}
.card {
  position: relative;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

.card--hover {
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: -10px 16px 25px -8px rgba(74, 130, 129, 0.16);
}

.card--glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-block-end: 24px;
  background: rgba(76, 169, 165, 0.1);
  border-radius: 16px;
  color: #4ca9a5;
}

.card__title {
  margin-block-end: 12px;
  font-size: 20px;
}

.card__description {
  color: #425b5d;
}

.form-group {
  margin-block-end: 20px;
}

.form-label {
  display: block;
  margin-block-end: 8px;
  color: #192E48;
  font-size: 14px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 16px;
  color: #192E48;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.form-control::placeholder {
  color: #9aa9aa;
}
.form-control:focus {
  border-color: #4ca9a5;
  box-shadow: 0 0 0 4px rgba(76, 169, 165, 0.1);
  outline: 0;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #718586;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-block-end: 56px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 250ms ease;
}
.breadcrumbs__link:hover {
  color: #189A9D;
}

.breadcrumbs__current {
  color: #192E48;
  font-weight: 600;
}

.breadcrumbs__separator {
  color: #cbd5e1;
}

@media (max-width: 575px) {
  .breadcrumbs__back svg {
    width: 30px;
    height: 30px;
  }
  .breadcrumbs {
    margin-block-end: 20px;
  }
}
.faq {
  position: relative;
  background-image: url("../images/light-bg-2.webp");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

#faq {
  padding-block-end: 4px;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 996px;
  margin: 0 auto;
}

.faq__item {
  position: relative;
  width: 100%;
}

.faq__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 74px;
  padding-inline: 15px;
  background: #ffffff;
  border: none;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  cursor: pointer;
  transition: all 250ms ease;
}
.faq__trigger:hover {
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
}
.faq__trigger:focus-visible {
  outline: 2px solid #189A9D;
  outline-offset: 2px;
}

.faq__trigger[aria-expanded=true] {
  background: #ffffff;
}

.faq__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-inline-start: auto;
  transition: transform 250ms ease;
}

.faq__trigger[aria-expanded=true] .faq__chevron {
  transform: rotate(90deg);
}

.faq__question {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0b2021;
  text-align: start;
}

.faq__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 37px;
  height: 37px;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  background: rgba(24, 154, 157, 0.1);
  border-radius: 50%;
  color: #189A9D;
}

.faq__answer {
  position: relative;
  max-height: 0;
  padding: 0 16px;
  background: #F7FAFC;
  border: 1px solid #189A9D;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
  overflow: hidden;
  opacity: 0;
  transition: max-height 350ms cubic-bezier(0.22, 1, 0.36, 1), padding 350ms cubic-bezier(0.22, 1, 0.36, 1), opacity 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__answer.is-open {
  max-height: 500px;
  padding: 16px 24px;
  margin-block-start: 16px;
  opacity: 1;
}

.faq__answer-text {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  margin: 0;
  color: #192E48;
  text-align: right;
}

@media (max-width: 767px) {
  .faq__trigger {
    height: auto;
    min-height: 64px;
    padding-inline: 12px;
  }
  .faq__question {
    font-size: 16px;
    line-height: 1.5;
  }
  .faq__number {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .faq__answer-text {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 575px) {
  .faq__accordion {
    gap: 16px;
  }
  .faq__trigger {
    min-height: 60px;
    padding-inline: 10px;
  }
  .faq__question {
    font-size: 14px;
  }
  .faq__number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .faq__answer-text {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq__trigger,
  .faq__chevron,
  .faq__answer {
    transition: none;
  }
}
.smooth-scroll {
  display: block;
}

.smooth-scroll__content {
  display: block;
}

.smooth-scroll__spacer {
  display: none;
  pointer-events: none;
  visibility: hidden;
}

.smooth-scroll.is-active {
  position: relative;
  overflow-x: hidden;
}

.smooth-scroll.is-active .smooth-scroll__content {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1;
  width: 100%;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.smooth-scroll.is-active .smooth-scroll__spacer {
  display: block;
  width: 100%;
}

html.is-smooth-scrolling {
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .smooth-scroll.is-active .smooth-scroll__content {
    will-change: auto;
    transform: none !important;
  }
}
.mobile-menu {
  --mobile-nav-duration: 420ms;
  --mobile-nav-ease: cubic-bezier(0.22, 1, 0.36, 1);
  transition: visibility 0s linear 420ms;
}
.mobile-menu.is-open {
  transition-delay: 0s;
}

.mobile-menu__overlay {
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu__panel {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-header__toggle-menu,
.site-header__toggle-close {
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__toggle-menu {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.site-header__toggle-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
  pointer-events: none;
}

.site-header__toggle[aria-expanded=true] .site-header__toggle-menu {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.site-header__toggle[aria-expanded=true] .site-header__toggle-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.mobile-menu__list > li > a,
.mobile-menu__list .sub-menu a {
  transition: color 250ms ease, background-color 250ms ease, background 250ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 250ms ease;
}

.mobile-menu__list > li > a:hover,
.mobile-menu__list > li > a:focus-visible,
.mobile-menu__list .sub-menu a:hover,
.mobile-menu__list .sub-menu a:focus-visible {
  transform: translateX(4px);
}

.mobile-menu__search {
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu__overlay,
  .mobile-menu__panel,
  .site-header__toggle-menu,
  .site-header__toggle-close,
  .mobile-menu__list > li > a,
  .mobile-menu__list .sub-menu a,
  .mobile-menu__search {
    transition: none !important;
  }
  .mobile-menu__panel {
    transform: none;
  }
  .mobile-menu:not(.is-open) .mobile-menu__panel {
    opacity: 0;
  }
  .site-header__toggle-menu,
  .site-header__toggle-close,
  .mobile-menu__list > li > a:hover,
  .mobile-menu__list > li > a:focus-visible,
  .mobile-menu__list .sub-menu a:hover,
  .mobile-menu__list .sub-menu a:focus-visible {
    transform: none;
  }
}
body.home .career-hero-visual[data-hero-scrub=boot] .hero-card:nth-child(1) {
  --hero-card-spread-x: 160%;
  --hero-card-spread-y: -6%;
  --hero-card-rotate: 0deg;
}
body.home .career-hero-visual[data-hero-scrub=boot] .hero-card:nth-child(2) {
  --hero-card-spread-x: 76%;
  --hero-card-spread-y: -2%;
  --hero-card-rotate: 0deg;
}
body.home .career-hero-visual[data-hero-scrub=boot] .hero-card:nth-child(3) {
  --hero-card-spread-x: 0%;
  --hero-card-spread-y: 0%;
  --hero-card-rotate: 0deg;
}
body.home .career-hero-visual[data-hero-scrub=boot] .hero-card:nth-child(4) {
  --hero-card-spread-x: -76%;
  --hero-card-spread-y: -2%;
  --hero-card-rotate: 0deg;
}
body.home .career-hero-visual[data-hero-scrub=boot] .hero-card:nth-child(5) {
  --hero-card-spread-x: -160%;
  --hero-card-spread-y: -6%;
  --hero-card-rotate: 0deg;
}
@media (max-width: 767px) {
  body.home .career-hero-visual[data-hero-scrub=boot] .hero-card:nth-child(1) {
    --hero-card-spread-x: 70%;
    --hero-card-spread-y: -4%;
  }
  body.home .career-hero-visual[data-hero-scrub=boot] .hero-card:nth-child(3) {
    --hero-card-spread-x: 0%;
    --hero-card-spread-y: 0%;
  }
  body.home .career-hero-visual[data-hero-scrub=boot] .hero-card:nth-child(5) {
    --hero-card-spread-x: -70%;
    --hero-card-spread-y: -4%;
  }
}
body.home .career-hero-visual[data-hero-scrub=complete] .hero-card {
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  body.home .career-hero-visual[data-hero-scrub] .hero-card {
    --hero-card-spread-x: 0px !important;
    --hero-card-spread-y: 0px !important;
    --hero-card-rotate: var(--hero-card-final-rotate) !important;
    pointer-events: auto;
  }
}
body.home .site-header__inner {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
body.home .site-header__inner.is-loaded {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .career-hero-visual,
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .section__eyebrow,
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__title,
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__description,
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__actions .btn,
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__social-proof, body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__companies {
  opacity: 0;
}
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .career-hero-visual {
  transform: translate3d(0, 48px, 0);
}
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .section__eyebrow,
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__description {
  transform: translate3d(0, 16px, 0);
}
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__title {
  transform: translate3d(0, 22px, 0);
}
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__actions .btn {
  transform: translate3d(0, 18px, 0);
}
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__social-proof {
  transform: translate3d(0, 18px, 0);
}
body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__companies {
  transform: translate3d(0, 20px, 0);
}
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__badge,
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__title,
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__description,
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__stat,
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__feature-card {
  opacity: 0;
}
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__badge,
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__description {
  transform: translate3d(0, 16px, 0);
}
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__title {
  transform: translate3d(0, 22px, 0);
}
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__stat,
body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__feature-card {
  transform: translate3d(0, 28px, 0);
}
body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__eyebrow,
body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__title,
body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__description,
body.home .services:not(.services--intro-ready):not(.services--intro-done) .services__card {
  opacity: 0;
}
body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__eyebrow,
body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__description {
  transform: translate3d(0, 16px, 0);
}
body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__title {
  transform: translate3d(0, 22px, 0);
}
body.home .services:not(.services--intro-ready):not(.services--intro-done) .services__card {
  transform: translate3d(0, 28px, 0);
}
body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__eyebrow,
body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__title,
body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__description {
  opacity: 0;
}
body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__eyebrow,
body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__description {
  transform: translate3d(0, 16px, 0);
}
body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__title {
  transform: translate3d(0, 22px, 0);
}
body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__eyebrow,
body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__title,
body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__description,
body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .testimonials__showcase {
  opacity: 0;
}
body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__eyebrow,
body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__description {
  transform: translate3d(0, 16px, 0);
}
body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__title {
  transform: translate3d(0, 22px, 0);
}
body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .testimonials__showcase {
  transform: translate3d(0, 36px, 0);
}
body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__eyebrow,
body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__title,
body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__description,
body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .faq__item {
  opacity: 0;
}
body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__eyebrow,
body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__description {
  transform: translate3d(0, 16px, 0);
}
body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__title {
  transform: translate3d(0, 22px, 0);
}
body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .faq__item {
  transform: translate3d(0, 20px, 0);
}
body.home .contact-cta:not(.contact-cta--intro-ready):not(.contact-cta--intro-done) .contact-cta__title,
body.home .contact-cta:not(.contact-cta--intro-ready):not(.contact-cta--intro-done) .contact-cta__description,
body.home .contact-cta:not(.contact-cta--intro-ready):not(.contact-cta--intro-done) .contact-cta__action .btn {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}
body.home .contact-cta:not(.contact-cta--intro-ready):not(.contact-cta--intro-done) .contact-cta__media {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__eyebrow,
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__title,
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__description,
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__form-header,
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__media,
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__form-body {
  opacity: 0;
}
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__eyebrow,
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__description {
  transform: translate3d(0, 16px, 0);
}
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__title {
  transform: translate3d(0, 22px, 0);
}
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__form-header,
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__form-body {
  transform: translate3d(0, 24px, 0);
}
body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__media {
  transform: translate3d(0, 36px, 0);
}
body.home .js-hero-intro {
  --intro-delay: 0ms;
  --intro-duration: 700ms;
  --intro-y: 20px;
  opacity: 0;
  transform: translate3d(0, var(--intro-y), 0);
  transition: opacity var(--intro-duration) cubic-bezier(0.16, 1, 0.3, 1), transform var(--intro-duration) cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--intro-delay);
  will-change: opacity, transform;
}
body.home .hero__title.js-hero-intro,
body.home .about__title.js-hero-intro,
body.home .section-header__title.js-hero-intro {
  --intro-y: 22px;
}
body.home .hero__description.js-hero-intro,
body.home .section__eyebrow.js-hero-intro,
body.home .about__badge.js-hero-intro,
body.home .about__description.js-hero-intro,
body.home .section-header__eyebrow.js-hero-intro,
body.home .section-header__description.js-hero-intro {
  --intro-y: 16px;
}
body.home .hero__actions .btn.js-hero-intro {
  --intro-y: 18px;
}
body.home .hero__social-proof.js-hero-intro,
body.home .hero__companies.js-hero-intro {
  --intro-y: 20px;
}
body.home .about__stat.js-hero-intro,
body.home .about__feature-card.js-hero-intro,
body.home .services__card.js-hero-intro {
  --intro-y: 28px;
}
body.home .testimonials .testimonials__showcase.js-hero-intro {
  --intro-duration: 900ms;
  --intro-y: 36px;
}
body.home .faq .faq__item.js-hero-intro {
  --intro-duration: 450ms;
  --intro-y: 20px;
}
body.home .contact-cta__title.js-hero-intro,
body.home .contact-cta__description.js-hero-intro,
body.home .contact-cta__action .btn.js-hero-intro {
  --intro-y: 20px;
}
body.home .contact-cta__media.js-hero-intro {
  --intro-y: 28px;
}
body.home .contact-section__form-header.js-hero-intro,
body.home .contact-section__form-body.js-hero-intro {
  --intro-y: 24px;
}
body.home .contact-section__media.js-hero-intro {
  --intro-duration: 900ms;
  --intro-y: 36px;
}
body.home .services__card.js-hero-intro,
body.home .hero__actions .btn.js-hero-intro,
body.home .contact-cta__action .btn.js-hero-intro {
  transition: opacity var(--intro-duration) cubic-bezier(0.16, 1, 0.3, 1), transform var(--intro-duration) cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--intro-delay);
}
body.home .js-hero-intro.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
body.home .hero--intro-done .js-hero-intro,
body.home .about--intro-done .js-hero-intro,
body.home .services--intro-done .js-hero-intro,
body.home .testimonials--intro-done .js-hero-intro,
body.home .faq--intro-done .js-hero-intro,
body.home .contact-cta--intro-done .js-hero-intro,
body.home .contact-section--intro-done .js-hero-intro,
body.home .section--intro-done .js-hero-intro {
  will-change: auto;
}
body.home .hero--intro-done .hero__actions .btn.js-hero-intro,
body.home .contact-cta--intro-done .contact-cta__action .btn.js-hero-intro,
body.home .contact-section--intro-done .contact-section__form-body .wpcf7-submit.js-hero-intro {
  opacity: 1;
  transform: unset;
  transition: unset;
  will-change: auto;
}
body.home .js-reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}
body.home .js-reveal[data-reveal=fade] {
  transform: none;
}
body.home .js-reveal[data-reveal=left] {
  transform: translate3d(28px, 0, 0);
}
body.home .js-reveal[data-reveal=right] {
  transform: translate3d(-28px, 0, 0);
}
body.home .js-reveal[data-reveal=up] {
  transform: translate3d(0, 28px, 0);
}
body.home .js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
body.home [data-scroll-parallax],
body.home [data-scroll-reveal],
body.home .hero__companies {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  --reveal-opacity: 1;
  opacity: var(--reveal-opacity);
  transform: translate3d(calc(var(--reveal-x) + var(--parallax-x)), calc(var(--reveal-y) + var(--parallax-y)), 0) scale(var(--reveal-scale));
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body.home [data-scroll-reveal]:not(.is-visible) {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-opacity: 0;
}
body.home [data-scroll-reveal][data-from=left]:not(.is-visible) {
  --reveal-x: -28px;
  --reveal-y: 0px;
}
body.home [data-scroll-reveal][data-from=right]:not(.is-visible) {
  --reveal-x: 28px;
  --reveal-y: 0px;
}
body.home [data-scroll-reveal][data-from=top]:not(.is-visible) {
  --reveal-x: 0px;
  --reveal-y: -28px;
}
body.home [data-scroll-reveal][data-from=bottom]:not(.is-visible) {
  --reveal-x: 0px;
  --reveal-y: 28px;
}
body.home .section-header[data-scroll-reveal],
body.home .section-header[data-scroll-reveal]:not(.is-visible),
body.home .contact-section__form[data-scroll-reveal],
body.home .contact-section__form[data-scroll-reveal]:not(.is-visible) {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  --reveal-opacity: 1;
  opacity: 1;
  transform: none;
  will-change: auto;
}
body.home .hero__companies:not(.is-visible),
body.home .hero__companies[data-scroll-reveal]:not(.is-visible) {
  --reveal-x: 0px;
  --reveal-y: 30px;
  --reveal-scale: 0.98;
  --reveal-opacity: 0;
}
body.home [data-scroll-parallax].is-parallax-active,
body.home [data-scroll-reveal]:not(.is-visible),
body.home .hero__companies:not(.is-visible) {
  will-change: transform, opacity;
}
body.home .hero__companies .swiper-slide {
  --logo-stagger: 0ms;
  opacity: 0.35;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--logo-stagger);
}
body.home .hero__companies.is-visible .swiper-slide {
  opacity: 1;
}
body.home .hero__companies .swiper-slide:nth-child(1),
body.home .hero__companies .swiper-slide:nth-child(7) {
  --logo-stagger: 0ms;
}
body.home .hero__companies .swiper-slide:nth-child(2),
body.home .hero__companies .swiper-slide:nth-child(8) {
  --logo-stagger: 40ms;
}
body.home .hero__companies .swiper-slide:nth-child(3),
body.home .hero__companies .swiper-slide:nth-child(9) {
  --logo-stagger: 80ms;
}
body.home .hero__companies .swiper-slide:nth-child(4),
body.home .hero__companies .swiper-slide:nth-child(10) {
  --logo-stagger: 120ms;
}
body.home .hero__companies .swiper-slide:nth-child(5),
body.home .hero__companies .swiper-slide:nth-child(11) {
  --logo-stagger: 160ms;
}
body.home .hero__companies .swiper-slide:nth-child(6),
body.home .hero__companies .swiper-slide:nth-child(12) {
  --logo-stagger: 200ms;
}
@media (max-width: 767px) {
  body.home [data-scroll-parallax][data-mobile-parallax=false],
  body.home [data-scroll-reveal][data-mobile-animation=false],
  body.home .hero__companies[data-mobile-animation=false] {
    --parallax-x: 0px;
    --parallax-y: 0px;
    --reveal-x: 0px;
    --reveal-y: 0px;
    --reveal-scale: 1;
    --reveal-opacity: 1;
    opacity: 1;
    transform: none;
    will-change: auto;
  }
  body.home [data-scroll-reveal][data-mobile-animation=false] .swiper-slide,
  body.home .hero__companies[data-mobile-animation=false] .swiper-slide {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body.home .js-hero-intro {
    --intro-y: 16px;
  }
  body.home .hero__title.js-hero-intro,
  body.home .about__title.js-hero-intro,
  body.home .section-header__title.js-hero-intro {
    --intro-y: 18px;
  }
  body.home .about__stat.js-hero-intro,
  body.home .about__feature-card.js-hero-intro,
  body.home .services__card.js-hero-intro,
  body.home .contact-cta__media.js-hero-intro {
    --intro-y: 20px;
  }
  body.home .faq .faq__item.js-hero-intro {
    --intro-y: 16px;
  }
  body.home .testimonials .testimonials__showcase.js-hero-intro,
  body.home .contact-section__media.js-hero-intro {
    --intro-y: 24px;
  }
  body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .career-hero-visual {
    transform: translate3d(0, 32px, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.home .site-header__inner {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .career-hero-visual,
  body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .section__eyebrow,
  body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__title,
  body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__description,
  body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__actions .btn,
  body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__social-proof,
  body.home .hero:not(.hero--intro-ready):not(.hero--intro-done) .hero__companies {
    opacity: 1 !important;
    transform: none !important;
  }
  body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__badge,
  body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__title,
  body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__description,
  body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__stat,
  body.home .about:not(.about--intro-ready):not(.about--intro-done) .about__feature-card {
    opacity: 1 !important;
    transform: none !important;
  }
  body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__eyebrow,
  body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__title,
  body.home .services:not(.services--intro-ready):not(.services--intro-done) .section-header__description,
  body.home .services:not(.services--intro-ready):not(.services--intro-done) .services__card {
    opacity: 1 !important;
    transform: none !important;
  }
  body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__eyebrow,
  body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__title,
  body.home section:not(.hero):not(.about):not(.services):not(.testimonials):not(.faq):not(.contact-section):not(.section--intro-ready):not(.section--intro-done) .section-header__description {
    opacity: 1 !important;
    transform: none !important;
  }
  body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__eyebrow,
  body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__title,
  body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .section-header__description,
  body.home .testimonials:not(.testimonials--intro-ready):not(.testimonials--intro-done) .testimonials__showcase {
    opacity: 1 !important;
    transform: none !important;
  }
  body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__eyebrow,
  body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__title,
  body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .section-header__description,
  body.home .faq:not(.faq--intro-ready):not(.faq--intro-done) .faq__item {
    opacity: 1 !important;
    transform: none !important;
  }
  body.home .contact-cta:not(.contact-cta--intro-ready):not(.contact-cta--intro-done) .contact-cta__title,
  body.home .contact-cta:not(.contact-cta--intro-ready):not(.contact-cta--intro-done) .contact-cta__description,
  body.home .contact-cta:not(.contact-cta--intro-ready):not(.contact-cta--intro-done) .contact-cta__action .btn,
  body.home .contact-cta:not(.contact-cta--intro-ready):not(.contact-cta--intro-done) .contact-cta__media {
    opacity: 1 !important;
    transform: none !important;
  }
  body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__eyebrow,
  body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__title,
  body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .section-header__description,
  body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__form-header,
  body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__media,
  body.home .contact-section:not(.contact-section--intro-ready):not(.contact-section--intro-done) .contact-section__form-body {
    opacity: 1 !important;
    transform: none !important;
  }
  body.home .js-hero-intro,
  body.home .js-reveal,
  body.home [data-scroll-parallax],
  body.home [data-scroll-reveal],
  body.home .hero__companies,
  body.home .hero__companies .swiper-slide {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}

.contact-cta {
  position: relative;
  padding-block: 48px;
}

.contact-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 996px;
  min-height: 234px;
  margin: 0 auto;
  padding: 0 0 0 24px;
  background: linear-gradient(135deg, rgba(24, 154, 157, 0.1019607843) 0%, rgba(24, 154, 157, 0) 14%, rgba(24, 154, 157, 0.1019607843) 95%);
  border: 1px solid rgba(24, 154, 157, 0.2);
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  overflow: hidden;
}

.contact-cta__media {
  align-self: end;
  width: 280px;
}
.contact-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-cta__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 400px;
  padding-inline: 24px;
  text-align: center;
}

.contact-cta__title {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px 0;
  color: #192E48;
}

.contact-cta__description {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  color: #718586;
}

.contact-cta__action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .contact-cta__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    min-height: auto;
    padding: 20px;
    text-align: center;
  }
  .contact-cta__media {
    width: 220px;
    height: 160px;
  }
  .contact-cta__media-bg {
    width: 200px;
    height: 180px;
  }
  .contact-cta__content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    padding-inline: 0;
  }
  .contact-cta__title {
    font-size: 20px;
  }
  .contact-cta__description {
    font-size: 15px;
  }
  .contact-cta__action {
    width: 100%;
  }
  .contact-cta__action .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-cta__media {
    width: 223px;
    height: 140px;
    margin: auto;
  }
  .contact-cta__media-bg {
    width: 180px;
    height: 160px;
  }
}
@media (max-width: 575px) {
  .contact-cta__title {
    font-size: 18px;
  }
  .contact-cta__description {
    font-size: 14px;
  }
}
.contact-section {
  position: relative;
  padding-block: 64px;
  background-image: url("../images/light-bg-2.webp");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.contact-section__card {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: stretch;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 32px;
}

.contact-section__media {
  position: relative;
  min-height: 0;
}

.contact-section__media-img {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

.contact-section__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
  border-radius: 32px;
  z-index: 2;
  box-shadow: -10px 16px 25px -8px rgba(74, 130, 129, 0.16);
  background-color: #ffffff;
  z-index: 2;
  position: relative;
  margin-left: -30px;
}

.contact-section__form-header {
  margin-block-end: 20px;
}

.contact-section__form-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px 0;
  color: #192E48;
}

.contact-section__form-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
  color: #718586;
}

.contact-section__form-body {
  position: relative;
}

.contact-section__form-fallback {
  padding: 24px;
  background: #F7FAFC;
  border-radius: 16px;
  text-align: center;
  color: #718586;
}

.contact-section__form-body .wpcf7 {
  margin: 0;
}

.contact-section__form-body .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-section__form-body .wpcf7-form > p,
.contact-section__form-body .contact-field {
  position: relative;
  margin: 0;
  direction: rtl;
}

.contact-section__form-body .contact-field > br {
  display: none;
}

.contact-section__form-body .contact-field__icon {
  position: absolute;
  inset-inline-start: 16px;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-section__form-body .wpcf7-form-control-wrap {
  display: block;
}

.contact-section__form-body .wpcf7-form-control.wpcf7-text,
.contact-section__form-body .wpcf7-form-control.wpcf7-email,
.contact-section__form-body .wpcf7-form-control.wpcf7-tel,
.contact-section__form-body .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  height: 46px;
  padding-block: 8px;
  padding-inline: 48px 48px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 10px;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #192E48;
  text-align: start;
  direction: rtl;
  box-shadow: none;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.contact-section__form-body .wpcf7-form-control.wpcf7-text::placeholder,
.contact-section__form-body .wpcf7-form-control.wpcf7-email::placeholder,
.contact-section__form-body .wpcf7-form-control.wpcf7-tel::placeholder,
.contact-section__form-body .wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #9aa9aa;
  font-weight: 500;
  opacity: 1;
}
.contact-section__form-body .wpcf7-form-control.wpcf7-text:focus,
.contact-section__form-body .wpcf7-form-control.wpcf7-email:focus,
.contact-section__form-body .wpcf7-form-control.wpcf7-tel:focus,
.contact-section__form-body .wpcf7-form-control.wpcf7-textarea:focus {
  outline: none;
  border-color: #189A9D;
  box-shadow: 0 0 0 3px rgba(24, 154, 157, 0.1);
}
.contact-section__form-body .wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
.contact-section__form-body .wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
.contact-section__form-body .wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
.contact-section__form-body .wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid {
  border-color: #dc4c4c;
}

.contact-section__form-body .wpcf7-form-control.wpcf7-textarea {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.contact-section__form-body .contact-field--submit {
  margin-block-start: 4px;
}

.contact-section__form-body .wpcf7-submit.btn {
  min-height: 48px;
  border-radius: 10px;
}

.contact-section__form-body .wpcf7-submit.btn .btn__label {
  border-block-end: 0;
}

.contact-section__form-body .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #dc4c4c;
}

.contact-section__form-body .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 12px 16px;
  border: 1px solid #dce8e8;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #718586;
}

.contact-section__form-body form.sent .wpcf7-response-output {
  border-color: rgba(34, 160, 107, 0.3);
  background: rgba(34, 160, 107, 0.08);
  color: #22a06b;
}

.contact-section__form-body form.failed .wpcf7-response-output,
.contact-section__form-body form.aborted .wpcf7-response-output,
.contact-section__form-body form.spam .wpcf7-response-output {
  border-color: rgba(220, 76, 76, 0.3);
  background: rgba(220, 76, 76, 0.08);
  color: #dc4c4c;
}

@media (max-width: 991px) {
  .contact-section__card {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .contact-section__media {
    order: -1;
    min-height: 260px;
  }
  .contact-section__media-img {
    object-position: center top;
  }
  .contact-section__form {
    padding: 28px 32px;
    margin-left: 0;
    margin-inline: 0;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding-block: 40px;
  }
  .contact-section__card {
    border-radius: 24px;
  }
  .contact-section__media {
    min-height: 220px;
  }
  .contact-section__form {
    padding: 24px;
  }
  .contact-section__form-title {
    font-size: 20px;
  }
  .contact-section__form-header {
    margin-block-end: 16px;
  }
  .contact-section__form-body .wpcf7-form {
    gap: 12px;
  }
  .contact-section__form-body .wpcf7-form-control.wpcf7-text,
  .contact-section__form-body .wpcf7-form-control.wpcf7-email,
  .contact-section__form-body .wpcf7-form-control.wpcf7-tel {
    height: 44px;
  }
  .contact-section__form-body .wpcf7-submit.btn {
    min-height: 46px;
  }
}
@media (max-width: 575px) {
  .contact-section__form-title {
    font-size: 18px;
  }
  .contact-section__form-description {
    font-size: 13px;
  }
  .contact-section__form-body .contact-field__icon {
    inset-inline-start: 12px;
  }
  .contact-section__form-body .wpcf7-form-control.wpcf7-text,
  .contact-section__form-body .wpcf7-form-control.wpcf7-email,
  .contact-section__form-body .wpcf7-form-control.wpcf7-tel {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-section__form-body .wpcf7-form-control {
    transition: none;
  }
}
.cart-notification {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1), visibility 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-notification.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cart-notification.is-open .cart-notification__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cart-notification[hidden] {
  display: none !important;
}

.cart-notification__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 46, 72, 0.45);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.cart-notification__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(560px, 100%);
  max-height: min(90vh, 640px);
  padding: 32px 28px 28px;
  overflow: auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(16, 42, 43, 0.16);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-notification__close {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #dce8e8;
  color: #718586;
  cursor: pointer;
  transition: color 250ms ease, background-color 250ms ease;
}
.cart-notification__close:hover {
  color: #192E48;
  background: #eaf3f3;
}
.cart-notification__close:focus-visible {
  outline: 2px solid #189A9D;
  outline-offset: 2px;
}

.cart-notification__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-inline-end: 40px;
}

.cart-notification__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: #4ca9a5;
}
.cart-notification__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cart-notification__copy {
  min-width: 0;
  text-align: start;
}

.cart-notification__title {
  margin: 0 0 8px;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.cart-notification__subtitle {
  margin: 0;
  color: #718586;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.cart-notification__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #eaf1f1;
}

.cart-notification__btn.btn {
  flex: 1 1 180px;
  min-width: 0;
  justify-content: center;
}

.cart-notification__btn.btn--primary .btn__icon--plain {
  color: #ffffff;
}
.cart-notification__btn.btn--primary .btn__icon--plain svg path,
.cart-notification__btn.btn--primary .btn__icon--plain svg circle {
  stroke: currentColor;
}
.cart-notification__btn.btn--primary .btn__icon--plain svg circle[fill] {
  fill: currentColor;
  stroke: none;
}

.cart-notification__btn.btn--outline .btn__icon--plain {
  color: #189A9D;
}

body.cart-notification-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .cart-notification__dialog {
    gap: 24px;
    padding: 28px 20px 20px;
  }
  .cart-notification__title {
    font-size: 18px;
  }
  .cart-notification__subtitle {
    font-size: 14px;
  }
  .cart-notification__icon {
    width: 40px;
    height: 40px;
  }
  .cart-notification__btn.btn {
    flex: 1 1 auto;
    width: 100%;
  }
}
.cart-toast {
  position: fixed;
  z-index: 900;
  inset-block-start: 24px;
  inset-inline: 16px;
  margin-inline: auto;
  width: min(360px, 100% - 32px);
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  background: #dc4c4c;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1), visibility 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-toast.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cart-toast[hidden]:not(.is-open) {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .cart-notification,
  .cart-notification__dialog,
  .cart-toast {
    transition: none;
  }
  .cart-notification__dialog,
  .cart-toast {
    transform: none;
  }
}
.u-hidden {
  display: none !important;
}

.u-text-center {
  text-align: center;
}

.u-text-start {
  text-align: start;
}

.u-text-end {
  text-align: end;
}

.u-flex {
  display: flex;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u-full-width {
  width: 100%;
}

.u-relative {
  position: relative;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-block-end: 16px;
  background: linear-gradient(-56.53deg, rgba(164, 215, 214, 0.2) 21.149%, rgba(63, 150, 156, 0.1) 65.558%, rgba(74, 130, 129, 0.02) 99.908%);
  border: 1px solid rgba(104, 218, 221, 0.5);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #189A9D;
  min-width: 120px;
}

.section-header__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  color: #192E48;
}
.section-header__title strong,
.section-header__title span {
  color: #189A9D;
}

.section-header__description {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.67;
  color: #718586;
}

@media (max-width: 767px) {
  .section-header__title {
    font-size: 28px;
  }
  .section-header__description {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .section-header__title {
    font-size: 24px;
  }
  .section-header__description {
    font-size: 15px;
  }
  .section-header__eyebrow {
    font-size: 14px;
    min-width: 0;
  }
}
.hero {
  position: relative;
  background-image: url("../images/bg-light.webp");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__scrub-track {
  position: relative;
  display: block;
}

.hero__stage {
  position: relative;
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
  .hero__stage {
    position: sticky;
    top: var(--hero-sticky-top, var(--cg-header-height, 0px));
    z-index: 1;
  }
}
.hero__inner {
  margin-top: 56px;
}

.hero__content {
  text-align: center;
}

.hero__title {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.25;
  font-weight: 700;
  margin-block-end: 24px;
}

.hero__title-highlight {
  color: #189A9D;
}

.hero__description {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  margin-block-end: 32px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-block-end: 24px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #718586;
  font-size: 14px;
  font-weight: 700;
}

.hero__avatars {
  display: flex;
  height: 25px;
}
.hero__avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual {
  display: flex;
}

.career-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  justify-items: stretch;
  column-gap: 16px;
  width: min(100%, 1280px);
  max-width: 1280px;
  margin-inline: auto;
  margin-block-start: 40px;
  padding-block: 0 24px;
  direction: ltr;
  perspective: 1400px;
  overflow: visible;
}

.hero-card {
  --hero-card-lift: 0px;
  --hero-card-final-rotate: 0deg;
  --hero-card-tilt-x: 0deg;
  --hero-card-tilt-y: 0deg;
  --hero-card-spread-x: 0px;
  --hero-card-spread-y: 0px;
  --hero-card-rotate: 0deg;
  position: relative;
  width: 100%;
  height: 100%;
  isolation: isolate;
  transform-origin: center bottom;
  transform-style: preserve-3d;
  transform: translate3d(var(--hero-card-spread-x), calc(var(--hero-card-lift) + var(--hero-card-spread-y)), 0) rotate(var(--hero-card-rotate)) rotateX(var(--hero-card-tilt-x)) rotateY(var(--hero-card-tilt-y));
  transition: box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1), opacity 0.1s ease;
  opacity: 0;
  will-change: transform;
  cursor: default;
}
.hero-card.is-ready {
  opacity: 1;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background-size: 300% 100%;
  background-position: 0% 50%;
  opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: opacity 250ms ease, background-position 0.5s ease;
}
.hero-card img {
  display: block;
  width: 100%;
  box-shadow: 1px 14px 20px rgba(26, 55, 54, 0.05);
  border-radius: 16px;
  object-fit: contain;
  object-position: center top;
  pointer-events: none;
  user-select: none;
}
.hero-card:hover::before, .hero-card:focus-visible::before {
  opacity: 1;
  background-position: 100% 50%;
}
.hero-card:nth-child(1) {
  --hero-card-final-rotate: -20deg;
  --hero-card-lift: 28px;
  z-index: 3;
}
.hero-card:nth-child(2) {
  --hero-card-final-rotate: 0deg;
  z-index: 2;
}
.hero-card:nth-child(3) {
  --hero-card-final-rotate: 0deg;
  --hero-card-lift: 0px;
  z-index: 5;
}
.hero-card:nth-child(4) {
  --hero-card-final-rotate: 0deg;
  z-index: 2;
}
.hero-card:nth-child(5) {
  --hero-card-final-rotate: 20deg;
  --hero-card-lift: 28px;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .hero-card {
    cursor: pointer;
  }
}
@media (max-width: 1199px) {
  .career-hero-visual {
    max-width: 1080px;
    margin-block-start: 32px;
  }
  .hero-card:nth-child(1) {
    --hero-card-final-rotate: -20deg;
    margin-inline-end: -18%;
  }
  .hero-card:nth-child(5) {
    --hero-card-final-rotate: 20deg;
    margin-inline-start: -18%;
  }
}
@media (max-width: 991px) {
  .hero__stage {
    position: sticky;
    top: var(--hero-sticky-top, var(--cg-header-height, 0px));
    z-index: 1;
  }
  .career-hero-visual {
    max-width: 920px;
    margin-block-start: 24px;
    padding-block-end: 16px;
  }
  .hero-card:nth-child(1) {
    --hero-card-final-rotate: -20deg;
    margin-inline-end: -14%;
  }
  .hero-card:nth-child(5) {
    --hero-card-final-rotate: 20deg;
    margin-inline-start: -14%;
  }
}
@media (max-width: 767px) {
  .career-hero-visual {
    --hero-card-width: clamp(46px, 14.5vw, 70px);
    --hero-card-center-width: clamp(64px, 20vw, 98px);
    --hero-card-gap: clamp(2px, 0.9vw, 6px);
    --hero-overlap: clamp(10px, 4vw, 20px);
    --hero-card-lift-outer: clamp(8px, 2.6vw, 14px);
    width: 100%;
    max-width: 100%;
    margin-block-start: 20px;
    padding-block: 0 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
    justify-content: center;
    justify-items: center;
    align-items: end;
    column-gap: var(--hero-card-gap);
    row-gap: 0;
    overflow: visible;
  }
  .career-hero-visual .hero-card:nth-child(2),
  .career-hero-visual .hero-card:nth-child(4) {
    display: none;
  }
  .hero-card {
    height: auto;
    margin-inline: 0;
  }
  .hero-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
  }
  .hero-card:nth-child(1) {
    --hero-card-final-rotate: -10deg;
    --hero-card-lift: var(--hero-card-lift-outer);
    margin-inline-end: calc(var(--hero-overlap) * -1);
    z-index: 3;
  }
  .hero-card:nth-child(2) {
    --hero-card-final-rotate: 0deg;
    z-index: 2;
  }
  .hero-card:nth-child(3) {
    --hero-card-final-rotate: 0deg;
    --hero-card-lift: 0px;
    grid-column: auto;
    justify-self: center;
    z-index: 5;
  }
  .hero-card:nth-child(4) {
    --hero-card-final-rotate: 0deg;
    z-index: 2;
  }
  .hero-card:nth-child(5) {
    --hero-card-final-rotate: 10deg;
    --hero-card-lift: var(--hero-card-lift-outer);
    margin-inline-start: calc(var(--hero-overlap) * -1);
    z-index: 2;
  }
}
@media (max-width: 575px) {
  .career-hero-visual {
    --hero-card-width: clamp(44px, 14vw, 62px);
    --hero-card-center-width: clamp(60px, 19vw, 88px);
    --hero-card-gap: clamp(2px, 0.7vw, 4px);
    --hero-overlap: clamp(12px, 4.5vw, 18px);
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card {
    --hero-card-spread-x: 0px !important;
    --hero-card-spread-y: 0px !important;
    --hero-card-rotate: var(--hero-card-final-rotate);
    opacity: 1;
    transition: none;
  }
  .hero-card::before {
    transition: none;
  }
  .hero-card:hover::before, .hero-card:focus-visible::before {
    background-position: 0% 50%;
  }
}
.hero__companies {
  width: 90%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  overflow: hidden;
}

.hero__logos-swiper {
  width: 100%;
  overflow: visible;
}
.hero__logos-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.hero__logos-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 58px;
}

.hero__logos-swiper img {
  display: block;
  width: 120px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 767px) {
  .hero__companies {
    width: 100%;
    padding: 16px;
  }
  .hero__logos-swiper .swiper-slide {
    height: 48px;
  }
  .hero__logos-swiper img {
    width: 100px;
    height: 48px;
  }
  .hero__content {
    margin-bottom: 24px;
  }
  .hero__actions .btn {
    width: 100%;
    min-width: 0;
  }
  .hero__social-proof {
    flex-wrap: wrap;
  }
  .hero__inner {
    margin-top: 64px;
  }
}
@media (max-width: 575px) {
  .hero__title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.8;
  }
  .hero__description {
    font-size: 16px;
    padding-inline: 8px;
  }
  .hero__logos-swiper img {
    width: 88px;
    height: 42px;
  }
  .hero__logos-swiper .swiper-slide {
    height: 42px;
  }
}
.about {
  position: relative;
  background-image: url("../images/light-bg-1.webp");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.testimonials {
  position: relative;
  overflow: hidden;
  background-image: url("../images/light-bg-2.webp");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about__content {
  position: relative;
  z-index: 1;
}

.about__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  margin-block-end: 24px;
  color: #192E48;
}

.about__title-highlight {
  color: #189A9D;
}

.about__description {
  font-size: 24px;
  line-height: 1.67;
  margin-block-end: 24px;
  color: #718586;
  font-weight: 600;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-block-end: 40px;
  background: linear-gradient(-56.53deg, rgba(164, 215, 214, 0.2) 21.149%, rgba(63, 150, 156, 0.1) 65.558%, rgba(74, 130, 129, 0.02) 99.908%);
  border: 1px solid rgba(104, 218, 221, 0.5);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #189A9D;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about__stats > div {
  flex-direction: column;
  gap: 24px;
}

.about__stats > div:nth-child(2) {
  padding-top: 24px;
}

.about__stat {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: -10px 16px 25px -8px rgba(74, 130, 129, 0.16);
}

.about__stat-value {
  font-size: 30px;
  font-weight: 700;
  color: #189A9D;
}

.about__stat-value.orange {
  color: #FC7F22;
}

.about__stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #718586;
  font-weight: 600;
}

.about__stat-icon {
  flex-shrink: 0;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 96px;
}

.about__feature-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  padding: 20px 24px;
}

@media (max-width: 575px) {
  .about__feature-card {
    padding: 16px;
  }
}
.about__feature-icon {
  margin-block-end: 24px;
}

.about__feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-block-end: 24px;
  color: #192E48;
  position: relative;
  line-height: 1.8;
}

.about__feature-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 40%;
  height: 3px;
  background: rgba(24, 154, 157, 0.4);
}

.about__feature-text {
  font-size: 14px;
  line-height: 2;
  font-weight: 600;
  color: #718586;
}

.about__visual {
  position: relative;
  z-index: 1;
}
.about__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 575px) {
  .about__visual img {
    margin-right: -12px;
  }
}
@media (max-width: 991px) {
  .about__title {
    font-size: 30px;
  }
  .about__description {
    font-size: 20px;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__features {
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
    margin-inline: auto;
    margin-top: 48px;
  }
  .about__features {
    gap: 16px;
  }
  .about__feature-icon svg {
    width: 56px;
    height: 56px;
  }
  .about__feature-title {
    font-size: 16px;
  }
  .about__feature-text {
    font-size: 12px;
  }
  .about__visual {
    order: -1;
  }
  .about__content {
    max-width: none;
  }
  .about__title {
    font-size: 26px;
    text-align: center;
  }
  .about__description {
    font-size: 18px;
    margin-inline: auto;
  }
  .about__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about__stats > div {
    gap: 16px;
  }
  .about__stat-icon svg {
    width: 38px;
    height: 38px;
  }
  .about__stat {
    gap: 8px;
    padding: 8px;
  }
  .about__stat-value {
    font-size: 20px;
  }
  .about__stat-label {
    font-size: 14px;
  }
  .about__actions {
    justify-content: center;
  }
  .about__image {
    border-radius: 24px;
  }
}
@media (max-width: 575px) {
  .about__title {
    font-size: 24px;
  }
  .about__description {
    font-size: 16px;
  }
  .about__stat-value {
    font-size: 20px;
  }
  .about__stat-label {
    font-size: 11px;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 16px;
}

.services__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px 24px 24px 0;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  border: 8px solid #ffffff;
  transition: box-shadow 250ms ease;
  background: linear-gradient(-135deg, rgba(126, 133, 145, 0.1) 0%, rgba(126, 133, 145, 0) 100%);
}
.services__card.featured {
  background: linear-gradient(-135deg, rgba(24, 154, 157, 0.05) 0%, rgba(24, 154, 157, 0) 100%);
  grid-template-columns: 1fr 1.5fr;
}
.services__card:hover {
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
}

.services__card--cover-letter {
  order: 1;
}

.services__card--linkedin {
  order: 2;
}

.services__card--cv.services__card--featured {
  order: 3;
}

.services__card--consultation.services__card--wide {
  order: 4;
  padding: 24px;
  grid-column: 1/-1;
  grid-template-columns: 1fr 2.5fr;
}

.services__card-content-wraper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services__card--split {
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
}
.services__card--split .services__card-content-wraper {
  order: 1;
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}
.services__card--split .services__card-image-wraper {
  order: 2;
  flex-shrink: 0;
}

.services__card--cv .services__card-image-wraper {
  flex-basis: 40%;
}

.services__card--consultation .services__card-image-wraper {
  flex-basis: 58%;
  border-radius: 16px;
  overflow: hidden;
  object-fit: contain;
}

.services__card-image-wraper--decorative {
  display: flex;
  justify-content: end;
  align-items: end;
  margin-block-end: 48px;
}

.services__card--consultation .services__card-image {
  height: 100%;
  min-height: 320px;
  margin-block-end: 0;
  border-radius: 0;
}

.services__card-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-block-end: 20px;
  background: rgba(104, 218, 221, 0.15);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #189A9D;
}

.services__card--cv .services__card-image {
  height: 100%;
  margin-block-end: 0;
  object-fit: contain;
}

.services__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  margin-block-end: 24px;
  border-radius: 10px;
}

.services__card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  margin-block-end: 12px;
  color: #192E48;
}
.services__card-title span {
  color: #189A9D;
}

.services__card-description {
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 700;
  margin-block-end: 20px;
  color: #718586;
}

.services__card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.services__card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: #9aa9aa;
}
.services__card-feature svg {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .services__card--linkedin,
  .services__card--cover-letter {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .services__card--cv.services__card--featured {
    order: 1;
    grid-column: 1/-1;
  }
  .services__card--linkedin {
    order: 2;
  }
  .services__card--cover-letter {
    order: 3;
  }
  .services__card--consultation.services__card--wide {
    order: 4;
    grid-template-columns: 1fr 1.4fr;
  }
  .services__card--cv .services__card-image-wraper {
    flex-basis: 34%;
  }
}
@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__card,
  .services__card.featured,
  .services__card--consultation.services__card--wide {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .services__card--cv.services__card--featured,
  .services__card--linkedin,
  .services__card--cover-letter,
  .services__card--consultation.services__card--wide {
    order: initial;
    grid-column: 1/-1;
  }
  .services__card-content-wraper {
    order: 1;
    min-width: 0;
  }
  .services__card-image-wraper {
    order: -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .services__card--split {
    flex-direction: column;
  }
  .services__card--split .services__card-image-wraper {
    order: -1;
  }
  .services__card--split .services__card-content-wraper {
    order: 0;
  }
  .services__card--cv .services__card-image-wraper,
  .services__card--consultation .services__card-image-wraper {
    flex-basis: auto;
  }
  .services__card--consultation .services__card-image {
    min-height: auto;
  }
  .services__card-image-wraper--decorative {
    width: 104px;
    margin-block-end: 24px;
    justify-content: center;
  }
  .services__card-title {
    font-size: 18px;
  }
  .services__card .btn {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 575px) {
  .services__card--cv .services__card-image-wraper {
    height: 250px;
  }
  .services__card--cv .services__card-image-wraper img {
    margin-right: auto;
  }
  .services__card-image-wraper--decorative {
    width: 150px;
    margin-right: auto;
    margin-bottom: -46px;
  }
  .services__card, .services__card.featured {
    padding: 16px 16px 16px 0;
  }
  .services__card-content-wraper {
    padding-left: 16px;
  }
  .services__card--wide {
    padding: 16px;
  }
}
.testimonials__showcase {
  position: relative;
  width: 100%;
  padding: 64px 0 80px;
  --testimonials-track-height: 430px;
  --testimonials-motion-duration: 600ms;
  --testimonials-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-mask-image: linear-gradient(to right, transparent, #ffffff 55%, #ffffff 55%, transparent);
  mask-image: linear-gradient(to right, transparent, #ffffff 55%, #ffffff 55%, transparent);
}

.testimonials__showcase.testimonials--measuring,
.testimonials__showcase.testimonials--measuring * {
  transition: none !important;
}

.testimonials__viewport {
  position: relative;
  width: 100%;
  min-height: var(--testimonials-track-height);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.testimonials__viewport:active {
  cursor: grabbing;
}

.testimonials__track {
  display: flex;
  align-items: center;
  direction: ltr;
  width: max-content;
  height: var(--testimonials-track-height);
  min-height: var(--testimonials-track-height);
  will-change: transform;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials__slide {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 150px;
  height: var(--testimonials-track-height);
  margin-inline: 10px;
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.testimonials__slide.is-active {
  width: 268px;
  cursor: grab;
}
.testimonials__slide.is-active .testimonial__card-name {
  font-size: 16px;
}
.testimonials__slide.is-active .testimonial__card-role {
  font-size: 14px;
}

.testimonial__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  direction: rtl;
}

.testimonial__card-summary {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.testimonials__slide.is-active .testimonial__card-summary {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, calc(-50% - 8px), 0);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 600ms;
}

.testimonial__card-details {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: grid-template-rows 600ms cubic-bezier(0.22, 1, 0.36, 1), opacity 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials__slide.is-active .testimonial__card-details {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
}

.testimonial__card-details-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  width: 100%;
}

.testimonial__card-image-wrapper {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 100%;
  height: 168px;
  border-radius: 16px 16px 10px 10px;
  overflow: hidden;
  background: #eaf3f3;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  transform: scale(1);
  transform-origin: center top;
  transition: height 600ms cubic-bezier(0.22, 1, 0.36, 1), border-radius 600ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials__slide.is-active .testimonial__card-image-wrapper {
  height: 248px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
  transform: scale(1);
}

.testimonial__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials__slide.is-active .testimonial__card-image {
  transform: scale(1.05);
}

.testimonial__card-info {
  position: relative;
  z-index: 2;
  width: calc(100% - 16px);
  margin-top: -24px;
  padding: 8px 8px 12px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(13, 82, 84, 0.1);
  text-align: center;
  transition: box-shadow 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial__card-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  margin-block-end: 4px;
  color: #192E48;
}

.testimonial__card-role {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  color: #189A9D;
}

.testimonial__card-content {
  position: relative;
  z-index: 2;
  width: calc(100% - 12px);
  margin-top: -56px;
  padding: 16px 20px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(13, 82, 84, 0.12);
  text-align: center;
  transform: translate3d(0, 12px, 0);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials__slide.is-active .testimonial__card-content {
  transform: translate3d(0, 0, 0);
}

.testimonial__card-content .testimonial__card-name {
  margin-block-end: 8px;
}

.testimonial__card-content .testimonial__card-role {
  margin-block-end: 16px;
}

.testimonial__card-quote {
  position: relative;
  margin-block-end: 16px;
}

.testimonial__card-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
  color: #718586;
  text-align: start;
}

.testimonial__card-divider {
  width: 100%;
  height: 1px;
  margin-block-end: 12px;
  background: rgba(24, 154, 157, 0.18);
}

.testimonial__card-result {
  text-align: start;
}

.testimonial__card-result-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block-end: 8px;
}

.testimonial__card-result-label {
  font-size: 12px;
  font-weight: 700;
  color: #189A9D;
}

.testimonial__card-result-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.testimonial__card-result-value {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  color: #718586;
}

@media (max-width: 1199px) {
  .testimonials__showcase {
    --testimonials-track-height: 390px;
  }
  .testimonials__slide {
    width: 132px;
    margin-inline: 9px;
  }
  .testimonials__slide.is-active {
    width: 236px;
  }
  .testimonial__card-image-wrapper {
    height: 148px;
  }
  .testimonials__slide.is-active .testimonial__card-image-wrapper {
    height: 216px;
  }
  .testimonial__card-content {
    margin-top: -48px;
  }
}
@media (max-width: 991px) {
  .testimonials__showcase {
    padding: 56px 0 64px;
    --testimonials-track-height: 350px;
  }
  .testimonials__slide {
    width: 112px;
    margin-inline: 8px;
  }
  .testimonials__slide.is-active {
    width: 208px;
  }
  .testimonial__card-image-wrapper {
    height: 126px;
  }
  .testimonials__slide.is-active .testimonial__card-image-wrapper {
    height: 188px;
  }
  .testimonial__card-content {
    padding: 12px 16px 16px;
    margin-top: -40px;
  }
}
@media (max-width: 767px) {
  .testimonials__showcase {
    padding: 40px 0 56px;
    --testimonials-track-height: 320px;
  }
  .testimonials__slide {
    width: 92px;
    margin-inline: 6px;
  }
  .testimonials__slide.is-active {
    width: 188px;
  }
  .testimonial__card-image-wrapper {
    height: 104px;
  }
  .testimonials__slide.is-active .testimonial__card-image-wrapper {
    height: 168px;
  }
  .testimonial__card-name {
    font-size: 14px;
  }
  .testimonial__card-role {
    font-size: 11px;
  }
  .testimonial__card-content {
    padding: 12px;
    margin-top: -32px;
  }
  .testimonial__card-text {
    font-size: 11px;
  }
}
@media (max-width: 575px) {
  .testimonials__showcase {
    --testimonials-track-height: 290px;
  }
  .testimonials__slide {
    width: 150px;
    margin-inline: 5px;
  }
  .testimonials__slide.is-active {
    width: 168px;
  }
  .testimonial__card-image-wrapper {
    height: 84px;
  }
  .testimonial__card-info {
    margin-top: -12px;
  }
  .testimonials__slide.is-active .testimonial__card-name {
    font-size: 13px;
  }
  .testimonials__slide.is-active .testimonial__card-role {
    font-size: 11px;
    margin-block-end: 8px;
  }
  .testimonial__card-quote {
    margin-block-end: 8px;
  }
  .testimonials__slide.is-active .testimonial__card-image-wrapper {
    height: 148px;
  }
  .testimonial__card-info {
    padding: 4px;
    border-radius: 6px;
  }
  .testimonial__card-image-wrapper {
    height: 140px;
  }
  .testimonials__showcase {
    padding: 0 0 32px 0;
  }
  .testimonial__card-name {
    font-size: 8px;
  }
  .testimonial__card-role {
    font-size: 6px;
  }
  .testimonial__card-content {
    padding: 8px;
    margin-top: -24px;
  }
  .testimonial__card-divider {
    margin-block-end: 8px;
  }
  .testimonial__card-result-value {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials__showcase {
    --testimonials-motion-duration: 0.01ms;
  }
  .testimonials__track,
  .testimonials__slide,
  .testimonial__card,
  .testimonial__card-summary,
  .testimonial__card-details,
  .testimonial__card-image-wrapper,
  .testimonial__card-image,
  .testimonial__card-info,
  .testimonial__card-content {
    transition-duration: 0.01ms !important;
  }
  .testimonial__card-details {
    transition-property: none;
  }
  .testimonial__card-image,
  .testimonial__card-image-wrapper,
  .testimonial__card-summary,
  .testimonial__card-details,
  .testimonial__card-content {
    transform: none !important;
  }
}
.services-page {
  direction: rtl;
  background-color: #F7FAFC;
  background-image: url("../images/bg-light.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 96px;
}

.services-hero {
  position: relative;
  padding-block: 112px 32px;
  padding-top: 128px;
}

.services-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 32px 40px;
}

.services-hero__content {
  max-width: 620px;
  justify-self: stretch;
}

.services-hero__title {
  margin: 0 0 20px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
  color: #192E48;
}

.services-hero__title-muted {
  color: #192E48;
}

.services-hero__title-highlight {
  color: #189A9D;
}

.services-hero__description {
  margin: 0 0 32px;
  max-width: 597px;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  color: #718586;
}

.services-hero__indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 25px;
}

.services-hero__indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.services-hero__indicator-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}
.services-hero__indicator-icon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.services-hero__indicator-title {
  margin: 0;
  color: #189A9D;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.services-hero__indicator-subtitle {
  margin: 0;
  color: #718586;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 8px;
}

.services-hero__visual {
  position: relative;
  width: min(100%, 583px);
  height: 420px;
  justify-self: start;
  overflow: hidden;
}

.services-hero__rings {
  position: absolute;
  inset-inline-start: 3px;
  top: 0;
  width: min(100%, 580px);
  height: auto;
  pointer-events: none;
}

.services-panel {
  position: relative;
  margin-top: -64px;
  z-index: 2;
}

.services-panel__inner {
  margin-inline: auto;
  padding: 32px 32px 40px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
  margin-bottom: 48px;
}

.services-panel__content {
  position: relative;
  min-height: 360px;
  transition: opacity 180ms ease;
}
.services-panel__content.is-loading {
  opacity: 0.55;
  pointer-events: none;
}
.services-panel__content.is-filtering-out {
  opacity: 0;
  transform: translateY(4px);
}
.services-panel__content.is-filtering-in {
  opacity: 1;
  transform: translateY(0);
}
.services-panel__content::after {
  content: "";
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 50%;
  width: 28px;
  height: 28px;
  margin-inline-start: -14px;
  border: 2px solid rgba(24, 154, 157, 0.2);
  border-block-start-color: #189A9D;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: opacity 160ms ease;
}
.services-panel__content.is-loading::after {
  opacity: 1;
  animation: services-grid-spin 0.7s linear infinite;
}

@keyframes services-grid-spin {
  to {
    transform: rotate(360deg);
  }
}
.services-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(24, 154, 157, 0.2);
}

.services-filters__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 188px;
  height: 48px;
  padding-inline: 20px;
  border: 0;
  border-radius: 12px;
  background: rgba(24, 154, 157, 0.05);
  color: #189A9D;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 250ms ease, color 250ms ease, box-shadow 250ms ease;
}
.services-filters__tab:hover {
  box-shadow: 0 8px 20px rgba(24, 154, 157, 0.12);
}
.services-filters__tab:focus-visible {
  outline: 2px solid #189A9D;
  outline-offset: 3px;
}
.services-filters__tab.is-active {
  background: #189A9D;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(24, 154, 157, 0.2);
}

.services-filters__tab-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}
.services-filters__tab-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.services-filters__tab-label {
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 100%));
  justify-content: center;
  gap: 24px;
  align-items: stretch;
}

.services-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 354px;
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(24, 154, 157, 0.15);
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: opacity 180ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.services-card.is-filtering-out {
  opacity: 0;
}
.services-card.is-filtering-in {
  animation: services-card-in 220ms ease;
}
.services-card.is-filter-hidden, .services-card[hidden] {
  display: none;
}
.services-card:hover {
  border-color: rgba(24, 154, 157, 0.35);
  box-shadow: 0 6px 24px rgba(24, 154, 157, 0.39);
}
.services-card:hover .services-card__actions, .services-card:focus-within .services-card__actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.services-card .services-card__actions {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem;
  border-radius: 40px;
  backdrop-filter: blur(15px);
  border: 1px solid #ffffff;
}
.services-card .services-card__actions svg {
  width: 35px;
  height: 35px;
}
.services-card:hover .services-card__cta, .services-card:focus-within .services-card__cta {
  color: #ffffff;
  background-color: transparent;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 6px 18px rgba(24, 154, 157, 0.16);
}
.services-card:hover .services-card__cta .services-card__cta-icon-img--default, .services-card:focus-within .services-card__cta .services-card__cta-icon-img--default {
  opacity: 0;
}
.services-card:hover .services-card__cta .services-card__cta-icon-img--active, .services-card:focus-within .services-card__cta .services-card__cta-icon-img--active {
  opacity: 1;
}
.services-card .services-card__cta.is-in-cart {
  color: #ffffff;
  background-color: transparent;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 6px 18px rgba(24, 154, 157, 0.16);
}
.services-card .services-card__cta.is-in-cart .services-card__cta-icon {
  display: none;
}
.services-card .services-card__cta.is-in-cart .services-card__cta-label {
  display: inline;
}

@keyframes services-card-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.services-card__media {
  position: relative;
  margin: 10px 10px 0;
  height: 169px;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(24, 154, 157, 0.1) 0%, rgba(170, 208, 210, 0.1) 38%, rgba(24, 154, 157, 0.2) 100%);
}

.services-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-card__actions {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1), visibility 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.services-card__actions button.services-card__action svg {
  transition: transform 250ms ease;
}
.services-card__actions .services-card__action:hover svg {
  transform: translateY(-2px);
}

.services-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.services-card__action:hover, .services-card__action:active {
  background: transparent;
  box-shadow: none;
  transform: none;
  opacity: 1;
}
.services-card__action:focus-visible {
  outline: 2px solid #189A9D;
  outline-offset: 2px;
}

.services-card__action--wishlist {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.services-card__action--wishlist .services-card__wishlist-path {
  fill: #ff0d0d;
  fill-opacity: 0.35;
  transition: fill-opacity 250ms ease;
}
.services-card__action--wishlist.is-active .services-card__wishlist-path {
  fill-opacity: 1;
}

.services-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 16px 20px;
}

.services-card__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.services-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  order: 2;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
}

.services-card__rating-count {
  color: #cbcbcb;
}

.services-card__star {
  width: 15px;
  height: 15px;
  margin-inline-start: 2px;
}

.services-card__title {
  order: 1;
  flex: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  text-align: start;
}
.services-card__title a {
  color: inherit;
  text-decoration: none;
}
.services-card__title a:hover {
  color: #189A9D;
}

.services-card__description {
  margin: 0 0 20px;
  color: #718586;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.services-card__footer > a.added_to_cart,
.services-card__footer > .added_to_cart.wc-forward {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
}

.services-card__price {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  color: #189A9D;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.services-card__price .woocommerce-Price-amount,
.services-card__price .amount,
.services-card__price bdi {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  white-space: nowrap;
}
.services-card__price .woocommerce-Price-currencySymbol {
  font-size: 0.75em;
  font-weight: inherit;
  margin-inline-start: 0.2em;
}
.services-card__price del {
  color: #718586;
  font-size: 0.72em;
  font-weight: 600;
  opacity: 0.7;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}
.services-card__price del .woocommerce-Price-amount,
.services-card__price del .amount,
.services-card__price del bdi {
  color: inherit;
  font-weight: inherit;
}
.services-card__price ins {
  color: #189A9D;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
}
.services-card__price ins .woocommerce-Price-amount,
.services-card__price ins .amount,
.services-card__price ins bdi {
  color: inherit;
  font-weight: inherit;
}

.services-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-width: 120px;
  height: 47px;
  min-height: 47px;
  padding-inline: 0;
  border-radius: 16px;
  transition: color 250ms ease, background-color 250ms ease, background-image 250ms ease, background-position 0.5s ease, box-shadow 250ms ease;
}
.services-card__cta .btn__icon,
.services-card__cta .services-card__cta-icon {
  width: 34px;
  height: 34px;
  background: transparent;
}
.services-card__cta .services-card__cta-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.services-card__cta .services-card__cta-icon-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 34px;
  height: 34px;
  margin: auto;
  transition: opacity 250ms ease;
}
.services-card__cta .services-card__cta-icon-img--default {
  opacity: 1;
}
.services-card__cta .services-card__cta-icon-img--active {
  opacity: 0;
}
.services-card__cta .services-card__cta-label {
  display: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.services-card__cta:hover, .services-card__cta:focus-visible {
  color: #ffffff;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  background-size: 200% 200%;
  background-position: 40% 20%;
  box-shadow: 0 8px 25px rgba(24, 154, 157, 0.2);
}
.services-card__cta:hover .services-card__cta-icon-img--default, .services-card__cta:focus-visible .services-card__cta-icon-img--default {
  opacity: 0;
}
.services-card__cta:hover .services-card__cta-icon-img--active, .services-card__cta:focus-visible .services-card__cta-icon-img--active {
  opacity: 1;
}
.services-card__cta:focus-visible {
  outline: 2px solid #189A9D;
  outline-offset: 3px;
}
.services-card__cta.is-in-cart {
  color: #ffffff;
  background-color: transparent;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 6px 18px rgba(24, 154, 157, 0.16);
  pointer-events: auto;
  opacity: 1;
}
.services-card__cta.is-in-cart .services-card__cta-icon,
.services-card__cta.is-in-cart .btn__icon {
  display: none;
}
.services-card__cta.is-in-cart .services-card__cta-label {
  display: inline;
}
.services-card__cta.loading:not(.is-in-cart), .services-card__cta.added:not(.is-in-cart) {
  pointer-events: none;
  opacity: 0.85;
}

.services-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 280px;
  text-align: center;
  padding: 32px;
}
.services-empty.is-hidden, .services-empty[hidden] {
  display: none;
}

.services-empty__title {
  color: #192E48;
  font-size: 20px;
  font-weight: 700;
}

.services-empty__description {
  color: #718586;
  font-size: 15px;
  font-weight: 600;
}

.services-empty__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.services-empty__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .services-panel__content,
  .services-panel__content.is-loading::after,
  .services-card,
  .services-card.is-filtering-in,
  .services-card__actions,
  .services-card__action,
  .services-card__cta,
  .services-card__cta-icon-img {
    transition: none;
    animation: none;
  }
  .services-card__actions {
    transform: none;
  }
  .services-panel__content.is-loading::after {
    opacity: 0;
  }
}
@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 267px));
  }
}
@media (max-width: 991px) {
  .services-hero {
    padding-block: 64px 96px;
  }
  .services-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-hero__content {
    order: 1;
    max-width: none;
  }
  .services-hero__description {
    margin-inline: auto;
    font-size: 20px;
    line-height: 1.7;
  }
  .services-hero__indicator-title {
    font-size: 13px;
  }
  .services-hero__indicator-subtitle {
    font-size: 12px;
  }
  .services-hero__visual {
    order: 0;
    justify-self: center;
    width: min(100%, 520px);
    height: 360px;
  }
  .services-panel {
    margin-top: -40px;
  }
  .services-panel__inner {
    padding: 24px;
    border-radius: 32px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 267px));
  }
}
@media (max-width: 767px) {
  .services-hero__title {
    font-size: 28px;
  }
  .services-hero__description {
    font-size: 18px;
    line-height: 1.7;
  }
  .services-hero__visual {
    height: 300px;
  }
  .services-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .services-filters__tab {
    flex: 0 0 auto;
    min-width: 160px;
    height: 44px;
    font-size: 14px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }
  .services-card {
    max-width: none;
  }
}
@media (max-width: 575px) {
  .services-hero {
    padding-block: 96px 80px;
  }
  .services-hero__title {
    font-size: 24px;
  }
  .services-hero__description {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .services-hero__indicator {
    justify-content: flex-start;
  }
  .services-hero__indicator svg {
    width: 35px;
    height: 35px;
  }
  .services-hero__visual {
    height: 260px;
  }
  .services-card__cta {
    width: 100px;
  }
  .services-card__price {
    font-size: 20px;
    gap: 4px;
  }
}
.service-page {
  background-image: url("../images/bg-light.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.service-page__woocommerce {
  width: 100%;
}

.service-page__panel {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  padding: 20px 24px 32px;
  margin-bottom: 48px;
}

.service-page__layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 40px 48px;
}

.service-page__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.service-page__media {
  width: 100%;
  max-height: 400px;
  aspect-ratio: 1/1;
  border: 8px solid #ffffff;
  border-radius: 24px;
  box-shadow: -10px 16px 25px -8px rgba(74, 130, 129, 0.16);
  overflow: hidden;
  background: #eaf3f3;
}

.service-page__image {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: inherit;
}

.service-page__tabs {
  margin-bottom: 0;
}

.service-page__tab-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  margin: 0 0 20px;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(24, 154, 157, 0.12);
}

.service-page__tab.btn--tab {
  flex: 1;
}

.service-page__tab {
  flex: 1 1 auto;
}

.service-page__tab-panel {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: transparent;
}
.service-page__tab-panel[hidden] {
  display: none !important;
}
.service-page__tab-panel > h2:first-child {
  display: none;
}

.service-page__tab-panel[id=cg-panel-description] p {
  margin: 0 0 12px;
  color: #718586;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  text-align: start;
}
.service-page__tab-panel[id=cg-panel-description] ul,
.service-page__tab-panel[id=cg-panel-description] ol {
  margin: 0 0 12px;
  padding-inline-start: 20px;
  color: #718586;
  font-size: 15px;
  line-height: 1.85;
}

.service-page__description {
  margin-bottom: 20px;
}
.service-page__description p {
  margin: 0 0 12px;
  color: #718586;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

.service-page__excerpt {
  margin: 0;
}
.service-page__excerpt p {
  margin: 0 0 12px;
  color: #718586;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  text-align: start;
}
.service-page__excerpt p:last-child {
  margin-bottom: 0;
}

.service-page__title {
  margin: 0 0 16px;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.service-page__title-accent {
  color: #189A9D;
}

.service-page__offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.service-page__price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.service-page__price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: #189A9D;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}
.service-page__price .woocommerce-Price-amount,
.service-page__price .amount,
.service-page__price bdi {
  color: #189A9D;
  font-weight: 700;
}
.service-page__price del {
  order: 2;
  color: #a6a6a6;
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
}
.service-page__price del .woocommerce-Price-amount,
.service-page__price del .amount,
.service-page__price del bdi {
  color: #718586;
}
.service-page__price ins {
  order: 1;
  text-decoration: none;
}

.service-page__delivery {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 13px;
  background: rgba(24, 154, 157, 0.1);
  color: #189A9D;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.service-page__delivery-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-page__delivery-check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: #189A9D;
}

.service-page__delivery-text {
  white-space: nowrap;
}

.service-page__cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.service-page__wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding-inline: 16px;
  border: 1px solid #dce8e8;
  border-radius: 16px;
  background: #ffffff;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 250ms ease, color 250ms ease, background-color 250ms ease;
}
.service-page__wishlist:hover, .service-page__wishlist:focus-visible {
  border-color: #e11d48;
  color: #e11d48;
  outline: 0;
}
.service-page__wishlist.is-active {
  border-color: rgba(225, 29, 72, 0.35);
  background: rgba(225, 29, 72, 0.08);
  color: #e11d48;
}
.service-page__wishlist.is-active svg path {
  fill: #e11d48;
  stroke: #e11d48;
}

.service-page__rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #192E48;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.service-page__rating-summary:hover, .service-page__rating-summary:focus-visible {
  color: #189A9D;
  outline: 0;
}

.service-page__rating-avg {
  color: #192E48;
}

.service-page__rating-count {
  color: #718586;
  font-weight: 500;
}

.service-page__rating-stars {
  display: inline-flex;
  align-items: center;
}
.service-page__rating-stars .star-rating {
  font-size: 12px;
}

.service-page__cart-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.service-page__cart-form .quantity {
  display: none;
}
.service-page__cart-form .service-page__cta.btn {
  width: 100%;
  min-height: 58px;
  gap: 12px;
  border-radius: 16px;
  font-size: 18px;
}
.service-page__cart-form .service-page__cta-icon {
  width: auto;
  height: auto;
  background: transparent !important;
}
.service-page__cart-form .service-page__cta-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.service-page__cart .variations_form .variations {
  margin-bottom: 16px;
}
.service-page__cart .variations_form .variations td,
.service-page__cart .variations_form .variations th {
  padding: 8px 0;
  border: 0;
  background: transparent;
  vertical-align: middle;
}
.service-page__cart .variations_form .variations label {
  color: #192E48;
  font-weight: 600;
}
.service-page__cart .variations_form .variations select {
  min-height: 44px;
  padding-inline: 12px;
  border: 1px solid #dce8e8;
  border-radius: 10px;
  background: #ffffff;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
}
.service-page__cart .variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page__payments {
  margin-bottom: 16px;
}

.service-page__payments-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  color: #189A9D;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.service-page__payments-label::before, .service-page__payments-label::after {
  content: "";
  flex: 1 1 auto;
  width: 100%;
  display: inline-block;
  height: 2px;
  transform: scaleY(0.5);
  background: #189A9D;
}
.service-page__payments-label span {
  flex-shrink: 0;
}

.woocommerce div.product form.cart {
  margin-bottom: 0;
}

.service-page__payments-logos {
  display: flex;
  justify-content: center;
}

.service-page__payments-image {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.service-page__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.service-page__secure-icon {
  flex-shrink: 0;
  color: #94a3b8;
}

.service-page div.product .star-rating,
.service-page .star-rating {
  display: inline-block;
  overflow: hidden;
  position: relative;
  float: none;
  width: 5.4em;
  height: 1em;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: #c5d7d7;
}
.service-page div.product .star-rating::before,
.service-page .star-rating::before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  color: #c5d7d7;
  letter-spacing: 0.12em;
}
.service-page div.product .star-rating span,
.service-page .star-rating span {
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.5em;
  letter-spacing: 0.12em;
}
.service-page div.product .star-rating span::before,
.service-page .star-rating span::before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  color: #FC7F22;
  letter-spacing: 0.12em;
}
.service-page .woocommerce-Reviews {
  margin-top: 8px;
}
.service-page .service-page__reviews-summary {
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #eaf3f3;
  border: 1px solid #eaf1f1;
}
.service-page .service-page__reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.service-page .service-page__reviews-avg {
  color: #192E48;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.service-page .service-page__reviews-stars {
  display: inline-flex;
  align-items: center;
}
.service-page .service-page__reviews-count {
  margin: 0;
  width: 100%;
  color: #718586;
  font-size: 14px;
}
.service-page .woocommerce-Reviews-title {
  margin: 0 0 16px;
  color: #192E48;
  font-size: 18px;
  font-weight: 700;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li,
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li.comment,
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li.review {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment_container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin: 0;
  padding: 16px 20px;
  border: 0;
  border-radius: 16px;
  background: #eaf3f3;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li img.avatar {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  float: none;
  flex: 0 0 48px;
  width: 48px;
  max-width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: none;
  object-fit: cover;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text .star-rating {
  margin: 0;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin: 0;
  color: #718586;
  font-size: 13px;
  line-height: 1.5;
  white-space: normal;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text .woocommerce-review__author {
  color: #192E48;
  font-size: 15px;
  font-weight: 700;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text .woocommerce-review__dash {
  display: none;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text time,
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text .woocommerce-review__published-date {
  color: #718586;
  font-size: 13px;
  font-weight: 500;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text .description {
  width: 100%;
  color: #425b5d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  text-align: start;
}
.service-page #reviews.woocommerce-Reviews #comments ol.commentlist li .comment-text .description p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.service-page .woocommerce-review__verified {
  display: inline-block;
  margin-inline-start: 8px;
  color: #22a06b;
  font-size: 12px;
  font-weight: 600;
}
.service-page .woocommerce-noreviews {
  margin: 0 0 16px;
  color: #718586;
  font-size: 15px;
}
.service-page #review_form_wrapper {
  margin-top: 16px;
  padding: 20px;
  border-radius: 16px;
  background: #f9fdfd;
  border: 1px solid #eaf1f1;
}
.service-page #respond .comment-reply-title {
  display: block;
  margin-bottom: 16px;
  color: #192E48;
  font-size: 16px;
  font-weight: 700;
}
.service-page #respond .comment-form-rating,
.service-page #respond .comment-form-comment,
.service-page #respond .comment-form-author,
.service-page #respond .comment-form-email {
  margin-bottom: 16px;
}
.service-page #respond label {
  display: block;
  margin-bottom: 8px;
  color: #425b5d;
  font-size: 14px;
  font-weight: 600;
}
.service-page #respond input[type=text],
.service-page #respond input[type=email],
.service-page #respond textarea,
.service-page #respond select {
  width: 100%;
  padding: 12px;
  border: 1px solid #dce8e8;
  border-radius: 10px;
  background: #ffffff;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 14px;
}
.service-page #respond select#rating {
  width: auto;
  min-width: 180px;
}
.service-page #respond p.stars {
  display: block;
  margin: 0 0 12px;
  padding: 0;
}
.service-page #respond p.stars span {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.service-page #respond p.stars a {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  text-indent: 0;
}
.service-page #respond p.stars a::before {
  content: "★";
  position: absolute;
  inset: 0;
  color: #c5d7d7;
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  text-indent: 0;
}
.service-page #respond p.stars:hover a::before {
  color: #FC7F22;
}
.service-page #respond p.stars:hover a:hover ~ a::before {
  color: #c5d7d7;
}
.service-page #respond p.stars.selected a:not(.active)::before, .service-page #respond p.stars.selected a.active::before {
  color: #FC7F22;
}
.service-page #respond p.stars.selected a.active ~ a::before {
  color: #c5d7d7;
}
.service-page #respond .form-submit input[type=submit],
.service-page #respond .form-submit .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-inline: 24px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  color: #ffffff;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.service-page .woocommerce-message,
.service-page .woocommerce-info,
.service-page .woocommerce-error {
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 16px;
  background: #eaf3f3;
  color: #192E48;
  list-style: none;
}

.service-page__details {
  margin-bottom: 48px;
}

.service-page__details-panel {
  margin-bottom: 0;
}

.service-page__details-title {
  margin: 0 0 20px;
  color: #192E48;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  text-align: start;
}

.service-page__details-content {
  color: #718586;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  text-align: start;
}
.service-page__details-content p {
  margin: 0 0 16px;
}
.service-page__details-content p:last-child {
  margin-bottom: 0;
}
.service-page__details-content h2,
.service-page__details-content h3,
.service-page__details-content h4 {
  margin: 24px 0 12px;
  color: #192E48;
  font-weight: 700;
  line-height: 1.4;
}
.service-page__details-content h2 {
  font-size: 22px;
}
.service-page__details-content h3 {
  font-size: 18px;
}
.service-page__details-content ul,
.service-page__details-content ol {
  margin: 0 0 16px;
  padding-inline-start: 20px;
}
.service-page__details-content li + li {
  margin-top: 8px;
}

.service-page__sticky-cart {
  position: fixed;
  z-index: 200;
  inset-inline: 0;
  bottom: 0;
  padding-block-end: calc(16px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(100% + 16px));
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 350ms cubic-bezier(0.22, 1, 0.36, 1), visibility 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.service-page__sticky-cart.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-page__sticky-cart-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: -10px 16px 25px -8px rgba(74, 130, 129, 0.16);
  backdrop-filter: blur(12px);
}

.service-page__sticky-cart-info {
  min-width: 0;
  flex: 1 1 auto;
}

.service-page__sticky-cart-title {
  margin: 0 0 2px;
  color: #192E48;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: start;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-page__sticky-cart-price {
  color: #189A9D;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.service-page__sticky-cart-price del {
  margin-inline-start: 8px;
  color: #718586;
  font-size: 13px;
  font-weight: 600;
}

.service-page__sticky-cart-btn.btn {
  flex: 0 0 auto;
  min-height: 48px;
  padding-inline: 20px;
  gap: 8px;
  white-space: nowrap;
}

body.has-sticky-atc {
  padding-bottom: 96px;
}

.menu-open .service-page__sticky-cart {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .service-page__sticky-cart {
    transition: none;
    transform: none;
  }
}
@media (max-width: 1199px) {
  .service-page__layout {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    column-gap: 32px;
  }
  .service-page__media {
    width: 100%;
    max-width: none;
  }
  .service-page__panel {
    padding-inline: 24px;
  }
}
@media (max-width: 991px) {
  .service-page {
    padding-block: 32px 64px;
  }
  .service-page__panel {
    padding: 24px 20px 32px;
    border-radius: 32px;
  }
  .service-page__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-page__info {
    max-width: none;
  }
  .service-page__media {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
  .service-page__tab[data-tab=description],
  .service-page__tab[data-tab=reviews] {
    min-width: 0;
    flex: 1 1 auto;
    width: auto;
  }
}
@media (max-width: 767px) {
  .service-page__title {
    font-size: 22px;
  }
  .service-page__price {
    font-size: 26px;
  }
  .service-page__offer {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-page__delivery-text {
    white-space: normal;
  }
  .service-page__cart-form .service-page__cta.btn {
    min-height: 52px;
    font-size: 16px;
  }
  .service-page__tab-list {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .service-page {
    padding-block: 24px 48px;
  }
  .service-page__panel {
    padding: 24px 16px 24px;
    border-radius: 24px;
    margin-top: 56px;
  }
  .service-page__tab.btn--tab {
    min-width: 0;
    padding-inline: 16px;
    font-size: 14px;
  }
  .service-page__details-title {
    font-size: 20px;
  }
  .service-page__sticky-cart-inner {
    padding: 12px;
    gap: 12px;
    border-radius: 16px;
  }
  .service-page__sticky-cart-title {
    font-size: 13px;
  }
  .service-page__sticky-cart-btn.btn {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
  }
}
.page-content {
  background-color: #F7FAFC;
}

.page-content__article {
  min-width: 0;
}

.page-content__title {
  margin: 0 0 32px;
  color: #192E48;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.35;
}
.page-content__title a {
  color: inherit;
  text-decoration: none;
}

.page-content__body {
  min-width: 0;
}

.woocommerce-account .woocommerce {
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
}
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-notice {
  margin-block-end: 24px;
  padding: 16px 20px;
  border: 0;
  border-radius: 16px;
  background: #eaf3f3;
  color: #192E48;
  list-style: none;
}
.woocommerce-account .woocommerce-error {
  background: rgba(220, 76, 76, 0.08);
  color: #dc4c4c;
}
.woocommerce-account .woocommerce-message {
  background: rgba(34, 160, 107, 0.08);
  color: #22a06b;
}
.woocommerce-account a {
  color: #189A9D;
}
.woocommerce-account form .form-row {
  margin-block-end: 20px;
  padding: 0;
}
.woocommerce-account input.input-text,
.woocommerce-account textarea,
.woocommerce-account select,
.woocommerce-account .select2-container .select2-selection--single {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 16px;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  box-shadow: none;
}
.woocommerce-account input.input-text:focus,
.woocommerce-account textarea:focus,
.woocommerce-account select:focus,
.woocommerce-account .select2-container .select2-selection--single:focus {
  border-color: #4ca9a5;
  box-shadow: 0 0 0 4px rgba(76, 169, 165, 0.1);
  outline: 0;
}
.woocommerce-account label {
  display: block;
  margin-block-end: 8px;
  color: #192E48;
  font-size: 14px;
  font-weight: 600;
}
.woocommerce-account button.button,
.woocommerce-account a.button,
.woocommerce-account input.button,
.woocommerce-account .woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-inline: 24px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  color: #ffffff;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
}
.woocommerce-account button.button:hover, .woocommerce-account button.button:focus,
.woocommerce-account a.button:hover,
.woocommerce-account a.button:focus,
.woocommerce-account input.button:hover,
.woocommerce-account input.button:focus,
.woocommerce-account .woocommerce-button:hover,
.woocommerce-account .woocommerce-button:focus {
  background: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  color: #ffffff;
}
.woocommerce-account table.shop_table {
  width: 100%;
  margin-block-end: 32px;
  border: 1px solid #eaf1f1;
  border-radius: 16px;
  border-collapse: separate;
  overflow: hidden;
  background: #ffffff;
}
.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
  padding: 16px;
  border-color: #eaf1f1;
  text-align: start;
  vertical-align: middle;
}
.woocommerce-account table.shop_table th {
  background: #eaf3f3;
  font-weight: 700;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-block-end: 32px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dce8e8;
  color: #192E48;
  font-weight: 600;
  text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  border-color: transparent;
  color: #ffffff;
}
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

@media (max-width: 767px) {
  .page-content__title {
    margin-block-end: 24px;
  }
  .woocommerce-account table.shop_table th,
  .woocommerce-account table.shop_table td {
    padding: 12px;
  }
  .woocommerce-account button.button,
  .woocommerce-account a.button,
  .woocommerce-account input.button {
    width: 100%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation a {
    width: 100%;
  }
}
.cg-checkout-flow .cg-checkout-flow__panel {
  margin-block-end: 48px;
}
@media (min-width: 1200px) {
  .cg-checkout-flow .container--wide {
    width: min(100% - 48px, 1440px);
  }
}
@media (min-width: 1440px) {
  .cg-checkout-flow .container--wide {
    width: min(100% - 64px, 1440px);
  }
}

.cg-checkout-flow__title {
  margin: 0 0 32px;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.cg-checkout-flow__title .service-page__title-accent {
  color: #189A9D;
}

.cg-checkout-flow__body {
  min-width: 0;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
}
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-notice,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-notice {
  margin-block-end: 24px;
  padding: 16px 20px;
  border: 0;
  border-radius: 16px;
  background: #eaf3f3;
  color: #192E48;
  list-style: none;
  font-weight: 500;
}
.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-error {
  background: rgba(220, 76, 76, 0.08);
  color: #dc4c4c;
}
.woocommerce-cart .woocommerce-message,
.woocommerce-checkout .woocommerce-message {
  background: rgba(34, 160, 107, 0.08);
  color: #22a06b;
}
.woocommerce-cart a,
.woocommerce-checkout a {
  color: #189A9D;
}
.woocommerce-cart form .form-row,
.woocommerce-checkout form .form-row {
  margin-block-end: 20px;
  padding: 0;
  float: none;
  width: 100%;
}
.woocommerce-cart form .form-row-first,
.woocommerce-cart form .form-row-last,
.woocommerce-checkout form .form-row-first,
.woocommerce-checkout form .form-row-last {
  width: 100%;
}
@media (min-width: 768px) {
  .woocommerce-cart form .form-row-first,
  .woocommerce-cart form .form-row-last,
  .woocommerce-checkout form .form-row-first,
  .woocommerce-checkout form .form-row-last {
    width: calc(50% - 12px);
    float: none;
    display: inline-block;
    vertical-align: top;
  }
  .woocommerce-cart form .form-row-first,
  .woocommerce-checkout form .form-row-first {
    margin-inline-end: 24px;
  }
}
.woocommerce-cart input.input-text,
.woocommerce-cart textarea,
.woocommerce-cart select,
.woocommerce-cart .select2-container .select2-selection--single,
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 16px;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 15px;
  box-shadow: none;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.woocommerce-cart input.input-text:focus,
.woocommerce-cart textarea:focus,
.woocommerce-cart select:focus,
.woocommerce-cart .select2-container .select2-selection--single:focus,
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout .select2-container .select2-selection--single:focus {
  border-color: #4ca9a5;
  box-shadow: 0 0 0 4px rgba(76, 169, 165, 0.1);
  outline: 0;
}
.woocommerce-cart .select2-container .select2-selection--single,
.woocommerce-checkout .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
}
.woocommerce-cart .select2-container .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 1.4;
  color: #192E48;
}
.woocommerce-cart .select2-container .select2-selection--single .select2-selection__arrow,
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  inset-inline-end: 10px;
  inset-inline-start: auto;
}
.woocommerce-cart label,
.woocommerce-checkout label {
  display: block;
  margin-block-end: 8px;
  color: #192E48;
  font-size: 14px;
  font-weight: 600;
}
.woocommerce-cart .required,
.woocommerce-checkout .required {
  color: #dc4c4c;
  text-decoration: none;
}
.woocommerce-cart button.button:not(.btn),
.woocommerce-cart a.button:not(.btn),
.woocommerce-cart input.button:not(.btn),
.woocommerce-cart .woocommerce-button:not(.btn),
.woocommerce-checkout button.button:not(.btn),
.woocommerce-checkout a.button:not(.btn),
.woocommerce-checkout input.button:not(.btn),
.woocommerce-checkout .woocommerce-button:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding-inline: 24px;
  border: 0;
  border-radius: 16px;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  color: #ffffff !important;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
}
.woocommerce-cart button.button:not(.btn):hover, .woocommerce-cart button.button:not(.btn):focus,
.woocommerce-cart a.button:not(.btn):hover,
.woocommerce-cart a.button:not(.btn):focus,
.woocommerce-cart input.button:not(.btn):hover,
.woocommerce-cart input.button:not(.btn):focus,
.woocommerce-cart .woocommerce-button:not(.btn):hover,
.woocommerce-cart .woocommerce-button:not(.btn):focus,
.woocommerce-checkout button.button:not(.btn):hover,
.woocommerce-checkout button.button:not(.btn):focus,
.woocommerce-checkout a.button:not(.btn):hover,
.woocommerce-checkout a.button:not(.btn):focus,
.woocommerce-checkout input.button:not(.btn):hover,
.woocommerce-checkout input.button:not(.btn):focus,
.woocommerce-checkout .woocommerce-button:not(.btn):hover,
.woocommerce-checkout .woocommerce-button:not(.btn):focus {
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  color: #ffffff !important;
}
.woocommerce-cart button.button:not(.btn).alt,
.woocommerce-cart a.button:not(.btn).alt,
.woocommerce-cart input.button:not(.btn).alt,
.woocommerce-cart .woocommerce-button:not(.btn).alt,
.woocommerce-checkout button.button:not(.btn).alt,
.woocommerce-checkout a.button:not(.btn).alt,
.woocommerce-checkout input.button:not(.btn).alt,
.woocommerce-checkout .woocommerce-button:not(.btn).alt {
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  color: #ffffff !important;
}
.woocommerce-cart .quantity .qty,
.woocommerce-checkout .quantity .qty {
  width: 72px;
  min-height: 44px;
  text-align: center;
  border-radius: 10px;
}

.cg-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: start;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

@media (min-width: 1200px) {
  .cg-cart {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 32px;
  }
}
.cg-cart__main,
.cg-cart__aside {
  min-width: 0;
  width: 100%;
}

.cg-cart__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cg-cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px 20px;
  padding: 16px;
  background: #f9fdfd;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(16, 42, 43, 0.04);
}

.cg-cart-item__media {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  background: #eaf3f3;
  border: 4px solid #ffffff;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}
.cg-cart-item__media a {
  display: block;
  height: 100%;
}
.cg-cart-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cg-cart-item__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.cg-cart-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cg-cart-item__name {
  min-width: 0;
  color: #192E48;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.cg-cart-item__name a {
  color: inherit;
  text-decoration: none;
}
.cg-cart-item__name a:hover {
  color: #189A9D;
}
.cg-cart-item__name .variation {
  margin-block-start: 8px;
  color: #718586;
  font-size: 13px;
  font-weight: 500;
}
.cg-cart-item__name dl {
  margin: 0;
}

.cg-cart-item__remove-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eaf3f3;
  color: #718586 !important;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  transition: color 250ms ease, background-color 250ms ease;
}
.cg-cart-item__remove-link:hover {
  background: rgba(220, 76, 76, 0.1);
  color: #dc4c4c !important;
}

.cg-cart-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.cg-cart-item__price,
.cg-cart-item__subtotal {
  color: #189A9D;
  font-size: 16px;
  font-weight: 700;
}
.cg-cart-item__price .amount,
.cg-cart-item__price bdi,
.cg-cart-item__subtotal .amount,
.cg-cart-item__subtotal bdi {
  color: inherit;
  font-weight: inherit;
}

.cg-cart-item__subtotal {
  margin-inline-start: auto;
  font-size: 18px;
}

.cg-cart__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-block-start: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cg-cart__coupon {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  padding: 16px;
  background: #f9fdfd;
  border: 1px solid #eaf1f1;
  border-radius: 16px;
  box-shadow: none;
}

.cg-cart__coupon-hint {
  margin: 0;
  color: #189A9D;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: start;
}

.cg-cart__coupon-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 16px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.cg-cart__coupon-row:focus-within {
  border-color: #4ca9a5;
  box-shadow: 0 0 0 4px rgba(76, 169, 165, 0.1);
}
.cg-cart__coupon-row .input-text {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding-inline: 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #192E48;
  font-size: 15px;
  box-shadow: none;
}
.cg-cart__coupon-row .input-text::placeholder {
  color: #9aa9aa;
}
.cg-cart__coupon-row .input-text:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}

.cg-cart__coupon-apply.btn,
.cg-cart__coupon .btn {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 96px;
  min-height: 48px;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  border-inline-start: 1px solid #dce8e8 !important;
  box-shadow: none !important;
}

.cg-cart__update {
  display: none !important;
}

.cg-cart-summary {
  position: sticky;
  top: calc(32px + 80px);
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

.cg-cart-summary__title {
  margin: 0 0 20px;
  color: #192E48;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.cg-cart-summary__table {
  width: 100%;
  margin: 0 0 24px;
  border: 0 !important;
  border-collapse: collapse;
  background: transparent;
}
.cg-cart-summary__table th,
.cg-cart-summary__table td {
  padding: 12px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #eaf1f1 !important;
  text-align: start;
  vertical-align: middle;
  background: transparent !important;
  font-size: 14px;
}
.cg-cart-summary__table th {
  width: 50%;
  color: #425b5d;
  font-weight: 600;
}
.cg-cart-summary__table td {
  width: 50%;
  text-align: end;
  color: #192E48;
  font-weight: 700;
}
.cg-cart-summary__table td::before {
  display: none !important;
  content: none !important;
}
.cg-cart-summary__table .order-total th,
.cg-cart-summary__table .order-total td {
  border-bottom: 0 !important;
  padding-block-start: 16px !important;
  color: #189A9D;
  font-size: 18px;
}

.cg-cart-summary__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
  width: 100%;
}

a.cg-cart-summary__checkout,
.cg-cart-summary__checkout.btn {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding-inline: 24px !important;
  border: 0 !important;
  border-radius: 16px !important;
  background-color: #189A9D !important;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(24, 154, 157, 0.16) !important;
}
a.cg-cart-summary__checkout::before, a.cg-cart-summary__checkout::after,
.cg-cart-summary__checkout.btn::before,
.cg-cart-summary__checkout.btn::after {
  display: none !important;
}
a.cg-cart-summary__checkout span,
.cg-cart-summary__checkout.btn span {
  color: #ffffff !important;
  margin: 0 !important;
}
a.cg-cart-summary__checkout:hover, a.cg-cart-summary__checkout:focus,
.cg-cart-summary__checkout.btn:hover,
.cg-cart-summary__checkout.btn:focus {
  color: #ffffff !important;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%) !important;
}

a.cg-cart-summary__continue,
.cg-cart-summary__continue.btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
}

.cg-cart-summary__payments {
  margin-block-start: 8px;
  padding-block-start: 24px;
  border-block-start: 1px solid #eaf1f1;
}
.cg-cart-summary__payments .service-page__payments-label {
  margin-block-end: 16px;
}
.cg-cart-summary__payments .service-page__payments-image {
  width: min(100%, 360px);
}
.cg-cart-summary__payments .service-page__secure {
  margin-block-start: 16px;
}

.cg-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 16px;
  text-align: center;
}

.cg-cart-empty__text {
  margin: 0;
  max-width: 420px;
  color: #718586;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.cg-cart-empty__btn {
  min-width: 220px;
}

.woocommerce-cart .return-to-shop,
.woocommerce-cart .cart-empty.woocommerce-info {
  display: none;
}

@media (max-width: 991px) {
  .cg-cart {
    grid-template-columns: 1fr;
  }
  .cg-cart-summary {
    position: static;
  }
}
@media (max-width: 767px) {
  .cg-checkout-flow__title {
    margin-block-end: 24px;
    font-size: 24px;
  }
  .cg-cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 12px;
  }
  .cg-cart-item__media {
    width: 72px;
    height: 72px;
  }
  .cg-cart-item__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .cg-cart-item__subtotal {
    margin-inline-start: 0;
  }
  .cg-cart__coupon {
    max-width: none;
  }
  .cg-cart__coupon-row {
    flex-direction: column;
    gap: 0;
  }
  .cg-cart__coupon-apply.btn,
  .cg-cart__coupon .btn {
    width: 100%;
    border-inline-start: 0 !important;
    border-block-start: 1px solid #dce8e8 !important;
  }
}
.cg-checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  align-items: start;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

@media (min-width: 1200px) {
  .cg-checkout__layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 32px;
  }
}
.cg-checkout__main,
.cg-checkout__aside {
  min-width: 0;
}

.cg-checkout__customer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  float: none;
}
.cg-checkout__customer::before, .cg-checkout__customer::after {
  display: none;
  content: none;
}

.cg-checkout__billing,
.cg-checkout__shipping {
  width: 100% !important;
  float: none !important;
  clear: both;
  padding: 24px;
  background: #f9fdfd;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(16, 42, 43, 0.04);
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: block;
}
.woocommerce-checkout h3 {
  margin: 0 0 20px;
  color: #192E48;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.woocommerce-checkout #ship-to-different-address {
  margin: 0 0 16px;
}
.woocommerce-checkout #ship-to-different-address label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
}
.woocommerce-checkout .woocommerce-additional-fields {
  margin-block-start: 8px;
}
.woocommerce-checkout textarea {
  min-height: 120px;
  resize: vertical;
}

.cg-checkout__review-title {
  margin: 0 0 16px;
  color: #192E48;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.cg-checkout__review,
.woocommerce-checkout-review-order {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

.cg-checkout-review {
  width: 100%;
  margin: 0 0 16px;
  border: 0;
  border-collapse: collapse;
}
.cg-checkout-review th,
.cg-checkout-review td {
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #eaf1f1;
  background: transparent;
  vertical-align: middle;
  font-size: 14px;
}
.cg-checkout-review thead th {
  color: #718586;
  font-weight: 600;
  text-align: start;
}
.cg-checkout-review thead th.product-total,
.cg-checkout-review tbody td.product-total,
.cg-checkout-review tfoot td {
  text-align: end;
}
.cg-checkout-review tbody .product-name {
  color: #192E48;
  font-weight: 600;
  text-align: start;
}
.cg-checkout-review .cg-checkout-review__product {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: start;
}
.cg-checkout-review .cg-checkout-review__thumb {
  flex-shrink: 0;
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 10px;
  background: #eaf3f3;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(16, 42, 43, 0.04);
}
.cg-checkout-review .cg-checkout-review__thumb img,
.cg-checkout-review .cg-checkout-review__thumb .cg-checkout-review__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cg-checkout-review .cg-checkout-review__info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  min-width: 0;
}
.cg-checkout-review .cg-checkout-review__name {
  display: inline;
  color: #192E48;
  font-weight: 700;
  line-height: 1.45;
}
.cg-checkout-review .product-quantity {
  color: #718586;
  font-weight: 500;
}
.cg-checkout-review .variation {
  flex-basis: 100%;
  margin: 0;
  color: #718586;
  font-size: 12px;
  font-weight: 500;
}
.cg-checkout-review tfoot th {
  color: #425b5d;
  font-weight: 600;
  text-align: start;
}
.cg-checkout-review tfoot td {
  color: #192E48;
  font-weight: 700;
}
.cg-checkout-review .order-total th,
.cg-checkout-review .order-total td {
  border-bottom: 0;
  padding-block-start: 16px;
  color: #189A9D;
  font-size: 18px;
}

.cg-checkout-payment,
#payment.cg-checkout-payment {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.cg-checkout-payment .cg-checkout-payment__heading,
#payment.cg-checkout-payment .cg-checkout-payment__heading {
  margin: 0 0 16px;
  color: #192E48;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: start;
}
.cg-checkout-payment .payment_methods,
.cg-checkout-payment .cg-checkout-payment__methods,
#payment.cg-checkout-payment .payment_methods,
#payment.cg-checkout-payment .cg-checkout-payment__methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0 !important;
  list-style: none;
  border: 0;
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 0 !important;
}

.cg-checkout-payment .wc_payment_method,
#payment.cg-checkout-payment .wc_payment_method {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  margin: 0 !important;
  padding: 0;
  background: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(16, 42, 43, 0.04);
  cursor: pointer;
  transition: border-color 250ms ease, background-color 250ms ease, box-shadow 250ms ease;
}
.cg-checkout-payment .wc_payment_method .cg-checkout-payment__label,
.cg-checkout-payment .wc_payment_method > label,
#payment.cg-checkout-payment .wc_payment_method .cg-checkout-payment__label,
#payment.cg-checkout-payment .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 12px 16px;
  color: #192E48;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}
.cg-checkout-payment .wc_payment_method input[type=radio].input-radio,
#payment.cg-checkout-payment .wc_payment_method input[type=radio].input-radio {
  flex-shrink: 0;
  order: 1;
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  margin-inline-start: auto;
  padding: 3px;
  float: none;
  background-color: transparent;
  background-clip: content-box;
  border: 2px solid #c5d7d7;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 250ms ease, background-color 250ms ease;
}
.cg-checkout-payment .wc_payment_method input[type=radio].input-radio:checked,
#payment.cg-checkout-payment .wc_payment_method input[type=radio].input-radio:checked {
  border-color: #189A9D;
  background-color: #189A9D;
}
.cg-checkout-payment .wc_payment_method input[type=radio].input-radio:focus-visible,
#payment.cg-checkout-payment .wc_payment_method input[type=radio].input-radio:focus-visible {
  outline: 2px solid #4ca9a5;
  outline-offset: 2px;
}
.cg-checkout-payment .wc_payment_method .cg-checkout-payment__brand,
#payment.cg-checkout-payment .wc_payment_method .cg-checkout-payment__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  order: 0;
  min-width: 76px;
  height: 40px;
  padding-inline: 10px;
  background: #F7FAFC;
  border: 1px solid #eaf1f1;
  border-radius: 10px;
  pointer-events: none;
}
.cg-checkout-payment .wc_payment_method img,
#payment.cg-checkout-payment .wc_payment_method img {
  display: block;
  max-height: 22px;
  width: auto;
  margin: 0;
  box-shadow: none;
  pointer-events: none;
}
.cg-checkout-payment .wc_payment_method .cg-checkout-payment__name,
#payment.cg-checkout-payment .wc_payment_method .cg-checkout-payment__name {
  order: 0;
  min-width: 0;
  text-align: start;
  pointer-events: none;
}
.cg-checkout-payment .wc_payment_method .payment_box,
#payment.cg-checkout-payment .wc_payment_method .payment_box {
  position: relative;
  z-index: 2;
  flex: 1 0 100%;
  margin: 0;
  padding: 12px 16px 16px;
  background: #eaf3f3;
  border-radius: 0 0 16px 16px;
  color: #425b5d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  text-align: start;
  cursor: default;
}
.cg-checkout-payment .wc_payment_method .payment_box::before,
#payment.cg-checkout-payment .wc_payment_method .payment_box::before {
  display: none;
}
.cg-checkout-payment .wc_payment_method .payment_box p,
#payment.cg-checkout-payment .wc_payment_method .payment_box p {
  margin: 0;
}
.cg-checkout-payment .wc_payment_method .payment_box fieldset,
.cg-checkout-payment .wc_payment_method .payment_box .wc-credit-card-form,
.cg-checkout-payment .wc_payment_method .payment_box .form-row,
#payment.cg-checkout-payment .wc_payment_method .payment_box fieldset,
#payment.cg-checkout-payment .wc_payment_method .payment_box .wc-credit-card-form,
#payment.cg-checkout-payment .wc_payment_method .payment_box .form-row {
  margin-block-end: 12px;
}
.cg-checkout-payment .wc_payment_method:hover,
#payment.cg-checkout-payment .wc_payment_method:hover {
  border-color: #4ca9a5;
  background: #f9fdfd;
}
.cg-checkout-payment .wc_payment_method:has(input:checked),
#payment.cg-checkout-payment .wc_payment_method:has(input:checked) {
  background: #ffffff;
  border-color: #189A9D;
  box-shadow: 0 0 0 1px #189A9D, 0 10px 30px rgba(24, 154, 157, 0.08);
}

.cg-checkout-payment__place,
#payment .form-row.place-order {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  float: none !important;
  clear: both;
  width: 100% !important;
  max-width: 100%;
  margin: 8px 0 0 !important;
  padding: 20px 0 0 !important;
  border-block-start: 1px solid #eaf1f1;
  overflow: visible;
}

.cg-checkout-payment__submit,
#place_order.cg-checkout-payment__submit,
#payment #place_order {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  float: none !important;
  width: 100% !important;
  max-width: 100%;
  min-height: 56px;
  margin: 0 !important;
  padding-inline: 24px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background-color: #189A9D;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #ffffff !important;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 6px 18px rgba(24, 154, 157, 0.16);
  cursor: pointer;
}
.cg-checkout-payment__submit:hover, .cg-checkout-payment__submit:focus,
#place_order.cg-checkout-payment__submit:hover,
#place_order.cg-checkout-payment__submit:focus,
#payment #place_order:hover,
#payment #place_order:focus {
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  color: #ffffff !important;
}
.cg-checkout-payment__submit::before, .cg-checkout-payment__submit::after,
#place_order.cg-checkout-payment__submit::before,
#place_order.cg-checkout-payment__submit::after,
#payment #place_order::before,
#payment #place_order::after {
  display: none;
}
.cg-checkout-payment__submit span,
#place_order.cg-checkout-payment__submit span,
#payment #place_order span {
  position: relative;
  z-index: 1;
  margin: 0;
  color: inherit;
}

.cg-checkout-payment__secure,
#payment .cg-checkout-payment__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  float: none !important;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.cg-checkout__aside {
  position: sticky;
  top: calc(32px + 80px);
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon {
  display: none !important;
}

.cg-checkout-coupon {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding: 16px;
  background: #f9fdfd;
  border: 1px solid #eaf1f1;
  border-radius: 16px;
  box-shadow: none;
}

.cg-checkout-coupon__hint {
  margin: 0;
  color: #189A9D;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: start;
}

.cg-checkout-coupon__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 16px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.cg-checkout-coupon__row:focus-within {
  border-color: #4ca9a5;
  box-shadow: 0 0 0 4px rgba(76, 169, 165, 0.1);
}

.cg-checkout-coupon .input-text {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding-inline: 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #192E48;
  font-size: 15px;
  box-shadow: none;
}
.cg-checkout-coupon .input-text::placeholder {
  color: #9aa9aa;
}
.cg-checkout-coupon .input-text:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}

.cg-cart__coupon-apply,
.cg-checkout-coupon__apply.btn,
.cg-checkout-coupon .btn {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 96px;
  min-height: 48px;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  border-inline-start: 1px solid #dce8e8 !important;
  box-shadow: none !important;
  background-color: #189A9D !important;
  background-image: linear-gradient(135deg, #189A9D 0%, #68dadd 100%) !important;
  background-size: 200% 200% !important;
  background-position: 0% 50%;
  color: #ffffff !important;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 575px) {
  .cg-checkout-coupon__row {
    flex-direction: column;
  }
  .cg-checkout-coupon__apply.btn,
  .cg-checkout-coupon .btn {
    width: 100%;
    border-inline-start: 0 !important;
    border-block-start: 1px solid #dce8e8 !important;
  }
}
@media (max-width: 991px) {
  .cg-checkout__layout {
    grid-template-columns: 1fr;
  }
  .cg-checkout__aside {
    position: static;
    order: 2;
  }
  .cg-checkout__main {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cg-checkout__billing,
  .cg-checkout__shipping,
  .cg-checkout__review,
  .woocommerce-checkout-review-order {
    padding: 16px;
  }
  .cg-checkout-payment__submit,
  #place_order {
    width: 100%;
  }
  .cg-checkout-payment .wc_payment_method .cg-checkout-payment__brand {
    min-width: 64px;
    height: 36px;
    padding-inline: 8px;
  }
}
.cg-thankyou {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

.cg-thankyou__status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 16px 0;
  text-align: center;
}

.cg-thankyou__title {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: #192E48 !important;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.cg-thankyou__subtitle {
  margin: 0;
  max-width: 520px;
  color: #718586;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.cg-thankyou__overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 20px;
  list-style: none;
  background: #f9fdfd;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(16, 42, 43, 0.04);
}
.cg-thankyou__overview li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 16px;
}
.cg-thankyou__overview strong {
  color: #189A9D;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

.cg-thankyou__label {
  color: #718586;
  font-size: 13px;
  font-weight: 600;
}

.cg-thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cg-thankyou__actions .btn {
  min-width: min(100%, 220px);
  justify-content: center;
}

.woocommerce-order-details,
.woocommerce-customer-details {
  margin-block-start: 8px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(16, 42, 43, 0.04);
}
.woocommerce-order-details .woocommerce-order-details__title,
.woocommerce-order-details .woocommerce-column__title,
.woocommerce-order-details h2,
.woocommerce-customer-details .woocommerce-order-details__title,
.woocommerce-customer-details .woocommerce-column__title,
.woocommerce-customer-details h2 {
  margin: 0 0 20px;
  color: #192E48;
  font-size: 18px;
  font-weight: 700;
}
.woocommerce-order-details table.shop_table,
.woocommerce-customer-details table.shop_table {
  width: 100%;
  margin: 0;
  border: 1px solid #eaf1f1;
  border-radius: 16px;
  border-collapse: separate;
  overflow: hidden;
  background: #ffffff;
}
.woocommerce-order-details table.shop_table th,
.woocommerce-order-details table.shop_table td,
.woocommerce-customer-details table.shop_table th,
.woocommerce-customer-details table.shop_table td {
  padding: 12px 16px;
  border-color: #eaf1f1;
  text-align: start;
  vertical-align: middle;
  font-size: 14px;
}
.woocommerce-order-details table.shop_table th,
.woocommerce-customer-details table.shop_table th {
  background: #eaf3f3;
  font-weight: 700;
}
.woocommerce-order-details table.shop_table tfoot th,
.woocommerce-order-details table.shop_table tfoot td,
.woocommerce-customer-details table.shop_table tfoot th,
.woocommerce-customer-details table.shop_table tfoot td {
  background: #f9fdfd;
}
.woocommerce-order-details table.shop_table .order-total th,
.woocommerce-order-details table.shop_table .order-total td,
.woocommerce-customer-details table.shop_table .order-total th,
.woocommerce-customer-details table.shop_table .order-total td {
  color: #189A9D;
  font-size: 16px;
}
.woocommerce-order-details address,
.woocommerce-customer-details address {
  margin: 0;
  padding: 16px;
  background: #f9fdfd;
  border: 1px solid #eaf1f1;
  border-radius: 16px;
  color: #425b5d;
  font-style: normal;
  line-height: 1.7;
}

.woocommerce-customer-details {
  margin-block-start: 24px;
}

@media (max-width: 767px) {
  .cg-thankyou__overview {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .woocommerce-order-details,
  .woocommerce-customer-details {
    padding: 16px;
  }
  .cg-thankyou__actions {
    flex-direction: column;
  }
  .cg-thankyou__actions .btn {
    width: 100%;
  }
}
.contact-page {
  margin-top: 80px;
}

@media (max-width: 575px) {
  .contact-page {
    margin-top: 40px;
  }
}
.blog-page {
  direction: rtl;
  background-color: #F7FAFC;
  background-image: url("../images/bg-light.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 96px;
}

.blog-hero {
  padding-block-start: 112px;
}

.blog-hero__content {
  max-width: 720px;
  margin-block-start: 32px;
}

.blog-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  color: #189A9D;
  font-size: 14px;
  font-weight: 600;
}

.blog-hero__title {
  margin: 0 0 16px;
  color: #192E48;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-hero__description {
  margin: 0;
  max-width: 560px;
  color: #718586;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.blog-panel {
  padding-block: 32px 64px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-grid--related {
  margin-block-start: 8px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eaf3f3;
}

.blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.04);
}

.blog-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(24, 154, 157, 0.12), rgba(76, 169, 165, 0.04)), #eaf3f3;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 20px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: #718586;
  font-size: 13px;
}

.blog-card__category {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(24, 154, 157, 0.08);
  border-radius: 999px;
  color: #189A9D;
  font-weight: 600;
  text-decoration: none;
}
.blog-card__category:hover {
  background: rgba(24, 154, 157, 0.14);
}

.blog-card__date,
.blog-card__reading {
  color: #718586;
}

.blog-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.blog-card__title a {
  color: #192E48;
  text-decoration: none;
}
.blog-card__title a:hover {
  color: #189A9D;
}

.blog-card__excerpt {
  flex: 1;
  color: #425b5d;
  font-size: 15px;
  line-height: 1.7;
}
.blog-card__excerpt p {
  margin: 0;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-block-start: 8px;
  color: #189A9D;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.blog-card__more svg {
  transform: scaleX(-1);
}
.blog-card__more:hover {
  color: #117b7e;
}

.blog-pagination {
  margin-block-start: 48px;
}
.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 10px;
  color: #192E48;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.blog-pagination .page-numbers:hover {
  border-color: #4ca9a5;
  color: #189A9D;
}
.blog-pagination .page-numbers.current {
  background: linear-gradient(135deg, #189A9D 0%, #68dadd 100%);
  border-color: transparent;
  color: #ffffff;
}
.blog-pagination .page-numbers.dots {
  border: 0;
  background: transparent;
  min-width: auto;
}

.blog-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

.blog-empty__title {
  margin: 0;
  color: #192E48;
  font-size: 22px;
  font-weight: 700;
}

.blog-empty__description {
  margin: 0;
  max-width: 420px;
  color: #718586;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-hero__title {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .blog-hero {
    padding-block-start: 80px;
  }
  .blog-hero__title {
    font-size: 28px;
  }
  .blog-hero__description {
    font-size: 16px;
  }
  .blog-card__title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-page {
    padding-bottom: 64px;
  }
}
.single-post {
  direction: rtl;
  background-color: #F7FAFC;
  background-image: url("../images/bg-light.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 96px;
}

.single-post__header {
  padding-block-start: 112px;
}

.single-post__intro {
  max-width: 820px;
  margin-block-start: 32px;
  margin-inline: auto;
  text-align: center;
}

.single-post__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-block-end: 16px;
}

.single-post__category {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(24, 154, 157, 0.08);
  border-radius: 999px;
  color: #189A9D;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.single-post__category:hover {
  background: rgba(24, 154, 157, 0.14);
}

.single-post__title {
  margin: 0 0 20px;
  color: #192E48;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #718586;
  font-size: 15px;
}

.single-post__meta-sep {
  color: #c5d7d7;
}

.single-post__featured {
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 12px 32px rgba(16, 42, 43, 0.08);
}

.single-post__featured-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.single-post__layout {
  max-width: 780px;
  margin-inline: auto;
  margin-block-start: 48px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 32px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

.single-post__content {
  color: #425b5d;
  font-size: 18px;
  line-height: 1.9;
}
.single-post__content > *:first-child {
  margin-block-start: 0;
}
.single-post__content > *:last-child {
  margin-block-end: 0;
}
.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
  margin-block: 32px 16px;
  color: #192E48;
  font-weight: 700;
  line-height: 1.35;
}
.single-post__content h2 {
  font-size: 28px;
}
.single-post__content h3 {
  font-size: 22px;
}
.single-post__content h4 {
  font-size: 18px;
}
.single-post__content p {
  margin-block: 0 20px;
}
.single-post__content a {
  color: #189A9D;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-post__content a:hover {
  color: #117b7e;
}
.single-post__content ul,
.single-post__content ol {
  margin-block: 0 20px;
  padding-inline-start: 24px;
}
.single-post__content li {
  margin-block-end: 8px;
}
.single-post__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: #eaf3f3;
  border-inline-start: 4px solid #189A9D;
  border-radius: 0 16px 16px 0;
  color: #192E48;
  font-weight: 500;
}
.single-post__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-block: 24px;
  border-radius: 16px;
}
.single-post__content figure {
  margin: 24px 0;
}
.single-post__content figcaption {
  margin-block-start: 8px;
  color: #718586;
  font-size: 14px;
  text-align: center;
}
.single-post__content pre,
.single-post__content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.single-post__content pre {
  overflow-x: auto;
  padding: 16px;
  margin-block: 20px;
  background: #eaf3f3;
  border-radius: 16px;
  font-size: 14px;
}
.single-post__content code {
  padding: 2px 6px;
  background: #eaf3f3;
  border-radius: 6px;
  font-size: 0.92em;
}
.single-post__content table {
  width: 100%;
  margin-block: 24px;
  border-collapse: collapse;
  font-size: 15px;
}
.single-post__content th,
.single-post__content td {
  padding: 12px;
  border: 1px solid #dce8e8;
  text-align: start;
}
.single-post__content th {
  background: #eaf3f3;
  color: #192E48;
  font-weight: 600;
}

.single-post__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-block-start: 32px;
}

.single-post__pages-label {
  margin-inline-end: 8px;
  color: #718586;
  font-weight: 600;
}

.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-block-start: 40px;
  padding-block-start: 24px;
  border-block-start: 1px solid #eaf1f1;
}

.single-post__tags-label {
  color: #192E48;
  font-size: 15px;
  font-weight: 700;
}

.single-post__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-post__tag {
  display: inline-flex;
  padding: 6px 12px;
  background: #eaf3f3;
  border-radius: 999px;
  color: #425b5d;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.single-post__tag:hover {
  background: rgba(24, 154, 157, 0.1);
  color: #189A9D;
}

.single-post__comments {
  margin-block-start: 40px;
  padding-block-start: 32px;
  border-block-start: 1px solid #eaf1f1;
}

.comments-area__title {
  margin: 0 0 24px;
  color: #192E48;
  font-size: 24px;
  font-weight: 700;
}

.comments-area__list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.comments-area__list .children {
  margin: 16px 0 0;
  padding: 0;
  padding-inline-start: 24px;
  list-style: none;
}

.comments-area .comment {
  margin-block-end: 20px;
  padding: 20px;
  background: #F7FAFC;
  border-radius: 16px;
}
.comments-area .comment-author {
  font-weight: 700;
  color: #192E48;
}
.comments-area .comment-author .avatar {
  border-radius: 50%;
  margin-inline-end: 12px;
}
.comments-area .comment-metadata {
  margin-block: 8px 12px;
  color: #718586;
  font-size: 13px;
}
.comments-area .comment-metadata a {
  color: inherit;
  text-decoration: none;
}
.comments-area .comment-content {
  color: #425b5d;
  font-size: 15px;
  line-height: 1.7;
}
.comments-area .comment-content p:last-child {
  margin-block-end: 0;
}
.comments-area .comment-reply-link {
  color: #189A9D;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.comments-area .comment-respond {
  margin-block-start: 24px;
}
.comments-area .comment-reply-title {
  margin: 0 0 16px;
  color: #192E48;
  font-size: 20px;
  font-weight: 700;
}
.comments-area .comment-form {
  display: grid;
  gap: 16px;
}
.comments-area .comment-form label {
  display: block;
  margin-block-end: 8px;
  color: #192E48;
  font-size: 14px;
  font-weight: 600;
}
.comments-area .comment-form input[type=text],
.comments-area .comment-form input[type=email],
.comments-area .comment-form input[type=url],
.comments-area .comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #dce8e8;
  border-radius: 10px;
  color: #192E48;
  font: inherit;
}
.comments-area .comment-form input[type=text]:focus,
.comments-area .comment-form input[type=email]:focus,
.comments-area .comment-form input[type=url]:focus,
.comments-area .comment-form textarea:focus {
  outline: 2px solid rgba(24, 154, 157, 0.25);
  border-color: #189A9D;
}
.comments-area .comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.comments-area__closed {
  color: #718586;
}

.related-posts {
  padding-block-start: 16px;
}

@media (max-width: 991px) {
  .single-post__title {
    font-size: 34px;
  }
  .single-post__content {
    font-size: 17px;
  }
  .single-post__content h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .single-post__header {
    padding-block-start: 80px;
  }
  .single-post__title {
    font-size: 28px;
  }
  .single-post__layout {
    margin-block-start: 32px;
    padding: 20px;
    border-radius: 24px;
  }
  .single-post__featured {
    border-radius: 24px;
  }
  .single-post__content {
    font-size: 16px;
    line-height: 1.8;
  }
  .comments-area .comment .children {
    padding-inline-start: 12px;
  }
}
@media (max-width: 575px) {
  .single-post {
    padding-bottom: 64px;
  }
  .single-post__intro {
    text-align: start;
  }
  .single-post__categories,
  .single-post__meta {
    justify-content: flex-start;
  }
  .single-post__title {
    font-size: 24px;
  }
}
.cg-search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(24, 154, 157, 0.14);
  border-radius: 16px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}
.cg-search-form:focus-within {
  border-color: #189A9D;
  box-shadow: 0 0 0 4px rgba(24, 154, 157, 0.1);
}

.cg-search-form__icon {
  display: flex;
  flex-shrink: 0;
  color: #117b7e;
}

.cg-search-form__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #192E48;
  font-family: "Cairo", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: start;
}
.cg-search-form__input:focus {
  outline: 0;
}
.cg-search-form__input::placeholder {
  color: #718586;
}
.cg-search-form__input {
  appearance: none;
  -webkit-appearance: none;
}
.cg-search-form__input::-webkit-search-decoration, .cg-search-form__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.cg-search-form__submit {
  flex-shrink: 0;
}

.cg-search-form--mobile .cg-search-form__submit {
  display: none;
}

.cg-search-form--hero {
  max-width: 560px;
  margin-block-start: 24px;
}

.search-page {
  direction: rtl;
  background-color: #F7FAFC;
  background-image: url("../images/bg-light.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 96px;
}

.search-hero {
  padding-block-start: 112px;
}

.search-hero__content {
  max-width: 720px;
  margin-block-start: 32px;
}

.search-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  color: #189A9D;
  font-size: 14px;
  font-weight: 600;
}

.search-hero__title {
  margin: 0 0 16px;
  color: #192E48;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.search-hero__description {
  margin: 0;
  max-width: 560px;
  color: #718586;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.search-panel {
  padding-block: 32px 64px;
}

.search-section {
  margin-block-end: 48px;
}
.search-section:last-child {
  margin-block-end: 0;
}

.search-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-block-end: 24px;
}

.search-section__title {
  margin: 0;
  color: #192E48;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

.search-section__count {
  margin: 0;
  color: #718586;
  font-size: 14px;
  font-weight: 500;
}

.search-section__empty {
  margin: 0;
  padding: 32px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
  color: #718586;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

.search-empty__title {
  margin: 0;
  color: #192E48;
  font-size: 22px;
  font-weight: 700;
}

.search-empty__description {
  margin: 0;
  max-width: 420px;
  color: #718586;
  font-size: 16px;
  line-height: 1.7;
}

.search-pagination {
  margin-block-start: 48px;
}

@media (max-width: 991px) {
  .search-hero__title {
    font-size: 34px;
  }
  .search-section__title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .search-hero {
    padding-block-start: 80px;
  }
  .search-hero__title {
    font-size: 28px;
  }
  .search-hero__description {
    font-size: 16px;
  }
  .search-section__title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .search-page {
    padding-bottom: 64px;
  }
}
.wishlist-page {
  background: #F7FAFC;
}

.wishlist-hero {
  padding-block-end: 16px;
}

.wishlist-hero__content {
  margin-block-start: 16px;
}

.wishlist-hero__eyebrow {
  margin: 0 0 8px;
  color: #189A9D;
  font-size: 14px;
  font-weight: 600;
}

.wishlist-hero__title {
  margin: 0 0 12px;
  color: #192E48;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
}

.wishlist-hero__description {
  margin: 0;
  color: #425b5d;
  font-size: 16px;
  line-height: 1.7;
}

.wishlist-panel {
  padding-block: 24px 40px;
}

.wishlist-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #eaf1f1;
  box-shadow: 0 2px 8px rgba(16, 42, 43, 0.04);
}

.wishlist-empty__title {
  margin: 0;
  color: #192E48;
  font-size: 22px;
  font-weight: 700;
}

.wishlist-empty__description {
  margin: 0;
  max-width: 420px;
  color: #425b5d;
  font-size: 15px;
  line-height: 1.7;
}

.error-page {
  background-color: #F7FAFC;
  background-image: url("../images/bg-light.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.error-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid rgba(24, 154, 157, 0.12);
  border-radius: 24px;
  box-shadow: 6px 9px 26px rgba(26, 55, 54, 0.05);
}

.error-page__code {
  margin: 0 0 12px;
  color: #189A9D;
  font-size: clamp(64px, 10vw, 112px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.error-page__title {
  margin: 0 0 16px;
  color: #192E48;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.35;
}

.error-page__description {
  margin: 0 0 32px;
  max-width: 540px;
  color: #718586;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 767px) {
  .error-page__inner {
    padding: 32px 20px;
  }
  .error-page__actions {
    width: 100%;
  }
  .error-page__actions .btn {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 575px) {
  .error-page__inner {
    padding: 24px 16px;
  }
  .error-page__description {
    font-size: 15px;
    padding-inline: 4px;
  }
}

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