@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap");

body {
  direction: rtl;
  font-family: "Tajawal", sans-serif;
}

/* mixin for responsive it takes 
    type : min or max 
    size : 100px for the width of target screen
*/
a {
  text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

textarea {
  resize: none;
}

:root {
  scroll-behavior: smooth;
}

* {
  /* Track */
  /* Handle */
  /* Handle on hover */
}

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
  background: #224DCB;
  border-radius: 1rem;
}

*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  position: relative;
  transition: all .3s ease-in-out;
  scroll-behavior: smooth;
}

input {
  outline: none;
  border: none;
}

input[type='date']::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  flex: 1 0 0;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
}

/* customize pages with main section*/
main {
  overflow: hidden;
  margin-top: 100px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  main {
    margin-top: 100px;
  }
}

.handle-preloader {
  background-color: white;
}

.preloader-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
  animation: preloader 2s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
  .preloader-image {
    width: 200px;
    height: 200px;
  }
}

@keyframes preloader {
  50% {
    opacity: 0.1;
  }
}

.globalBtn {
  width: max-content;
  height: 45px;
  padding: 5px 8px;
  border-radius: 12px;
  background-color: #224DCB;
  box-shadow: 0px 2px 16px 0px transparent;
  border: 2px solid #224DCB;
  outline: none;
  color: white;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all .5s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
}

.globalBtn:hover {
  border: 2px solid #224DCB;
  box-shadow: 0px 2px 16px 0px rgba(3, 95, 168, 0.2);
  background: #FFF;
  color: #224DCB;
}

@media (max-width: 1100px) {
  .globalBtn {
    padding: 8px;
    border: 1px solid #224DCB;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
  }

  .globalBtn:hover {
    border: 1px solid #224DCB;
  }
}

.input-container {
  border-radius: 12px;
  opacity: 0.5;
  background: #EBEBEB;
  padding: 16px 24px;
  border: none;
  outline: none;
}

.input-container:focus {
  background: #EBEBEB;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(250px * 7));
  }
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}

.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slider .slide {
  height: 100px;
  width: 250px;
}

.handle-preloader {
  background-color: white;
}

.preloader-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
  animation: preloader 2s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
  .preloader-image {
    width: 200px;
    height: 200px;
  }
}

@keyframes preloader {
  50% {
    opacity: 0.1;
  }
}

#header {
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

#header .upperNav {
  background-color: #EBEBEB;
  height: 40x;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 74px;
  padding: 5px 98px;
}

@media (max-width: 991px) {
  #header .upperNav {
    display: none;
  }
}

#header .upperNav a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Tajawal", sans-serif;
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 768px) {
  #header .upperNav {
    display: none;
  }
}

#header .navsbar {
  padding: 5px 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  height: 80px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
  background-color: white;
}

@media (max-width: 1100px) {
  #header .navsbar {
    gap: 20px;
    padding: 16px 50px;
    height: 80px;
  }
}

#header .navsbar__logo {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

@media (max-width: 991px) {
  #header .navsbar__logo {
    width: 40px;
    height: 40px;
  }
}

#header .navsbar__logo img {
  width: 100%;
  height: 100%;
}

#header .navsbar__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  flex: 1 0 0;
}

@media (max-width: 991px) {
  #header .navsbar__list {
    display: none;
  }
}

#header .navsbar__list li a {
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  transition: all .5s;
}

#header .navsbar__list li:has(.active) a {
  color: #224DCB;
}

#header .navsbar__list li:has(.services) {
  position: relative;
  cursor: pointer;
}

#header .navsbar__list li:has(.services)::after {
  content: "\f107";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-right: 6px;
  color: #224DCB;
  transition: all .5s;
}

#header .navsbar__list li:hover a {
  color: #224DCB;
  text-shadow: 0px 2px 16px rgba(3, 95, 168, 0.2);
}

#header .navsbar__list li .language {
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  color: rgba(11, 72, 122, 0.8);
  text-align: center;
}

#header .navsbar__hamborg-tab {
  display: none;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
}

@media (max-width: 991px) {
  #header .navsbar__hamborg-tab {
    display: block;
  }
}

.navsbar__mobile {
  padding: 12px;
}

.navsbar__mobile__list {
  text-align: center;
  width: 100%;
}

.navsbar__mobile__list li {
  width: 100%;
  padding: 16px;
}

.navsbar__mobile__list li a {
  color: rgba(0, 0, 0, 0.8);
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.navsbar__mobile__list li:has(.active) a {
  color: #224DCB;
}

.navsbar__mobile__list li:has(.services) {
  position: relative;
  cursor: pointer;
}

.navsbar__mobile__list li:has(.services)::after {
  content: "\f107";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-right: 6px;
  color: #224DCB;
  transition: all .5s;
}

.navsbar__mobile__list .language span {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.navsbar__mobile__btn {
  width: 100%;
  border-radius: 0;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  max-height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #224DCB;
}

footer .unlimited-footer {
  width: 100%;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  footer .unlimited-footer {
    flex-direction: column-reverse;
  }
}

footer .unlimited-footer__upper {
  text-align: center;
  padding-block: 70px;
}

@media (max-width: 991px) {
  footer .unlimited-footer__upper {
    padding-block: 30px;
  }
}

footer .unlimited-footer__upper__header {
  color: white;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  footer .unlimited-footer__upper__header {
    display: none;
  }
}

footer .unlimited-footer__upper__desc {
  font-family: "Tajawal", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  width: 60%;
  opacity: 0.6;
  color: white;
  margin: auto;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  footer .unlimited-footer__upper__desc {
    display: none;
  }
}

footer .unlimited-footer__upper__btn {
  background: #EBEBEB;
  color: #224DCB;
  text-align: center;
  margin: auto;
  width: max-content;
  padding: 16px 14px;
}

footer .unlimited-footer__upper__btn:hover {
  box-shadow: 0px 2px 8px 0px rgba(3, 95, 168, 0.2);
  background-color: white;
}

footer .unlimited-footer__lower {
  width: 90%;
  border-top: 1px solid white;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-block: 20px 30px;
}

@media (max-width: 991px) {
  footer .unlimited-footer__lower {
    flex-direction: column;
    gap: 50px;
    padding-top: 100px;
    border-top: 1px solid white;
  }
}

footer .unlimited-footer__lower__icons {
  display: flex;
  gap: 20px;
  margin-left: 50px;
}

@media (max-width: 991px) {
  footer .unlimited-footer__lower__icons {
    padding-top: 0px;
    margin-left: 0px;
  }
}

footer .unlimited-footer__lower__scrollTop {
  color: #FFF;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  opacity: 0.8;
}

@media (max-width: 991px) {
  footer .unlimited-footer__lower__scrollTop {
    position: absolute;
    right: 5%;
    top: 5%;
  }
}

footer .unlimited-footer__lower__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

footer .unlimited-footer__lower__links a {
  color: white;
  position: relative;
  margin-left: 20px;
}

@media (max-width: 991px) {
  footer .unlimited-footer__lower__links a::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: white;
    position: absolute;
    margin-right: 10px;
  }

  footer .unlimited-footer__lower__links a:last-of-type::after {
    content: none;
  }
}

@media (max-width: 991px) {
  footer .unlimited-footer__lower__links {
    gap: 10px;
    flex-wrap: wrap;
  }
}

footer .footer__circleLeft {
  width: 70%;
  top: 0;
  position: absolute;
  bottom: 25%;
  left: 0%;
  right: 0;
}

footer .footer__circleLeft img {
  width: 100%;
  height: 100%;
}

footer .footer__circleRight {
  width: 82px;
  max-height: 81px;
  position: absolute;
  top: 10%;
  right: 5%;
}

footer .footer__circleRight img {
  width: 100%;
  height: 100%;
}

.chatIcon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 12px 12px 0px rgba(3, 95, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 100;
}

.chatIcon img {
  width: 40px;
  height: 40px;
}

.whattsIcon {
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 12px 12px 0px rgba(3, 95, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 2%;
  bottom: 5%;
  z-index: 100;
  background-color: #25d366;
}

.whattsIcon img {
  width: 40px;
  height: 40px;
}

.chattPop {
  max-width: 400px;
  min-height: 450px;
  max-height: 450px;
  bottom: 10%;
  right: 0;
  left: 50% !important;
  border-radius: 8px !important;
}

@media (max-width: 991px) {
  .chattPop {
    left: 10% !important;
  }
}

.chattPop .offcanvas-header {
  border-radius: 8px 8px 0px 0px !important;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  background: var(--Secondary, #EBEBEB);
}

.chattPop .offcanvas-header button {
  flex: 0 0 1;
  margin-left: 0;
  margin-right: auto;
}

.chattPop__images {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.chattPop__images img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid #224DCB;
  box-shadow: 0px 2px 8px 0px #00000040;
  object-fit: cover;
}

.chattPop__images img:nth-child(2) {
  width: 48px;
  height: 48px;
}

.chattPop__images img:nth-child(3) {
  width: 40px;
  height: 40px;
}

.chattPop__images__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #224DCB;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chattPop .offcanvas-body {
  border-radius: 0px 0px 8px 8px;
  background-color: white;
  height: 100%;
  position: relative;
}

.chattPop .offcanvas-body .chat__input {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin-inline: 16px;
  padding: 11px 16px;
  border-radius: 24px;
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.requestDemo .modal-content {
  width: 70%;
  margin: auto;
  padding: 20px;
}

@media (max-width: 991px) {
  .requestDemo .modal-content {
    width: 100%;
  }
}

.requestDemo .modal-content .modal-header {
  border-bottom: 0;
}

.requestDemo .modal-content .modal-header .modal-title {
  max-width: 90%;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

.requestDemo .modal-content .modal-body {
  border-bottom: 0;
}

.requestDemo .modal-content .modal-body input {
  margin-bottom: 24px;
}

.requestDemo .modal-content .modal-body .textarea__after {
  width: max-content;
  margin-right: auto;
  margin-left: 0;
  margin-top: 16px;
}

.requestDemo .modal-content .modal-footer {
  border-top: 0;
}

.requestDemo .modal-content .modal-footer button {
  width: 100%;
}

.services__dropDown {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 70px;
  overflow-y: scroll;
  min-width: 400px;
  max-height: 400px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 24px 24px 0px rgba(3, 95, 168, 0.2);
  transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services__dropDown__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.services__dropDown__box:last-of-type {
  border-bottom: 0;
}

.services__dropDown__box__img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  overflow: hidden;
  padding: 5px;
}

.services__dropDown__box__img img {
  width: 100%;
  height: 100%;
}

.services__dropDown__box__content {
  flex: 1 0 0;
  padding: 5px;
}

.services__dropDown__box__content h3 {
  margin: 0;
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 10px;
}

.services__dropDown__box__content p {
  margin: 0;
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.services__dropDown-mobile {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 40px;
  left: 0;
  overflow-y: scroll;
  max-width: 350px;
  max-height: 400px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 24px 24px 0px rgba(3, 95, 168, 0.2);
  transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 101;
}

.home__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 96px;
}

@media (max-width: 991px) {
  .home__hero {
    flex-direction: column-reverse;
    gap: 10px;
    padding-inline: 25px;
  }
}

.home__hero__video {
  width: 448px;
  height: 448px;
  overflow: hidden;
}

.home__hero__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 50%;
}

@media (max-width: 991px) {
  .home__hero__body {
    width: 100%;
    align-items: flex-start;
    gap: 15px;
  }
}

.home__hero__body__title {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 991px) {
  .home__hero__body__title {
    font-size: 30px;
    max-width: 100%;
  }
}

.home__hero__body__desc {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 991px) {
  .home__hero__body__desc {
    font-size: 20px;
  }
}

.home__hero__body__btn {
  background-color: white;
  border-color: black;
  color: black;
  cursor: pointer;
}

.home__ourClients {
  margin-block: 40px 30px;
  text-align: center;
  position: relative;
}

.home__ourClients__par {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 991px) {
  .home__ourClients__par {
    padding-block: 50px;
  }
}

.home__ourClients__case {
  color: white;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  margin: 30px auto;
}

.home__whoAreWe {
  padding: 30px 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

@media (max-width: 991px) {
  .home__whoAreWe {
    padding-inline: 50px;
  }
}

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

@media (max-width: 991px) {
  .home__whoAreWe__container {
    flex-direction: column;
  }
}

.home__whoAreWe__container__body {
  width: 60%;
}

@media (max-width: 991px) {
  .home__whoAreWe__container__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.home__whoAreWe__container__body__title {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  width: max-content;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .home__whoAreWe__container__body__title {
    width: 100%;
    font-size: 28px;
  }
}

.home__whoAreWe__container__body__desc {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  max-width: 90%;
}

@media (max-width: 991px) {
  .home__whoAreWe__container__body__desc {
    font-size: 16px;
    max-width: 100%;
  }
}

.home__whoAreWe__container__body .globalBtn {
  margin-top: 24px;
}

.home__whoAreWe__container__img {
  width: 30%;
  height: 30%;
}

@media (max-width: 991px) {
  .home__whoAreWe__container__img {
    width: 100%;
    height: 100%;
  }
}

.home__whoAreWe__container__img img {
  width: 100%;
  height: 100%;
}

.home__process {
  padding: 30px 98px;
}

@media (max-width: 991px) {
  .home__process {
    padding-inline: 50px;
  }
}

.home__process .process__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  gap: 12px;
  max-width: 300px;
}

@media (max-width: 768px) {
  .home__process .process__box {
    width: max-content;
    margin-block: 20px;
  }
}

.home__process .process__box:hover .process__box__upper::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  height: 5px;
  background-color: #224DCB;
  animation: animate-box .2s ease-in-out;
  width: 100%;
  height: 2px;
}

@keyframes animate-box {
  0% {
    width: 25%;
    height: 5px;
  }

  50% {
    width: 50%;
  }

  100% {
    width: 75%;
    height: 2px;
  }
}

.home__process .process__box__upper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.home__process .process__box__upper__num {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
}

.home__process .process__box__upper__word {
  color: rgba(0, 0, 0, 0.75);
  font-family: "Tajawal", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 991px) {
  .home__process .process__box__upper__word {
    font-size: 32px;
  }
}

.home__process .process__box__desc {
  color: rgba(0, 0, 0, 0.55);
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.home__process__first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  margin-left: 20%;
}

@media (max-width: 991px) {
  .home__process__first {
    justify-content: center;
    gap: 30px;
    margin: 0;
    margin-top: 40px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .home__process__first {
    flex-direction: column;
    margin: 0;
    margin-top: 40px;
    width: 100%;
  }
}

.home__process__second {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-right: 20%;
}

@media (max-width: 991px) {
  .home__process__second {
    justify-content: center;
    gap: 30px;
    margin: 0;
    margin-top: 40px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .home__process__second {
    flex-direction: column;
    margin: 0;
    margin-top: 40px;
    width: 100%;
  }
}

.home__whatPeopleAreSay {
  padding: 30px 98px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .home__whatPeopleAreSay {
    padding: 30px 50px;
  }
}

.home__whatPeopleAreSay__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .home__whatPeopleAreSay__container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

.home__whatPeopleAreSay__container__body {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .home__whatPeopleAreSay__container__body {
    width: 100%;
    align-items: center !important;
  }
}

.home__whatPeopleAreSay__container__body .description {
  color: black;
  text-align: center;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.home__whatPeopleAreSay__container__body .social-platform {
  color: black;
}

.home__whatPeopleAreSay__container__body .social-icons {
  display: flex;
  align-items: center;
  gap: 17px;
}

.home__whatPeopleAreSay__container__reviews {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: -20px;
  width: 50%;
}

@media (max-width: 991px) {
  .home__whatPeopleAreSay__container__reviews {
    width: 100%;
    align-items: center;
  }

  .home__whatPeopleAreSay__container__reviews:hover .box:nth-child(2) {
    transform: translateX(-30px);
  }

  .home__whatPeopleAreSay__container__reviews:hover .box:nth-child(1) {
    transform: translatey(0px);
  }

  .home__whatPeopleAreSay__container__reviews:hover .box:nth-child(3) {
    transform: translatey(0px);
  }
}

.home__whatPeopleAreSay__container__reviews:hover .box:nth-child(2) {
  transform: translateX(-30px);
}

.home__whatPeopleAreSay__container__reviews:hover .box:nth-child(1) {
  transform: translatey(10px);
}

.home__whatPeopleAreSay__container__reviews:hover .box:nth-child(3) {
  transform: translatey(-10px);
}

.home__whatPeopleAreSay__container__reviews .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  padding: 20px;
  border-radius: 2%;
  box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.15);
  filter: blur(1px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 5s cubic-bezier(0.455, 0.03, 0.515, 0.955) s;
}

@media (max-width: 991px) {
  .home__whatPeopleAreSay__container__reviews .box {
    width: 90%;
    padding: 10px;
  }
}

.home__whatPeopleAreSay__container__reviews .box__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.home__whatPeopleAreSay__container__reviews .box__info__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.home__whatPeopleAreSay__container__reviews .box__info__img img {
  width: 100%;
  height: 100%;
}

.home__whatPeopleAreSay__container__reviews .box__info__details p {
  margin: 0;
}

.home__whatPeopleAreSay__container__reviews .box__info__details__name {
  color: rgba(0, 0, 0, 0.9);
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
}

.home__whatPeopleAreSay__container__reviews .box__info__details__status {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.home__whatPeopleAreSay__container__reviews .box__desc {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.home__whatPeopleAreSay__container__reviews .box:nth-child(2) {
  margin-block: -20px;
  z-index: 90;
  box-shadow: 0px 4px 28px 0px rgba(3, 95, 168, 0.15);
  filter: blur(0);
  transform: translateX(-10px);
  background-color: white;
  position: relative;
}

.home__whatPeopleAreSay__container__reviews .box:nth-child(2)::before {
  content: "";
  width: 8px;
  height: 100%;
  background-color: #224DCB;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.home__section__header {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  margin: auto;
}

.service {
  padding-inline: 96px;
}

@media (max-width: 991px) {
  .service {
    padding-inline: 25px;
  }
}

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

@media (max-width: 991px) {
  .service__hero {
    flex-direction: column;
  }
}

.service__hero__body {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 991px) {
  .service__hero__body {
    width: 100%;
  }
}

.service__hero__body .header {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 991px) {
  .service__hero__body .header {
    font-size: 32px;
  }
}

.service__hero__body .descreption {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 991px) {
  .service__hero__body .descreption {
    font-size: 16px;
  }
}

.service__hero__body .globalBtn {
  width: max-content;
}

.service__hero__video {
  width: 40%;
  height: 30%;
  object-fit: cover;
  overflow: hidden;
}

@media (max-width: 991px) {
  .service__hero__video {
    width: 80%;
    height: 400px;
  }
}

.service__hero__video img {
  width: 100%;
  height: 100%;
}

.service__what {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .service__what {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.service__what__header {
  width: 50%;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 991px) {
  .service__what__header {
    width: 100%;
    font-size: 32px;
  }
}

.service__what__header span {
  color: #224DCB;
}

.service__what__desc {
  width: 40%;
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 991px) {
  .service__what__desc {
    width: 100%;
    font-size: 16px;
  }
}

.service__achieve {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
}

@media (max-width: 991px) {
  .service__achieve {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.service__achieve__header h2 {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .service__achieve__header h2 {
    font-size: 30px;
    width: 100%;
    text-align: right;
  }
}

.service__achieve__header h2 span {
  color: #224DCB;
}

@media (max-width: 991px) {
  .service__achieve__header h2 span {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .service__achieve__header {
    width: 100%;
  }
}

.service__achieve__desc {
  max-width: 40%;
  color: black;
  text-align: center;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 991px) {
  .service__achieve__desc {
    max-width: 100%;
    font-size: 16px;
    text-align: right;
  }
}

.service__achieve__solutions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .service__achieve__solutions {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
}

.service__achieve__solutions .solution {
  width: 45%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-block: 20px;
}

@media (max-width: 991px) {
  .service__achieve__solutions .solution {
    width: 100%;
  }
}

.service__achieve__solutions .solution__box {
  width: 100%;
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .service__achieve__solutions .solution__box {
    width: 100%;
  }
}

.service__achieve__solutions .solution__box__title {
  flex: 1 0 0;
  padding: 30px 40px;
  text-align: center;
}

@media (max-width: 991px) {
  .service__achieve__solutions .solution__box__title {
    padding: 5px;
  }
}

.service__achieve__solutions .solution__box__title h4 {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 991px) {
  .service__achieve__solutions .solution__box__title h4 {
    font-size: 14px;
  }
}

.service__achieve__solutions .solution__box__icon {
  padding: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .service__achieve__solutions .solution__box__icon {
    padding: 5px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 991px) {
  .service__achieve__solutions .solution__box__icon img {
    width: 100%;
    height: 100%;
  }
}

.service__achieve__solutions .solution__desc {
  width: 100%;
  height: 70px;
}

@media (max-width: 991px) {
  .service__achieve__solutions .solution__desc {
    display: none;
  }
}

.service__achieve__solutions .solution__desc__par {
  position: absolute;
  color: black;
  text-align: center;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  bottom: 0;
  opacity: 0;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service__achieve__solutions .solution:hover .solution__desc__par {
  bottom: -25px;
  opacity: 1;
}

@media (max-width: 991px) {
  .service__achieve__solutions .solution:hover .solution__desc__par {
    opacity: 0;
  }
}

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

@media (max-width: 991px) {
  .service__meeting {
    flex-direction: column;
    gap: 20px;
  }
}

.service__meeting__body {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 991px) {
  .service__meeting__body {
    width: 100%;
  }
}

.service__meeting__form {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 991px) {
  .service__meeting__form {
    width: 100%;
  }
}

.service__meeting__form input {
  width: 100%;
}

.service__meeting__form textarea {
  width: 100%;
}

.service__meeting__form .nda {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.service__meeting__form .nda__selection {
  display: flex;
  gap: 50px;
}

.service__meeting__form .nda__selection div {
  display: flex;
}

.service__meeting__form .nda__selection div input {
  display: inline;
}

.service__meeting__form .globalBtn {
  width: 100%;
}

.clients {
  padding-inline: 96px;
}

@media (max-width: 991px) {
  .clients {
    padding-inline: 50px;
  }
}

.clients__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.clients__container__header .title {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

.clients__container__header .desc {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}

.clients__container__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}

.clients__container__body .clientCard {
  width: 32%;
  min-height: 350px;
  max-height: 350px;
  overflow: hidden;
  border-radius: 28px;
  border: 3px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {
  .clients__container__body .clientCard {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .clients__container__body .clientCard {
    width: 100%;
    in-height: 500px;
    max-height: 500px;
  }
}

.clients__container__body .clientCard__img {
  width: 100%;
  max-height: 376px;
  object-fit: contain;
  overflow: hidden;
  border-radius: 25px 25px 0px 0px;
}

.clients__container__body .clientCard__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / .6;
}

.clients__container__body .clientCard__details {
  text-align: center;
  padding: 10px;
}

.clients__container__body .clientCard__details .title {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.clients__container__body .clientCard__details .description {
  display: none;
  color: #000;
  font-family: "Tajawal", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}

.clients__container__body .clientCard:hover .clientCard__img {
  display: none;
}

.clients__container__body .clientCard:hover .clientCard__details .description {
  display: inline-block;
  flex: 1 0 0;
}

.clients__container__body .clientCard__details .link {
  color: rgba(3, 95, 168, 0.5);
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  transition: all .3 ease-in-out;
}

.clients__container__body .clientCard__details .link:hover {
  transform: scale(1.1);
  color: #224DCB;
}

.clients__overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}

.clients__overview__header {
  text-align: center;
}

.clients__overview__header .title {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.clients__overview__header .desc {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

.clients__overview__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
}

.clients__overview__body__box {
  width: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #FFF;
  height: 230px;
}

@media (max-width: 991px) {
  .clients__overview__body__box {
    width: 49%;
  }
}

@media (max-width: 768px) {
  .clients__overview__body__box {
    width: 100%;
  }
}

.clients__overview__body__box .num {
  color: #000;
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
}

.clients__overview__body__box .title {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.contactUS {
  padding-inline: 96px;
}

@media (max-width: 991px) {
  .contactUS {
    padding: 10px;
  }
}

.contactUS__form {
  width: 70%;
  height: max-content;
  margin: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 8px rgba(0, 0, 0, 0.25);
  gap: 24px;
  border: 1px solid rgba(3, 95, 168, 0.2);
}

@media (max-width: 991px) {
  .contactUS__form {
    width: 100%;
  }
}

.contactUS__form__header {
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

.contactUS__form input {
  width: 100%;
}

.contactUS__form textarea {
  width: 100%;
}

.contactUS__form .textarea__after {
  margin-right: auto;
  margin-left: 0;
}

.contactUS__form .globalBtn {
  width: 100%;
}

.aboutUs {
  margin-top: 150px;
}

@media (max-width: 991px) {
  .aboutUs {
    margin-top: 90px;
  }
}

.aboutUs__hero {
  min-height: 700px;
  max-height: 700px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: left;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 50%, rgba(67, 67, 67, 0) 50%);
  background-size: cover;
}

@media (max-width: 991px) {
  .aboutUs__hero {
    padding-inline: 20px;
  }
}

.aboutUs__hero__content {
  width: max-content;
  padding-top: 180px;
  filter: blur(0.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 991px) {
  .aboutUs__hero__content {
    max-width: 100%;
  }
}

.aboutUs__hero__content .title {
  color: white;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 991px) {
  .aboutUs__hero__content .title {
    max-width: 100%;
    font-size: 30px;
  }
}

.aboutUs__hero__content .desc {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  max-width: 30%;
}

@media (max-width: 991px) {
  .aboutUs__hero__content .desc {
    max-width: 80%;
  }
}

.aboutUs__hero__content a {
  color: white;
}

.aboutUs__hero__content a img {
  margin-left: 10px;
}

.aboutUs__overview {
  padding-inline: 96px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .aboutUs__overview {
    padding-inline: 50px;
  }
}

.aboutUs__overview__title {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.aboutUs__overview__par {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

.aboutUs__overview__body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.aboutUs__overview__body__box {
  width: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #FFF;
  height: 230px;
}

@media (max-width: 991px) {
  .aboutUs__overview__body__box {
    width: 49%;
  }
}

@media (max-width: 768px) {
  .aboutUs__overview__body__box {
    width: 100%;
  }
}

.aboutUs__overview__body__box .num {
  color: #000;
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
}

.aboutUs__overview__body__box .title {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.aboutUs__trusted {
  padding-inline: 96px;
  background: #EBEBEB;
  padding-block: 24px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .aboutUs__trusted {
    padding-inline: 50px;
  }
}

.aboutUs__trusted__header {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.aboutUs__trusted__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.aboutUs__trusted__body__img {
  width: calc(100% / 10);
  height: 110px;
}

.aboutUs__trusted__body__img img {
  width: 100%;
  height: 100%;
  filter: brightness(1);
  transition: all 0.5s ease-out;
}

.aboutUs__trusted__body__img img:hover {
  filter: brightness(1);
  transform: scale(1.3);
}

.aboutUs__story {
  padding: 50px 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .aboutUs__story {
    padding: 20px 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.aboutUs__story__body {
  width: 50%;
}

@media (max-width: 991px) {
  .aboutUs__story__body {
    width: 100%;
  }
}

.aboutUs__story__body__title {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
}

.aboutUs__story__body__desc {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.aboutUs__story__video {
  width: 40%;
  height: 278px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  opacity: 2;
  cursor: pointer;
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 991px) {
  .aboutUs__story__video {
    width: 100%;
  }
}

.aboutUs__story__video:hover {
  transform: scale(1.05);
}

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

.aboutUs__story__video__content__logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 50%;
}

.aboutUs__story__video__content__logo img {
  width: 100%;
  height: 100%;
}

.aboutUs__story__video__content__header {
  color: white;
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

.aboutUs__story__video__content__dots {
  width: 24px;
  height: 24;
}

.aboutUs__story__video__content__dots img {
  width: 100%;
  height: 100%;
}

.aboutUs__values {
  padding: 30px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (max-width: 991px) {
  .aboutUs__values {
    padding: 30px 50px;
  }
}

.aboutUs__values__header {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

.aboutUs__values__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.aboutUs__values__body__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #FFF;
  height: 150px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 15px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 991px) {
  .aboutUs__values__body__box {
    width: 49%;
  }
}

@media (max-width: 768px) {
  .aboutUs__values__body__box {
    width: 100%;
  }
}

.aboutUs__values__body__box .upper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.aboutUs__values__body__box .upper h5 {
  margin: 0;
}

.aboutUs__values__body__box p {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  height: 80%;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 20px;
  margin: 0;
  background: white;
  resize: none;
}

.aboutUs__values__body__box::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  left: 0;
  background-color: #224DCB;
}

.aboutUs__vision {
  padding: 30px 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .aboutUs__vision {
    flex-direction: column;
    padding: 30px 50px;
  }
}

.aboutUs__vision__body {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 991px) {
  .aboutUs__vision__body {
    width: 100%;
  }
}

.aboutUs__vision__body__block .header {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

.aboutUs__vision__body__block .desc {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
}

.aboutUs__vision__img {
  width: 40%;
  height: 400px;
}

.aboutUs__vision__img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .aboutUs__vision__img {
    width: 100%;
  }
}

.blog {
  padding-inline: 96px;
}

@media (max-width: 991px) {
  .blog {
    padding-inline: 20px;
  }
}

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

@media (max-width: 991px) {
  .blog__hero {
    flex-direction: column;
  }
}

.blog__hero__body {
  width: 50%;
}

@media (max-width: 991px) {
  .blog__hero__body {
    width: 100%;
  }
}

.blog__hero__body__header {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
}

.blog__hero__body__desc {
  color: black;
  font-family: "Tajawal", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.blog__hero__img {
  width: 40%;
  height: 450px;
}

@media (max-width: 991px) {
  .blog__hero__img {
    width: 100%;
  }
}

.blog__hero__img img {
  width: 100%;
  height: 100%;
}

.blog__content {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

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

.blog__content__search input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 22px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  background: #FFF;
}

.blog__content__search::after {
  content: "\f002";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 30%;
  left: 3%;
}

.blog__content__btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.blog__content__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.blog__content__container__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
  width: 32%;
}

@media (max-width: 991px) {
  .blog__content__container__card {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .blog__content__container__card {
    width: 100%;
  }
}

.blog__content__container__card .card-image {
  width: 100%;
}

.blog__content__container__card .card-image img {
  width: 100%;
  height: 250px;
  border-radius: 15px 15px 0px 0px;
}

.blog__content__container__card .card-details {
  padding: 20px;
}

.blog__content .globalBtn {
  background-color: white;
  border: 1px solid #224DCB;
  color: #224DCB;
  width: max-content;
  opacity: 0.7;
}

.blog__content .globalBtn:hover {
  background-color: #224DCB;
  border: 1px solid #224DCB;
  color: white;
}

.blog__content__pagination {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog__content__pagination .pagBtn {
  border-radius: 22px;
  border: 1px solid #224DCB;
  opacity: 0.7;
  background: #FFF;
  padding: 14px 24px;
  text-align: center;
}

.blog__content__pagination .pagBtn:hover {
  border: 1px solid #FFF;
  background: #224DCB;
  color: white;
}

.blog__content__pagination .active {
  border: 1px solid #FFF;
  background: #224DCB;
  color: white;
}

@media (max-width: 991px) {
  .blogDetails {
    padding-inline: 20px;
  }
}

.blogDetails__section {
  border-radius: 24px;
  margin-inline: 96px;
  background: var(--Secondary, #F9F9F9);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 24px;
}

.blogDetails__section__header h1 {
  color: #224DCB;
  text-align: center;
  font-family: "Tajawal", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
}

.blogDetails__section__header img {
  width: 100%;
  height: 518px;
  border-radius: 16px;
}

.blogDetails__section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.blogDetails__section__content .desc {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Tajawal", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-block: 15px 30px;
}

.blogDetails__section__content .title {
  color: #224DCB;
  font-family: "Tajawal", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
}

.blogDetails__section__content .blogBtn {
  width: max-content;
  border-radius: 22222px;
}

.blogDetails__related {
  margin-top: 50px;
  padding-inline: 96px;
  background: var(--Secondary, #F9F9F9);
  padding: 20px;
}

.blogDetails__related__card {
  width: 100%;
}

.blogDetails__related__card .cardBtn {
  width: 100%;
}

.blogDetails__related .owl-nav {
  display: none !important;
}

.header-carousel .container,
.page-header .container {
  position: relative;
  padding: 45px 0 45px 35px;
  border-left: 15px solid var(--primary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100px;
  height: 15px;
  background: var(--primary);
}

.header-carousel .container::after,
.page-header .container::after {
  top: 100%;
  margin-top: -15px;
}

.header-carousel .owl-carousel-item img {
  max-height: 500px;
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
    font-size: 30px;
    font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #224DCB;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 2px;
  font-size: 22px;
  transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(43, 57, 64, 0.5), rgba(43, 57, 64, 0.5)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

/*** Job Listing ***/
.nav-pills .nav-item .active {
  border-bottom: 2px solid #224DCB;
}

.job-item {
  border: 1px solid transparent;
  border-radius: 2px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: .5s;
}

.job-item:hover {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

.job__search {
  background-color: #224DCB;
}

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


/* testmonials */


.testim {
  width: 100%;
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: #eee;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 5px;
  z-index: 22222222;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: #ea830e;
}


.testim .arrow.left {
  left: 10px;
}

.testim .arrow.right {
  right: 10px;
}

.testim .dots {
  text-align: center;
  margin: auto;
  position: absolute;
  width: 100%;
  bottom: 60px;
  right: -2%;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid black;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #0E5FA8;
  border-color: #0E5FA8;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale .5s ease-in-out forwards;
  -moz-animation: testim-scale .5s ease-in-out forwards;
  -ms-animation: testim-scale .5s ease-in-out forwards;
  -o-animation: testim-scale .5s ease-in-out forwards;
  animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont>div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont>div.inactive {
  opacity: 1;
}


.testim .cont>div.active {
  position: relative;
  opacity: 1;
}


.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: #224DCB;
  font-size: 1em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: black;
  width: 80%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show .5s ease-in-out forwards;
  -moz-animation: testim-show .5s ease-in-out forwards;
  -ms-animation: testim-show .5s ease-in-out forwards;
  -o-animation: testim-show .5s ease-in-out forwards;
  animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in .4s ease-in-out forwards;
  -moz-animation: testim-content-in .4s ease-in-out forwards;
  -ms-animation: testim-content-in .4s ease-in-out forwards;
  -o-animation: testim-content-in .4s ease-in-out forwards;
  animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in .5s ease-in-out forwards;
  -moz-animation: testim-content-in .5s ease-in-out forwards;
  -ms-animation: testim-content-in .5s ease-in-out forwards;
  -o-animation: testim-content-in .5s ease-in-out forwards;
  animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide .5s ease-in-out forwards;
  -moz-animation: testim-hide .5s ease-in-out forwards;
  -ms-animation: testim-hide .5s ease-in-out forwards;
  -o-animation: testim-hide .5s ease-in-out forwards;
  animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out .4s ease-in-out forwards;
  -moz-animation: testim-content-out .4s ease-in-out forwards;
  -ms-animation: testim-content-out .4s ease-in-out forwards;
  -o-animation: testim-content-out .4s ease-in-out forwards;
  animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out .5s ease-in-out forwards;
  -moz-animation: testim-content-out .5s ease-in-out forwards;
  -ms-animation: testim-content-out .5s ease-in-out forwards;
  -o-animation: testim-content-out .5s ease-in-out forwards;
  animation: testim-content-out .5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -webkit-box-shadow: 0px 0px 10px 5px #224DCB;
    box-shadow: 0px 0px 10px 5px #224DCB;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 0px #224DCB;
    box-shadow: 0px 0px 0px 0px #224DCB;
  }
}

@-moz-keyframes testim-scale {
  0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -moz-box-shadow: 0px 0px 10px 5px #224DCB;
    box-shadow: 0px 0px 10px 5px #224DCB;
  }

  100% {
    -moz-box-shadow: 0px 0px 0px 0px #224DCB;
    box-shadow: 0px 0px 0px 0px #224DCB;
  }
}

@-ms-keyframes testim-scale {
  0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -ms-box-shadow: 0px 0px 10px 5px #224DCB;
    box-shadow: 0px 0px 10px 5px #224DCB;
  }

  100% {
    -ms-box-shadow: 0px 0px 0px 0px #224DCB;
    box-shadow: 0px 0px 0px 0px #224DCB;
  }
}

@-o-keyframes testim-scale {
  0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -o-box-shadow: 0px 0px 10px 5px #224DCB;
    box-shadow: 0px 0px 10px 5px #224DCB;
  }

  100% {
    -o-box-shadow: 0px 0px 0px 0px #224DCB;
    box-shadow: 0px 0px 0px 0px #224DCB;
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    box-shadow: 0px 0px 10px 5px #224DCB;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #224DCB;
  }
}

@-webkit-keyframes testim-content-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes testim-content-in {
  from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes testim-content-in {
  from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes testim-content-in {
  from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes testim-content-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-moz-keyframes testim-content-out {
  from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-ms-keyframes testim-content-out {
  from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-o-keyframes testim-content-out {
  from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes testim-show {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes testim-show {
  from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes testim-show {
  from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes testim-show {
  from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes testim-hide {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }

  .testim .cont div p {
    line-height: 25px;
  }

}


.aboutus-container {
  background-color: black;
  padding-inline: 96px;
  height: 700px;
  opacity: .8;

}

@media (max-width:991px) {
  .aboutus-container {
    padding-inline: 20px;
  }
}

/* start ecommerce page */

.ecommerce__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ecommerce__hero__content {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.ecommerce__hero__content__box {
  text-align: center;
  padding: 50px;
  border-radius: 15px;
  max-width: 75%;
}

@media (max-width: 991px) {
  .ecommerce__hero__content__box {
    max-width: 95%;
    padding: 25px;
  }
}

.ecommerce__hero__content__box h1 {
  font-size: 42px;
  margin: 0;
  font-weight: 700;
}

.ecommerce__hero__content__box p {
  font-size: 1.2em;
  color: #555;
  margin: 20px auto;
  text-align: center;
  max-width: 90%;
  align-self: center;
}

.ecommerce__hero__content__box .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .ecommerce__hero__content__box .buttons {
    margin-top: 50px;
  }
}

.ecommerce__hero__content__box .buttons a {
  text-decoration: none;
  color: white;
  padding: 15px 30px;
  border-radius: 2222222px;
  font-size: 1em;
  width: max-content;
  border: none;
}

.ecommerce__hero__content__box .buttons .whatsapp {
  background: #333333;
  color: white;
}

.ecommerce__hero__content__box .buttons .whatsapp span {
  color: #1DA851;
}

.ecommerce__hero__content__box .buttons .whatsapp:hover {
  background: #1DA851;
}

.ecommerce__hero__content__box .buttons .whatsapp:hover span {
  color: white;
}

.ecommerce__hero__content__box .buttons .demo {
  background: #204DCB;
}

.ecommerce__hero__content__box .buttons .demo:hover {
  background: #4B00B0;
}

.ecommerce__hero__content__dashboard {
  width: 60%;
  height: 500px;
}

@media (max-width: 991px) {
  .ecommerce__hero__content__dashboard {
    width: 100%;
  }
}

.ecommerce__hero__content__dashboard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}


.ecommerce__features__header h2 {
  margin: auto;
  text-align: center;
  max-width: 40%;
  font-size: 42px;
}

@media (max-width: 991px) {
  .ecommerce__features__header h2 {
    max-width: 70%;
  }
}

@media (max-width: 991px) {
  .ecommerce__features__header h2 {
    max-width: 90%;
  }
}

.ecommerce__features__tabs {
  margin-top: 50px;
}

.ecommerce__features__tabs .nav {
  row-gap: 24px;
}

.ecommerce__features__tabs .nav .nav-link {
  width: 175px;
  height: 100px;
  background-color: transparent;
  border: 1px solid #D9D7D7;
  color: black;
  font-weight: 500;
  font-size: 18px;
}

.ecommerce__features__tabs .nav .nav-link.active {
  background-color: #204DCB;
  border: none;
  color: white;
}

.ecommerce__features__tabs .tab-content {
  flex: 1 0 0;
}

.ecommerce__features__tabs__content .upper-con {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: max-content;
}

.ecommerce__features__tabs__content .upper-con .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  padding: 20px;
  gap: 20px;
  background-color: #204DCB;
  border-radius: 10px;
}

.ecommerce__features__tabs__content .upper-con .content .header {
  display: flex;
  align-items: center;
  width: 70%;
}

.ecommerce__features__tabs__content .upper-con .content .header h1 {
  font-size: 2.5em;
  padding: 10px 20px;
  color: white;

  margin: 0;
  border-radius: 10px;
}

.ecommerce__features__tabs__content .upper-con .content .header h1 span {
  color: #6366F1;
}

.ecommerce__features__tabs__content .upper-con .content .text-section {
  max-width: 80%;
}

.ecommerce__features__tabs__content .upper-con .content .text-section h2 {
  font-size: 1.8em;
  color: #204DCB;
  margin: 0;
}

.ecommerce__features__tabs__content .upper-con .content .text-section p {
  color: gainsboro;
  line-height: 1.6;
  margin: 10px 0;
}

.ecommerce__features__tabs__content .upper-con .content .text-section .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6366F1;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

.ecommerce__features__tabs__content .upper-con .image-section {
  width: 100%;
  height: 600px;
  margin-block: -15px 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), /* X offset, Y offset, blur radius, color */
  0 6px 20px rgba(0, 0, 0, 0.1); /* Additional shadow for depth */
}

.ecommerce__features__tabs__content .upper-con .image-section img {
  width: 100%;
  height: 100%;
}

.ecommerce__features__tabs__content .down-con {
  position: relative;
}

.ecommerce__features__tabs__content .down-con__topic {
  background-color: #E8CC8B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 16px;
  width: 100%;
}

.ecommerce__features__tabs__content .down-con__topic .first {
  width: 40%;
}

.ecommerce__features__tabs__content .down-con__topic .first h4 {
  font-size: 35px;
  font-weight: 600;
}

.ecommerce__features__tabs__content .down-con__topic .first p {
  font-weight: 400;
  font-size: 14px;
}

.ecommerce__features__tabs__content .down-con__topic .second {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ecommerce__features__tabs__content .down-con__topic .second span {
  color: #6366F1;
  font-size: 2.5rem;
}

.ecommerce__features__tabs__content .down-con__topic .second button {
  background-color: transparent;
  border: 1px solid #333333;
  color: black;
}

.ecommerce__features__tabs__content .down-con__topic .second button:hover {
  background-color: #204DCB;
  color: white;
  border: none;
}

.ecommerce__features__tabs__content .down-con__chart {
  width: 100%;
  margin-top: -20px;
}

.ecommerce__features__tabs__content .down-con__chart img {
  width: 100%;
  object-fit: cover;
}

.ecommerce__plan__header {
  max-width: 60%;
  margin: auto;
  text-align: center;
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .ecommerce__plan__header {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .ecommerce__plan__header {
    max-width: 90%;
  }
}

.ecommerce__plan__header h2 {
  font-size: 42px;
  font-weight: 700;
}

.ecommerce__plan__header p {
  font-size: 18px;
  font-weight: 500;
  color: #333333CC;
}

.ecommerce__plan__cards {
  padding-inline: 96px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 991px) {
  .ecommerce__plan__cards {
    padding-inline: 20px;
  }
}

.ecommerce__plan__cards .card {
  background-color: #f3f5f7;
  border-radius: 12px;
  width: calc((100% / 3) - 30px);
  padding: 32px;
  color: #333333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .ecommerce__plan__cards .card {
    width: 100% ;
  }
}


.ecommerce section {
  padding-top: 70px;
}

.ecommerce__features__tabs a  {
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: 1px solid #D9D7D7 !important;
  color: black;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  margin-block: 5px;
}

.ecommerce__features__tabs a.active {
  background-color: #204DCB;
  border: none;
  color: white;
}

.modal-backdrop {
  z-index: 10 !important;
}

.menu-container {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  background-color: white;
  width: max-content;
}

.free-trial-button {
  background-color: #204DCB;
  color: white;
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

.product-expert-button {
  display: block;
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  background-color: #1DA851;
  color:white;
}