:root {
  --color-white: #FFF;
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-primary-300: #93c5fd;
  --color-primary-400: #60a5fa;
  --color-primary-500: #3b82f6;
  --color-primary-600: #2563eb;
  --color-primary-700: #1d4ed8;
  --color-primary-800: #1e40af;
  --color-primary-900: #1e3a8a;
  --color-primary-1000: #151b26;

  --max-w-screen-sm: 640px;
  --max-w-screen-md: 768px;
  --max-w-screen-lg: 1024px;
  --max-w-screen-xl: 1280px;
  --max-w-2xl: 42rem;
}


@font-face {
  font-family: "OpenSans-Light";
  /* Provide a name for your font */
  src: url("./assets/fonts/OpenSans-Light.ttf") format("truetype");
  /* You can add more variations and formats as needed */
}

@font-face {
  font-family: "OpenSans-regular";
  /* Provide a name for your font */
  src: url("./assets/fonts/OpenSans-Regular.ttf") format("truetype");
  /* You can add more variations and formats as needed */
}

@font-face {
  font-family: "OpenSans-Semibold";
  /* Provide a name for your font */
  src: url("./assets/fonts/OpenSans-SemiBold.ttf") format("truetype");
  /* You can add more variations and formats as needed */
}


/* *************************************
                CSS 
  ************************************** */

#services {
  width: 100%;
  height: fit-content;
  max-width: var(--max-w-screen-xl);
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}



#services .carousel-item {
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


#services .carousel-indicators li {
  cursor: pointer;
}


.join-professional-area {

  position: relative;
  background-color: #151B26;
}

.join-professional-area .close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: #FFF;
  cursor: pointer;

  @media screen and (max-width : 767px) {
    color: #FFF;
  }

}

.join-professional-area .container {
  padding: 0.5rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);
  display: flex;
  text-align: center;
  gap: 20px;
}

.join-professional-area .explication {
  color: #FFF;
  font-size: 14px;

  @media screen and (max-width : 767px) {
    font-size: 12px;
    display: none;
  }

}

.join-professional-area .sub-explication {
  display: flex;
  align-items: center;
  gap: 10px;
}

.join-professional-area .sub-explication img {
  width: 15px;
}

.join-professional-area .join-professional-area-action {
  font-size: 14px;
  color: #FFFFFF;
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
  cursor: pointer;
}

.join-professional-area .action:hover {
  opacity: 0.7;
}

.head-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}


.navBar {
  background-color: var(--color-white);
  border-color: #e2e8f0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 0.5px solid #00000011;

  @media (min-width: 1024px) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.navBar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);
}

.navBar .logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 150px;
  height: auto;

  @media screen and (max-width : 767px) {
    width: 60px;
  }
}

.navBar .connection-items {
  display: flex;
  align-items: center;

  @media (min-width: 1024px) {
    order: 2;
  }

}



.navBar .connection-items .item {
  color: #2d3748;
  font-weight: 500;
  background-color: var(--color-white);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  margin-right: 0.5rem;

  @media screen and (max-width : 767px) {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }

  @media screen and (max-width : 500px) {
    display: none;
  }

}

.navBar .connection-items .item-connection {
  color: var(--color-white);
  background-color: var(--color-primary-1000);
  font-weight: 500;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  margin-right: 0.5rem;

  @media screen and (max-width : 767px) {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }
}

.navBar .styled-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  margin-left: 0.25rem;
  font-size: 0.875rem;
  color: #718096;
  border-radius: 0.375rem;

  @media (min-width: 1024px) {
    display: none;
  }

  &:hover {
    background-color: #edf2f7;
  }

  &:focus {
    outline: none;
  }
}

.navBar .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.navBar svg {
  width: 1.5rem;
  height: 1.5rem;
}

.navBar svg:nth-of-type(2) {
  display: none;
}

.navBar .navigation-items {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  @media (min-width: 1024px) {
    display: flex;
    width: auto;
    order: 1;
  }
}

.navBar .navigation-items.show {
  display: flex;
}

.navBar .navigation-items ul {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  font-weight: 500;

  @media (min-width: 1024px) {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
  }
}

.navBar .navigation-items li.item {
  display: none;

  @media screen and (max-width : 500px) {
    display: block;
  }
}

.navBar .navigation-items ul a {
  display: block;
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  border-radius: 0.375rem;
  border-color: #e2e8f0;
}


html:lang(fr) .carousel {
  position: relative;
}

html:lang(fr) .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

html:lang(fr) .carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

html:lang(fr) .carousel-item.active,
html:lang(fr) .carousel-item-next,
html:lang(fr) .carousel-item-prev {
  display: block;
}

html:lang(fr) .carousel-item-next,
html:lang(fr) .carousel-item-prev {
  position: absolute;
  top: 0;
}

html:lang(fr) .carousel-item-next.carousel-item-left,
html:lang(fr) .carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  html:lang(fr) .carousel-item-next.carousel-item-left,
  html:lang(fr) .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

html:lang(fr) .carousel-item-next,
html:lang(fr) .active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  html:lang(fr) .carousel-item-next,
  html:lang(fr) .active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

html:lang(fr) .carousel-item-prev,
html:lang(fr) .active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  html:lang(fr) .carousel-item-prev,
  html:lang(fr) .active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

html:lang(fr) .carousel-control-prev,
html:lang(fr) .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

html:lang(fr) .carousel-control-prev:hover,
html:lang(fr) .carousel-control-prev:focus,
html:lang(fr) .carousel-control-next:hover,
html:lang(fr) .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

html:lang(fr) .carousel-control-prev {
  left: 0;
}

html:lang(fr) .carousel-control-next {
  right: 0;
}

html:lang(fr) .carousel-control-prev-icon,
html:lang(fr) .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

html:lang(fr) .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

html:lang(fr) .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

html:lang(fr) .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

html:lang(fr) .carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}

html:lang(fr) .carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

html:lang(fr) .carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

html:lang(fr) .carousel-indicators .active {
  background-color: #fff;
}

html:lang(fr) .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}


html:lang(ar) .carousel {
  position: relative;
}

html:lang(ar) .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

html:lang(ar) .carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

html:lang(ar) .carousel-item.active,
html:lang(ar) .carousel-item-next,
html:lang(ar) .carousel-item-prev {
  display: block;
}

html:lang(ar) .carousel-item-next,
html:lang(ar) .carousel-item-prev {
  position: absolute;
  top: 0;
}

html:lang(ar) .carousel-item-next.carousel-item-left,
html:lang(ar) .carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  html:lang(ar) .carousel-item-next.carousel-item-left,
  html:lang(ar) .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

html:lang(ar) .carousel-item-next,
html:lang(ar) .active.carousel-item-right {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  html:lang(ar) .carousel-item-next,
  html:lang(ar) .active.carousel-item-right {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

html:lang(ar) .carousel-item-prev,
html:lang(ar) .active.carousel-item-left {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  html:lang(ar) .carousel-item-prev,
  html:lang(ar) .active.carousel-item-left {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

html:lang(ar) .carousel-control-prev,
html:lang(ar) .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

html:lang(ar) .carousel-control-prev:hover,
html:lang(ar) .carousel-control-prev:focus,
html:lang(ar) .carousel-control-next:hover,
html:lang(ar) .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

html:lang(ar) .carousel-control-prev {
  right: 0;
}

html:lang(ar) .carousel-control-next {
  left: 0;
}

html:lang(ar) .carousel-control-prev-icon,
html:lang(ar) .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

html:lang(ar) .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

html:lang(ar) .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

html:lang(ar) .carousel-indicators {
  position: absolute;
  left: 0;
  bottom: 10px;
  right: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 0;
  margin-left: 15%;
  margin-right: 15%;
  list-style: none;
}

html:lang(ar) .carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-left: 3px;
  margin-right: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}

html:lang(ar) .carousel-indicators li::before {
  position: absolute;
  top: -10px;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

html:lang(ar) .carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

html:lang(ar) .carousel-indicators .active {
  background-color: #fff;
}

html:lang(ar) .carousel-caption {
  position: absolute;
  left: 15%;
  bottom: 20px;
  right: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.header .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  max-width: var(--max-w-screen-xl);

  @media screen and (min-width: 1024px) {
    gap: 2rem;
  }

  @media screen and (min-width: 1280px) {
    gap: 0;
    padding-top: 4rem;
    grid-template-columns: repeat(12, 1fr);
  }
}

.custom-dropdown {
  position: relative;
  max-width: 180px;
  z-index: 50;

  @media screen and (max-width : 1024px) {
    padding-top: 0.5rem;
  }
}

html:lang(fr) .custom-dropdown {
  padding-left: 0.75rem;
}

html:lang(ar) .custom-dropdown {
  padding-right: 0.75rem;
}



.selected-option {
  padding: 0px;
  cursor: pointer;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  max-width: 250px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
}

html:lang(fr) .options {
  left: 0
}

html:lang(ar) .options {
  right: 0
}

.option {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.option:hover {
  background-color: #f2f2f2;
}



.header .main_writing {
  place-self: center;
  margin-right: auto;
  z-index: 10;
  color: white;
  font-family: "Open Sans", 'Cairo';
  font-weight: 200;

  @media (min-width: 1024px) {
    grid-column: span 7;
  }
}

.header .title {
  font-size: 48px;
  text-align: center;
  padding: 30px;

  @media screen and (max-width: 767px) {
    font-size: 24px;
  }
}

.header .custom-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-right: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-white);
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.4);
}

.header .custom-link .icon {
  margin-left: 0.5rem;
  margin-right: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}


.announcement {
  padding: 1rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);
  background: linear-gradient(to bottom right, #151B26, #182A4B);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: #FFF;
  font-family: "Open Sans", 'Cairo';
}

.announcement .title {
  font-size: 26px;
  text-align: center;

  @media screen and (max-width : 767px) {
    font-size: 24px;
  }
}

.announcement .title span {
  color: #44F2A1;
}

.announcement .text {
  font-size: 16px;
  margin-bottom: 15px;
}

.announcement .text span {
  color: #44F2A1;
  font-weight: bold;
  font-size: 48px;
  margin: 0 1rem;

  @media screen and (max-width : 767px) {
    font-size: 22px;
  }
}

.announcement .action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.announcement .action .text {
  font-size: 22px;
  text-align: center;

  @media screen and (max-width : 767px) {
    font-size: 18px;
  }
}

.announcement .action .button {
  padding: 7px 30px;
  background-color: #44F2A1;
  border-radius: 2rem;
  color: #151B26;
  font-size: 16px;
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
}

.announcement .action .button:hover {
  cursor: pointer;
  opacity: 0.9;
}


.announcement-gift-card {
  padding: 1rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);
  background-image: url("/assets/claim_gift_card.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: #FFF;
  font-family: "Open Sans", 'Cairo';
}

.announcement-gift-card .action {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.announcement-gift-card .action .text {
  font-size: 22px;
  text-align: center;
  color: red;
  margin-bottom: 30px;
  font-family: OpenSans-Semibold, 'Cairo';

  @media screen and (max-width : 767px) {
    font-size: 20px;
  }
}

.announcement-gift-card .action .button {
  padding: 7px 30px;
  background-color: #151B26;
  border-radius: 2rem;
  color: #FEED9B;
  font-size: 16px;
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
}

.announcement-gift-card .action .button:hover {
  cursor: pointer;
  opacity: 0.9;
}

.how-we-are .container {
  padding-top: 2rem;
  padding-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);

  @media (min-width: 1024px) {
    padding-top: 4rem;
  }
}

.how-we-are .title {
  font-size: 32px;
  text-align: center;
  font-family: "Open Sans", 'Cairo';
  font-weight: 700;
  color: #151b26;
  margin-bottom: 4rem;

  @media screen and (max-width : 767px) {
    font-size: 24px;
    margin-bottom: 2rem;
  }
}

.how-we-are .subTitle {
  font-size: 38px;
  text-align: center;
  font-family: "OpenSans-Light", 'Cairo';
  font-weight: 300;
  color: #151b26;

  @media screen and (max-width : 767px) {
    font-size: 28px;
  }
}

.objectives .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);

  @media screen and (min-width: 1280px) {
    padding-top: 4rem;
  }
}

.objectives .box-choice {
  text-align: center;
  flex: 1;
  display: flex;
  /* Change this to flex for proper alignment */
  flex-direction: column;
  /* Stack children vertically */
  align-items: center;
  /* Center align items horizontally */
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  box-shadow: #8762d966 0px 2px 8px 0px;

  @media (max-width: 1024px) {

    margin: 20px;
  }


  @media (max-width: 768px) {

    width: 100%;
    flex: none;

  }
}


.objectives .box-choice .advantages-points {
  width: 100%;
  padding: 30xc;
  text-align: left;
  display: flex;

  @media (max-width: 768px) {
    display: block;
    padding-left: 60px;
  }
}

.objectives .box-choice .advantages-points .box {
  flex: 1;
}

.objectives .box-choice .advantages-points .box .item {
  margin: 10px;
  display: flex;
  font-size: 16px;
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
}

.objectives .box-choice .advantages-points .box .item img {
  line-height: 0px;
  margin: 10px;
}

.objectives .box-choice .box-choice-inner {
  display: flex;
  justify-content: center;
  /* Center the inner content */
  align-items: center;
  /* Center vertically */
}

.objectives .box-choice div img {
  max-width: 300px;
  width: 100%;
  /* Make the image responsive */
  height: auto;
  /* Maintain aspect ratio */
}



.objectives .text-box-client {
  font-size: 24px;
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
  ;
  padding: 20px;
  color: #151b26;

  @media screen and (max-width : 767px) {
    font-size: 24px;
  }
}

.objectives .description {
  justify-content: center;
  text-align: center;
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 400;
  ;
  font-size: 22px;
}


.tarification {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  flex-wrap: wrap;
  font-family: OpenSans-regular, 'cairo';
  font-weight: 500;

  @media (max-width: 640px) {
    flex-direction: column;
  }
}

.tarification .card {
  max-width: 400px;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;

  padding: 20px;
  flex: 1;
}

.tarification .card-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.tarification .card-pricing {
  margin-bottom: 20px;
  text-align: center;
}

.tarification .card-pricing .price {
  font-size: 28px;
  font-weight: bold;
  color: #2E8B57;
  padding-left: 20px;
  padding-right: 20px;
}

.tarification .card-pricing .price-old {
  font-size: 22px;
  text-decoration: line-through;
  font-weight: bold;
  padding-top: 5px;
  color: #66666657;
}

.tarification .card-pricing .subtext {
  color: #666;
}

.tarification .free-trial {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding-top: 30px;
  text-align: center;
}

.tarification .card-advantages {
  margin-bottom: 20px;
}

.tarification .advantage {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.tarification .advantage img {
  width: 20px;
  margin-right: 10px;
  margin-left: 10px;
}

.tarification .card-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tarification .button {
  display: block;
  padding: 10px 15px;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
}

.tarification .button-green {
  background-color: #28A745;
}

.tarification .button-blue {
  background-color: #007BFF;
}

.client-section .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);

  @media (min-width: 640px) {
    padding-top: 4rem;
  }

  @media (min-width: 1024px) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.title_revolution {
  padding: 20px;
  font-family: "Open Sans", 'Cairo';
  font-weight: 500;
  color: #151b26;
  font-size: 32px;

  @media screen and (max-width : 767px) {
    font-size: 26px;
    padding: 20px 0;
  }

}

.client-section .title_revolution .for_who {
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
  ;
  color: #151b26;
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 20px;

  @media screen and (max-width : 767px) {
    font-size: 26px;
  }
}


.client-section .title_revolution .for_who_important {
  font-family: OpenSans-Regular, 'Cairo';
  font-weight: 500;
  color: #151b26;
  font-size: 38px;
  line-height: 1.5;
  margin-bottom: 20px;

  @media screen and (max-width : 767px) {
    font-size: 26px;
  }
}

.payPart-solution .left .sub_title {
  font-family: OpenSans-Regular, 'Cairo';
  font-weight: 500;
  color: #151b26;
  padding-top: 20px;
  font-size: 24px;
}

.client-section .title_revolution .for_who_2 {
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 400;
  font-size: 28px;
  margin-top: 20px;

  @media screen and (max-width : 767px) {
    font-size: 22px;
  }
}

.client-section .steps-holder {
  gap: 2rem;

  @media (min-width: 768px) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    row-gap: 0;
  }

  @media (min-width: 1024px) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.client-section .steps-holder .step-holder {
  padding: 50px;
}

.client-section .dot-number {
  color: #151b26;
  text-align: center;
  font-size: 26px;
  padding-top: 5px;
  padding-bottom: 5px;
  float: left;
  width: 50px;
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
  ;
}

.client-section .step-description {
  padding: 20px;
  font-size: 18px;
  font-family: OpenSans-Regular, 'Cairo';
  font-weight: 500;
  ;
  ;
  display: flex;
  align-items: center;
}

.client-section .step-description .description {
  padding-left: 20px;
}

.E-commerce .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);

  @media (min-width: 640px) {
    padding-top: 4rem;
  }

  @media (min-width: 1024px) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.gif-container {
  text-align: center;
  margin: 20px 0;
}

.E-commerce .list-of-cards {
  gap: 2rem;
  display: grid;

  @media (min-width: 768px) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    row-gap: 0;
  }

  @media (min-width: 1024px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.item-card-choice {
  border-radius: 10px;
  box-shadow: #8762d966 0px 2px 8px 0px;
}

.item-card {
  min-height: 400px;
  border-radius: 10px;
  box-shadow: #8762d966 0px 2px 8px 0px;
}

.item-card img {
  width: 100%;
  object-fit: cover;
  position: relative;
  height: auto;
  max-height: 260px;
  border-radius: 10px 10px 0px 0px;
}

.item-card img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}


.main-banner-solution .container {
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  /*max-width: var(--max-w-screen-xl);*/
  background-image: url('./assets/background_gradiant.svg');
  background-repeat: no-repeat;

  position: relative;
  /* Needed for absolute children to be positioned relative to this container */

  @media (max-width: 768px) {

    flex-direction: column;
    padding-top: 4rem;
    padding-left: 0px;
    padding-right: 0px;
  }

}

.main-banner-solution .language-options-abs {
  position: absolute;
  top: 6rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  /* Ensure it's above the banner */

  @media (max-width: 768px) {
    top: 4rem;
  }
}

.main-banner-solution .language-options-abs .option {
  color: white;
}

.main-banner-solution .container .main_image {
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  /* Enable Flexbox */
  justify-content: center;
}

.main-banner-solution .container .main_image .mobile-only {
  @media (min-width: 768px) {
    display: none;
  }
}

.main-banner-solution .container .main_image .web-only {
  @media (max-width: 768px) {
    display: none;
  }
}

.main-banner-solution .container .big_text {
  padding-top: 10px;
  flex: 1;
  text-align: center;
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
  color: #151b26;
  font-size: 48px;
  line-height: 1.5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  @media screen and (max-width : 767px) {
    font-size: 26px;
  }
}

.main-banner-solution .container .big_text .content_text {
  padding-left: 20%;

  @media screen and (max-width : 767px) {
    padding-left: 10px;
    padding-right: 10px;
  }
}


.main-banner-solution .container .big_text .small_text {
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 600;
  font-size: 22px;
  padding-top: 10px;
  color: #425466;
  padding: 20px;
  margin-bottom: 20px;
}

.main-banner-solution .container .big_text .medium_text {
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 500;
  color: #151b26;
  font-size: 42px;
}

.payPart-social-proof {
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-lg);
  border-radius: 10px;
  text-align: center;
  justify-content: center;

  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
  color: #151b26;
  font-size: 32px;
  padding: 40px;
  align-items: center;

  box-shadow: #8762d966 0px 2px 8px 0px;

  @media (max-width: 1200px) {
    background-color: rgba(0, 0, 0, 0.05);
    flex-direction: column;
    padding-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-shadow: none;
  }
}

.payPart-social-proof .big_text {
  padding-bottom: 20px;
  text-align: center;
}

.payPart-social-proof .image_holder {
  align-items: center;
  display: flex;
  align-self: center;
  text-align: center;
  justify-content: center;
}

.payPart-social-proof .image_holder img {
  max-height: 60px;
  align-items: center;
}

.payPart-social-proof .small_text {
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 600;
  font-size: 18px;
  color: #425466;
}

.client-trust-section.grey-effect {
  background-color: rgba(0, 0, 0, 0.05);
}

.client-trust-section .container {
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
  align-items: center;

  @media (max-width: 768px) {
    flex-direction: column;
    padding-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.client-trust-section .container .main_image {
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  /* Allows multiple rows */
  gap: 1rem;
  /* Space between .clients blocks */
  justify-content: center;
}

.client-trust-section .container .clients {
  display: flex;
  gap: 1.5rem;
  /* Space between individual cards */
}

.client-trust-section .container .main_image .clients .card {
  background-color: white;
  box-shadow: #8762d966 0px 2px 8px 0px;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;

  @media (max-width: 768px) {
    min-width: 170px;
    max-width: 300px;
  }
}

.client-trust-section .container .main_image .clients .card-top {
  background-color: #151B26;
  height: 3px;
  width: 100%;
}

.client-trust-section .container .main_image .clients .content {
  text-align: center;
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 600;
  font-size: 18px;
  color: #151B26;

  padding: 20px;

  @media (max-width: 768px) {
    padding: 10px;
  }
}

.client-trust-section .container .big_text {
  padding: 10px;
  flex: 1;
  text-align: center;
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
  color: #151b26;
  font-size: 48px;
  line-height: 1.5;

  @media screen and (max-width : 767px) {
    font-size: 26px;
  }
}


.client-trust-section .container .big_text .content_text {
  padding-left: 20%;

  @media screen and (max-width : 767px) {
    padding-left: 0;
  }
}


.client-trust-section .container .big_text .small_text {
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 600;
  font-size: 22px;
  padding-top: 10px;
  color: #425466;
  padding: 20px;
  margin-bottom: 20px;
}



.payPart-solution .container {
  gap: 2rem;
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);

  @media (max-width: 768px) {

    flex-direction: column;
    padding-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.payPart-solution .container.reversed {
  @media (max-width: 768px) {
    flex-direction: column-reverse;
  }
}

.payPart-solution.grey-effect {
  background-color: rgba(0, 0, 0, 0.05);
}

.payPart-solution .container .small_image {
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  /* Enable Flexbox */
  justify-content: center;
}

.payPart-solution .container .small_image .image_holder {
  position: relative;
  display: inline-block;
}

.payPart-solution .container .small_image .overlay-text-top {
  position: absolute;
  /* Position the text relative to the container */
  top: 10px;
  /* Adjust the top position */
  right: 10px;
  /* Adjust the left position */
  color: #151B26;
  /* Text color */
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
  font-size: 22px;
}

.payPart-solution .container .small_image .overlay-text-bottom {
  position: absolute;
  /* Position the text relative to the container */
  bottom: 30px;
  /* Adjust the top position */
  left: 35px;
  /* Adjust the left position */
  color: #151B26;
  /* Text color */
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
  font-size: 22px;
}


.payPart-solution .container .small_image img {
  max-width: 350px;
}

.payPart-solution .container .big_text {
  padding-top: 10px;
  flex: 2;
  text-align: center;
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
  ;
  color: #151b26;
  font-size: 48px;
  line-height: 1.5;

  @media screen and (max-width : 767px) {
    font-size: 26px;
  }
}

.payPart-solution .container .big_text .small_text {
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 400;
  ;
  font-size: 22px;
  padding-top: 10px;
}

.payPart-solution .container .big_text .medium_text {
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 500;
  ;
  color: #151b26;
  font-size: 42px;
}

.payPart-solution .container .big_text .arrow_holder {
  justify-content: center;
  display: flex;
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
  font-size: 28px;
}

.payPart-solution .container .big_text .arrow_holder img {
  height: 80px;
}


/* The second section style */

.payPart-advantage .container {
  gap: 2rem;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);

  @media (max-width: 768px) {

    flex-direction: column;
    padding-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.payPart-advantage .container.reversed {
  @media (max-width: 768px) {
    flex-direction: column-reverse;
  }
}

.payPart-advantage.grey-effect {
  background-color: rgba(0, 0, 0, 0.05);
}

.payPart-advantage .container .small_image {
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  /* Enable Flexbox */
  justify-content: center;
  text-align: center;

  font-family: OpenSans-Light, 'Cairo';
  font-weight: 400;
  ;
  font-size: 22px;
}

.payPart-advantage .container .small_image img {
  max-width: 200px;
  padding-left: 60px;
}

.payPart-advantage .container .big_text {
  padding-top: 10px;
  flex: 3;
  text-align: center;
  font-family: OpenSans-Semibold, 'Cairo';
  font-weight: 600;
  ;
  color: #151b26;
  font-size: 32px;
  line-height: 1.5;

  @media screen and (max-width : 767px) {
    font-size: 26px;
  }
}

.payPart-advantage .container .big_text .small_text {
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 400;
  ;
  font-size: 22px;
  padding-top: 10px;
}

.payPart-advantage .container .big_text .arrow_holder {
  justify-content: center;
  display: flex;
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
  font-size: 28px;
}

.payPart-advantage .container .big_text .arrow_holder img {
  height: 80px;
}


.contact-header {
  padding: 1rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-header .contact-header-logo {
  margin: auto;
}

.contact-header .contact-header-logo img {
  min-width: 300px;

  @media screen and (max-width : 767px) {
    min-width: 200px;
  }
}

.contact-header .title {
  font-size: 28px;
  color: #151B26;

  @media screen and (max-width : 767px) {
    font-size: 20px;
  }
}

.contact-header .text {
  font-size: 16px;
  color: #151B26;

  @media screen and (max-width : 767px) {
    font-size: 14px;
  }
}

.contact-us {
  padding: 1rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);
}

.contact-us .title {
  font-size: 28px;
  color: #151B26;
  text-align: center;
  margin-bottom: 20px;

  @media screen and (max-width : 767px) {
    font-size: 24px;
  }
}

.contact-us .contact-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 10%;
}

.contact-us .contact-way {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  @media screen and (max-width : 600px) {
    width: 100%;
    margin-bottom: 20px;
  }
}

.contact-us .contact-way .contact-logo-container {
  width: 200px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-us .contact-way .contact-logo-container img {
  width: 100%;
}

.contact-us .contact-way .contact-way-name {
  color: #151B26;
  font-size: 18px;
  text-align: center;
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
}

.contact-us .contact-way .contact-information {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.contact-us .contact-way .contact-information .label {
  font-size: 22px;
  font-family: OpenSans-Light, 'Cairo';
  font-weight: 400;
  ;
  color: #151B26;
}


.contact-us .contact-way .contact-information .value {
  font-size: 20px;
  padding: 5px;
  color: #151B26;
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
}

.reclamation {
  padding: 1rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  max-width: var(--max-w-screen-xl);
  margin-bottom: 100px;
}

.reclamation img {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;

}

.reclamation .title {
  font-size: 28px;
  text-align: center;
  color: #151b26;
  margin-bottom: 20px;

  @media screen and (max-width : 767px) {
    font-size: 24px;
  }
}

.reclamation .text {
  color: #151B26;
  font-size: 18px;

  @media screen and (max-width : 767px) {
    font-size: 16px;
  }
}

.tarif {
  padding: 1rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 40px;
  max-width: var(--max-w-screen-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media screen and (max-width : 767px) {
    margin-top: 20px;
  }
}

.tarif .title {
  font-size: 28px;
  margin: 0 40px;
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
  color: #151b26;

  @media screen and (max-width : 767px) {
    margin: 0 40px;
    margin-left: 0;
    font-size: 24px;
  }
}

.tarif .text {
  font-size: 20px;
  color: #151b26;

  @media screen and (max-width : 767px) {
    font-size: 16px;
  }
}

.tarif table {
  margin: 0 40px;
  margin-top: 40px;
  width: calc(100% - 80px);
  border-collapse: collapse;

  @media screen and (max-width : 767px) {
    margin: 0;
    width: 100%;
  }
}

.tarif .note {
  font-size: 20px;
  color: #151b26;
  margin: 0 40px;

  @media screen and (max-width : 767px) {
    font-size: 16px;
    margin: 0;
  }
}

.tarif table th,
.tarif table td {
  padding: 10px;
  border: 1px solid black;
}

.tarif table tr th:first-of-type {
  width: 50%;

  @media screen and (max-width : 767px) {
    width: 70%;
  }
}


footer {
  padding: 1rem;
  background-color: #f7fafc;

  @media (min-width: 640px) {
    padding: 1.5rem;
  }
}

footer .centered-container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);
}

footer .flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;

  @media (min-width: 768px) {
    flex-direction: row;
    align-items: start;
    gap: 10px;
    justify-content: space-between;
  }
}

footer .left {
  margin-left: 0;

  @media (min-width: 768px) {
    margin-bottom: 0;
  }
}

footer .left a {
  display: flex;
  align-items: center;
}

footer .right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;

  @media (min-width: 640px) {
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

footer .right h2 {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a202c;
  text-transform: uppercase;
}

footer .right ul {
  color: #718096;
}

footer .right li {
  margin-bottom: 1rem;
}

footer .right a:hover {
  text-decoration: underline;
}

footer hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-color: #e2e8f0;

  @media (min-width: 640px) {
    margin-left: auto;
    margin-right: auto;
  }

  @media (min-width: 1024px) {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

footer .payPart-right {
  display: flex;

  @media (min-width: 640px) {
    align-items: center;
    justify-content: space-between;
  }
}

footer .payPart-right span {
  font-size: 0.875rem;
  color: #718096;

  @media (min-width: 640px) {
    text-align: center;
  }
}

footer .payPart-right a:hover {
  text-decoration: underline;
}

.backgroundImage {
  background-image: url(./assets/people_many.jpg);
  background-size: cover;
  position: relative;
}

.backgroundImage::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.seller-backgroundImage {
  background-image: url(./assets/colis.jpeg);
  background-size: cover;
  position: relative;
}

.seller-backgroundImage::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.buyer-backgroundImage {
  background-image: url(./assets/friends_all.jpg);
  background-size: cover;
  position: relative;
}

.buyer-backgroundImage::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}


.invitation_all {
  font-size: 32px;
  text-align: center;
  font-family: "Open Sans", 'Cairo';
  font-weight: 700;
  color: #151b26;
}

.invitation_all_next {
  font-size: 38px;
  text-align: center;
  font-family: "OpenSans-Light", 'Cairo';
  font-weight: 400;
  ;
  color: #151b26;
}

.container-choice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.item-card .text {
  padding: 20px;
}

.item-card .text .title {
  color: #151b26;
  font-family: OpenSans-Regular, 'Cairo';
  font-weight: 500;
  ;
  ;
  font-size: 28px;

  @media screen and (max-width : 767px) {
    font-size: 24px;
  }
}

.main_text {
  font-size: 48px;
  text-align: center;
  padding: 30px;

  @media screen and (max-width : 767px) {
    font-size: 28px;
  }
}


.item-card .text .description {
  color: #353535;
  font-weight: 300;
  font-size: 20px;

  @media screen and (max-width : 767px) {
    font-size: 18px;
  }
}

.frame {
  box-shadow: #8762d966 0px 2px 8px 0px;
}

#cib_web {
  width: 20%;
  margin-left: 30px;
}

#trust {
  background-image: url(./assets/hand_shake.jpg);
  background-size: cover;
  position: relative;
}

#trust::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

/* *******************************************************************************
                               some default css style
  ********************************************************************************/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}


*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: "";
}

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  font-family: Open_Sans, 'cairo', -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
}


body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  scroll-margin-top: 800px;
  /* Adjust this value to match your header height */
  scroll-behavior: smooth;
  overflow: auto;

  /* 2 */
}

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

textarea {
  resize: vertical;
}


input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}


button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}


img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

img,
video {
  max-width: 100%;
  height: auto;
}

.paypart-question-box {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);
  margin-bottom: 20px;

  @media (min-width: 1024px) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

details {
  user-select: none;
  width: 100%;
  box-shadow: #8762d966 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
}

details>summary div.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
  min-width: 30px;
  margin-left: 15px;
}

details[open] summary div.icon {
  transform: rotate(180deg);
}

summary {
  display: flex;
  cursor: pointer;
  font-size: 18px;
  color: #151B26;
  font-family: OpenSans-SemiBold, 'Cairo';
  font-weight: 600;
  ;
}

summary::-webkit-details-marker {
  display: none;
}

.question-holder {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

details .question-answer {
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.8;
  color: #151B26;
  font-family: OpenSans-regular, 'Cairo';
  font-weight: 500;
  ;
}

.QAsection .container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-w-screen-xl);

  @media (min-width: 1024px) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}