:root {
  --light-blue: #5394ac;
  --dark-blue: #083851;
  --main-gradient: linear-gradient(316.99deg, #5394ac 0%, #083851 100%);
  --main-gradient-transparent: linear-gradient(
    316.99deg,
    #5394ac90 0%,
    #083851cc 100%
  );
  --gray-100: #f6f6f6;
  --gray-900: #5f5f5f;
  --main-space: 80px;
  interpolate-size: allow-keywords;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  background: #f5f5f5;
}
body {
  font-family: "Cairo", sans-serif;
}
/* global classes  */

a {
  text-decoration: none;
  color: inherit;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
h1 {
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* 16px */
  padding-right: 1rem; /* 16px */
}

/* Tailwind-like max-width breakpoints */
@media (min-width: 640px) {
  /* sm */
  .container {
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  /* md */
  .container {
    max-width: 708px;
  }
}

@media (min-width: 1024px) {
  /* lg */
  .container {
    max-width: 980px;
  }
}

@media (min-width: 1280px) {
  /* xl */
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1536px) {
  /* 2xl */
  .container {
    max-width: 1436px;
  }
}

.section-title {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  text-align: center;
  @media only screen and (max-width: 768px) {
    font-size: 24px;
  }
}
.section-title.highlighted {
  color: var(--light-blue);
}

.section-title.highlighted-word span {
  color: var(--light-blue);
}

.section-title.bold {
  font-weight: 900;
  font-size: 44px;
}
.inline-text-with-bg {
  display: inline-block;
  background: var(--light-blue);
}

/* ========================  */
/* start navbar  */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: #fff;
  border-radius: 0 0 24px 24px;
}
.navbar.slide_down {
  position: fixed;
  background: var(--primary-color);
  top: 0px;
  width: 100%;
  z-index: 999;
}
.navbar .navbar_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  transition: 0.3s;
}
.navbar.slide_down .navbar_content {
  padding: 0;
}
@media (max-width: 768px) {
  .navbar .navbar_content {
    padding: 22.2px 0;
  }
}
@media (max-width: 768px) {
  .navbar_content .navbar_links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    overflow: hidden;
    transition: 0.3s;
    /* z-index:999; */
    clip-path: circle(0px at 45px 35px);
  }
  .navbar_content .navbar_links.open {
    clip-path: circle(1500px at 45px 35px);
    display: flex;
  }
}
.navbar_content .navbar_links .links-list {
  display: flex;
  flex: 1;
  gap: 10px;
  max-height: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .navbar_content .navbar_links .links-list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 80px;
    padding-inline-start: 40px;
  }
}
.navbar_content .navbar_links .links-list .link-item {
  position: relative;
  color: var(--dark-blue);
}

.navbar_content .navbar_links .links-list .link-item.active {
  color: var(--light-blue);
  border-bottom: 2px solid var(--light-blue);
}

.navbar_content .navbar_links .links-list .link-item.main {
  background: var(--light-blue);
  display: inline-block;
  border-radius: 8px;
  color: #fff;
  /* height:40px; */
}
@media (max-width: 768px) {
  .navbar_content .navbar_links .links-list .link-item {
    opacity: 0;
    transition: 0.3s;
  }
  .navbar_content .navbar_links .links-list .link-item.show {
    opacity: 1;
  }
}

.navbar_content .navbar_links .links-list .link-item a {
  display: block;
  padding: 10px;
  text-transform: capitalize;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.navbar_content .navbar_menu__icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 50px;
  padding: 0 10px;
  height: 34px;
  cursor: pointer;
  display: none;
  transition: height 0.3s;
}
.navbar.slide_down .navbar_content .navbar_menu__icon {
  height: 30px;
}
@media (max-width: 768px) {
  .navbar_content .navbar_menu__icon {
    display: flex;
    position: relative;
    z-index: 99;
  }
}
.navbar_content .navbar_menu__icon > div {
  width: 100%;
  height: 2px;
  background-color: var(--dark-blue);
  transition: 0.3s;
}

.navbar_content .navbar_menu__icon.close > div:nth-of-type(1) {
  transform: translate(0px, 7px) rotate(45deg);
}
.navbar_content .navbar_menu__icon.close > div:nth-of-type(2) {
  width: 0px;
}
.navbar_content .navbar_menu__icon.close > div:nth-of-type(3) {
  transform: translate(0px, -7px) rotate(-45deg);
}

/* ============ */
/* start-hero  */

.hero {
  background: var(--main-gradient-transparent), url("../images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero .container {
  padding: 160px 0 50px;
  min-height: 100vh;
  max-height: 950px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
  @media only screen and (min-width: 768px) {
    justify-content: flex-start;
  }
}
.hero h1 {
  font-size: 84px;
  /* max-width: 20ch; */
  -ms-text-wrap: balance;
  -moz-text-wrap: balance;
  -o-text-wrap: balance;
  line-height: 80px;
  margin-bottom: 0px;
  font-weight: 900;
  @media only screen and (max-width: 991px) {
    text-align: center;
    margin: 0 auto;
  }
  @media only screen and (max-width: 768px) {
    font-size: 34px;
    line-height: 40px;
  }
}
.hero h2 {
  font-size: 44px;
  /* max-width: 20ch; */
  -ms-text-wrap: balance;
  -moz-text-wrap: balance;
  -o-text-wrap: balance;
  line-height: 100px;
  margin-bottom: 16px;
  @media only screen and (max-width: 991px) {
    text-align: center;
    margin: 0 auto 16px;
  }
  @media only screen and (max-width: 768px) {
    font-size: 20px;
    line-height: 40px;
  }
}
.hero p {
  font-size: 18px;
  font-weight: 400;
  max-width: 60ch;
  line-height: 30px;
  margin-bottom: 16px;
  @media only screen and (max-width: 991px) {
    text-align: center;
    margin: 0 auto 16px;
  }
  @media only screen and (max-width: 768px) {
    font-size: 14px;
    line-height: 32px;
  }
}
.hero__main_links {
  display: flex;
  gap: 16px;
  max-width: 620px;
  width: 100%;
  margin-bottom: 24px;

  @media only screen and (max-width: 991px) {
    max-width: 100%;
    justify-content: center;
  }

  @media only screen and (max-width: 768px) {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}
.hero .hero__main_links a:nth-of-type(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: fit-content;
  color: var(--dark-blue);
  font-weight: 700;
  padding: 16px 64px;
  border-radius: 8px;

  flex: 1;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  @media only screen and (max-width: 768px) {
    width: 200px;
    font-size: 14px;
    padding: 16px 24px;
  }
}
.hero .hero__main_links a:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 8px;

  width: fit-content;
  color: #fff;
  font-weight: 700;
  padding: 16px 64px;
  border-radius: 8px;
  flex: 1;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  @media only screen and (max-width: 768px) {
    width: 200px;
    font-size: 14px;
    padding: 16px 24px;
  }
  /* @media only screen and (max-width: 991px) { */
  /* margin: 0 auto 80px; */
  /* } */
}

.hero h6 {
  color: var(--gray-100);
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 400;
  @media only screen and (max-width: 991px) {
    text-align: center;
  }
}
.hero .hero__companies {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  @media only screen and (max-width: 991px) {
    justify-content: center;
  }
}
.hero .hero__companies img {
  /* padding: 8px; */
  @media only screen and (max-width: 768px) {
    width: 80px;
    height: 80px;
    padding: 0;
  }
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.video-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.video-modal.closing {
  animation: fadeOut 0.3s ease;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: black;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}

.close-modal {
  position: absolute;
  top: -50px;
  right: -10px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.video-container {
  position: relative;
  width: 100%;
  height: 450px; /* Fixed height instead of padding-bottom */
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.video-container > div {
  width: 100% !important;
  height: 100% !important;
}

/* Loading spinner */
.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .video-container {
    height: 250px; /* Smaller height for mobile */
  }

  .close-modal {
    top: -40px;
    right: 0;
    font-size: 28px;
    width: 35px;
    height: 35px;
  }
}
/* end-hero  */

/* start-about  */

.about {
  padding: var(--main-space) 0 0 0;
  position: relative;
  min-height: 600px;
  @media only screen and (max-width: 991px) {
    padding-bottom: 350px;
  }
}

.about__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 300px;
  height: 100%;
  margin-top: 64px;
  @media only screen and (max-width: 991px) {
    justify-content: center;
  }
}

img.about__img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 450px;
  width: fit-content;
  max-width: 100%;
  z-index: 10;
  /* transform:translateX(40px); */
  @media only screen and (max-width: 1024px) {
    height: 350px;
  }
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__card > div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  @media only screen and (max-width: 768px) {
    flex-direction: column;
    gap: 16px;
  }
}
.about__card > div h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--light-blue);
  @media only screen and (max-width: 768px) {
    text-align: center;
  }
}
.about__card > p {
  font-size: 16px;
  font-weight: 400;
  max-width: 50ch;
  line-height: 30px;
  color: var(--gray-900);
  @media only screen and (max-width: 768px) {
    text-align: center;
  }
}
/* end-about  */

/* start-features  */
.features {
  padding: var(--main-space) 0;
}
.features__cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  @media only screen and (min-width: 768px) {
    grid-template-columns: 1fr 1fr;
  }
  @media only screen and (min-width: 991px) {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.features__card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  @media only screen and (min-width: 768px) {
    align-items: flex-start;
    text-align: start;
  }
}
.features__card h6 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 16px;
  color: var(--dark-blue);
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  text-align: center;
  @media only screen and (min-width: 768px) {
    align-items: flex-start;
    text-align: start;
  }
}
.features__card p {
  font-weight: 400;
  color: var(--gray-900);
  text-align: center;
  line-height: 30px;
  @media only screen and (min-width: 768px) {
    align-items: flex-start;
    text-align: start;
  }
}
/* end-features  */
.highlighted-feature {
  padding: var(--main-space) 0;
  background: var(--main-gradient);
  position: relative;
  overflow: hidden;
  padding-bottom: 200px;
  @media only screen and (min-width: 768px) {
    padding-bottom: 360px;
  }
  @media only screen and (min-width: 991px) {
    padding-bottom: var(--main-space);
  }
}
.highlighted-feature .container {
  position: relative;
  min-height: 680px;
  @media only screen and (min-width: 768px) {
    min-height: 500px;
  }
  @media only screen and (min-width: 991px) {
    min-height: 450px;
  }
}

.highlighted-feature .section-title {
  color: #fff;
}
.highlighted-feature__sub_title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-top: 16px;
}
.highlighted-feature .transparent-logo {
  z-index: 1;
  width: 400px;
  max-width: 100%;
  position: absolute;
  right: 80px;
  bottom: 0px;
  min-height: 300px;
}
.highlighted-features__content {
  display: flex;
  justify-content: center;
  flex-direction: column;

  gap: 24px;
  margin-top: 80px;
}
.highlighted-features__content li {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #fff;
  font-size: 20px;
}
.highlighted-features__content a {
  position: relative;
  z-index: 2;
}
.highlighted-feature__mockups {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  align-items: flex-end;
  max-width: 100%;
}
.highlighted-feature__mockups img {
  height: 300px;
  object-fit: contain;
  @media only screen and (min-width: 768px) {
    height: 400px;
  }
}
.highlighted-feature__mockups img:nth-of-type(2) {
  transform: translate(-160px, 120px);
}
/* end-hightlighted-feature  */
/* start-customers  */
.customers {
  padding: var(--main-space) 0;
}
.customers__sub_heading {
  color: var(--gray-900);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin: 8px 0 24px;
}

.embla {
  max-width: 100%;
  overflow: hidden;
}

.embla__container {
  display: flex;
}

.embla__slide {
  flex: 0 0 auto;
  width: 120px; /* Adjust logo size */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  @media only screen and (min-width: 768px) {
    width: 180px;
  }
}

.embla__slide img {
  max-width: 100%;
  height: auto;
}

/*
.customers__slider {
  --s: 150px; size of the logo 
  --d: 40s;  animation duration
  --n: 2; number of visible logos 
  
  display: flex;
  overflow: hidden;

  @media only screen and (min-width: 768px) {
    --n: 3;
  }
  @media only screen and (min-width: 991px) {
    --n: 5;
  }
  @media only screen and (min-width: 1024px) {
    --n: 6;
  }
}
*/

/* .customers__slider img { */
/* width: var(--s);
  offset: shape(
    from calc(var(--s) / -2) 50%,
    hline by calc(sibling-count() * max(100% / var(--n), var(--s) + 10px))
  );
  animation: x var(--d) linear infinite
    calc(-1 * sibling-index() * var(--d) / sibling-count()); */
/* width: var(--s);
  offset: shape(
    from calc(var(--s) / -2) 50%,
    hline by calc(var(--sibling-count) * max(100% / var(--n), var(--s) + 10px))
  );
  animation: x var(--d) linear infinite
    calc(-1 * var(--sibling-index) * var(--d) / var(--sibling-count)); */
/* } */
/* @keyframes x {
  to {
    offset-distance: 100%;
  }
} */

/* end-customers  */
/* start-pricing  */
.pricing {
  padding: var(--main-space) 0;
  background-color: #fff;
}
.pricing__sub_heading {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: var(--gray-900);
  margin-top: 16px;
}
.pricing__cards-options {
  display:flex;
  justify-content: center;
  flex-direction: column;
  gap:24px;
  margin:64px 0 24px 0;
  /* align-items: start; */
  @media only screen and (min-width:768px){
    flex-direction:row;
  }
}
.pricing__cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  /* max-width:600px; */
}
.pricing__card {
  padding: 20px;
  border-radius: 16px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  gap: 12px;
  @media only screen and (min-width: 768px) {
    padding: 32px;
  }
}
.pricing__card:nth-of-type(1) {
  color:#fff;
  background: var(--main-gradient);
}
.pricing__card h6 {
  /* color:#031822; */
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  @media only screen and (min-width: 768px) {
    font-size: 18px;
  }
}

.pricing__card h3 {
  font-weight: 700;
  font-size: 24px;
  @media only screen and (min-width: 768px) {
    font-size: 32px;
  }
}
.pricing__card p {
  font-size: 16px;
  font-weight: 400;
}

.pricing__options {
  max-width: 600px;
  color: var(--gray-900);
}
.pricing__options li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing__options li:not(:last-of-type) {
  margin-bottom: 12px;
}
.pricing__special {
  margin-top: 20px;
  padding-top: 60px;
  border-top: 1px solid #e1e1e1;
}
.pricing__special_card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 16px;
  background-color: #f6f6f6;
  position: relative;
  overflow: hidden;
  @media only screen and (min-width: 768px) {
    padding: 64px;
  }
}
.pricing__special_card .badge {
  position: absolute;
  transform: rotate(-45deg);
  top: 15px;
  /* left:-90px; */
  left: -120px;
  background: var(--main-gradient);
  color: #fff;
  width: 300px;
  /* height:60px; */
  height: 40px;
  text-align: center;
  padding: 16px;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  @media only screen and (min-width: 768px) {
    top: 30px;
    left: -90px;
    height: 60px;
    font-size: 20px;
  }
}
.pricing__special_card .badge img {
  transform: rotate(45deg);
  @media only screen and (min-width: 768px) {
    width: 30px;
    height: 30px;
  }
}
.pricing__special_card h3 {
  font-size: 1.3rem;
  color: var(--dark-blue);
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 24px;
  @media only screen and (min-width: 768px) {
    font-size: 2rem;
  }
}
.pricing__special_card h3:before {
  content: "";
  width: 100%;
  height: 60%;
  background-color: var(--light-blue);
  position: absolute;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
}
.pricing__special_card p {
  max-width: 35ch;
  color: #233e48;
  margin: 0 auto 24px;
  text-align: center;
  line-height: 30px;
  font-size: 1rem;

  @media only screen and (min-width: 768px) {
    max-width: 40ch;
    font-size: 1.3rem;
  }
}
.pricing__special_card a {
  display: block;
  margin: auto;
  width: fit-content;
  background: var(--main-gradient);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
}
/* end-pricing  */

/* start-start  */
.start {
  padding: var(--main-space) 0;
  background: var(--main-gradient);
  color: #fff;
}
.start__sub_heading {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin: 8px 0 24px;
}
.start .section-title {
  color: #fff;
}
.start__action {
  padding: 16px 48px;
  border-radius: 12px;
  background-color: #fff;
  color: #083851;
  font-weight: bold;
  width: 280px;
  text-align: center;
  margin: 32px auto 0;
  display: block;
}
/* end-start  */

/* start-faqs */
.faqs {
  padding: var(--main-space) 0;
}
.faqs__items {
  max-width: 900px;
  margin: 50px auto;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faqs__item {
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  border: 1px solid #ddd;
}
.faqs__question {
  background-color: #fff;
  color: #031822;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faqs__item.active .faqs__question {
  color: #fff;
}
.faqs__item .faqs__question img:nth-of-type(1) {
  display: none;
}
.faqs__item.active .faqs__question img:nth-of-type(1) {
  display: block;
}
.faqs__item .faqs__question img:nth-of-type(2) {
  display: block;
}
.faqs__item.active .faqs__question img:nth-of-type(2) {
  display: none;
}

.faqs__item.active .faqs__question {
  background-color: var(--light-blue);
}

.faqs__answer {
  /* display: none; */
  overflow: hideen;
  padding: 15px 20px;
  background: #f8f8f8;
  line-height: 1.6;
  height: 0;
  padding: 0;
}
.faqs__item.active .faqs__answer {
  /* display: block; */
  height: auto;
  padding: 15px 20px;
}
/* end-faqs  */
/* start-footer  */
.footer {
  padding: var(--main-space) 0 30px;
  background: var(--main-gradient);
  color: #fff;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  @media only screen and (min-width: 768px) {
    flex-direction: row;
    align-items: start;
    gap: 24px;
  }
}
.footer__content > div:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  @media only screen and (min-width: 768px) {
    gap: 16px;
    align-items: start;
  }
}
.footer__content > div:nth-of-type(1) p {
  max-width: 60ch;
  display: none;
  /* margin: 24px 0; */
  font-size: 14px;
  line-height: 24px;
  @media only screen and (min-width: 768px) {
    display: block;
  }
}
.footer__content > div:nth-of-type(1) a {
  display: flex;
  gap: 16px;
  flex-direction: column;
  @media only screen and (min-width: 768px) {
    flex-direction: row;
  }
}
.footer__content > ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  @media only screen and (min-width: 768px) {
    align-items: flex-start;
  }
}
.footer__content > div:nth-of-type(2) a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__copyrights {
  margin-top: 80px;
  text-align: center;
  line-height: 30px;
}

/* Price skeleton loading state */
.msg-price.skeleton {
  position: relative;
  color: transparent !important;
  background: linear-gradient(
    90deg,
    #e0e0e0 25%,
    #f0f0f0 50%,
    #e0e0e0 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  display: inline-block;
  min-width: 60px;
  height: 1.2em;
  overflow: hidden;
}

.msg-price.skeleton::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer-overlay 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes shimmer-overlay {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
