@font-face {
  font-family: "Almarai";
  src: url("../fonts/Almarai/Almarai-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Almarai";
  src: url("../fonts/Almarai/Almarai-Light.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Almarai";
  src: url("../fonts/Almarai/Almarai-ExtraBold.ttf");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "Almarai", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #ccc;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

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

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  bottom: 0px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--light-color);
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale(1.4);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #0d50e5;
  --secondary-color: #141414;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --primary-filter: invert(24%) sepia(80%) saturate(2336%) hue-rotate(210deg)
    brightness(98%) contrast(101%);
  --secondary-filter: invert(0%) sepia(2%) saturate(6161%) hue-rotate(320deg)
    brightness(120%) contrast(84%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg)
    brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg)
    brightness(87%) contrast(97%);
}

@media (max-width: 992px) {
  .container {
    width: 90%;
    margin: 0px auto;
  }
}

.custom-btn {
  width: 185px;
  height: 50px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  transition: all 0.3s linear;
}
.custom-btn span {
  font-size: 16px;
  font-weight: 900;
  color: var(--light-color);
}
.custom-btn.primary-btn {
  background-color: var(--primary-color);
}
.custom-btn.primary-btn:hover {
  background-color: var(--light-color);
}
.custom-btn.primary-btn:hover span {
  color: var(--primary-color);
}
.custom-btn.primary-border {
  background-color: var(--light-color);
}
.custom-btn.primary-border span {
  color: var(--primary-color);
}
.custom-btn.primary-border:hover {
  background-color: var(--primary-color);
}
.custom-btn.primary-border:hover span {
  color: var(--light-color);
}
.custom-btn:hover {
  box-shadow: 0px 2px 25px rgba(13, 80, 229, 0.1);
  transform: scale(0.99);
}

@media (max-width: 992px) {
  .padding-shape {
    padding: 0px 5px;
  }
}

.heading {
  width: 60%;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 992px) {
  .heading {
    margin-bottom: 30px;
    gap: 15px;
    width: 100%;
  }
}
.heading .sub-desc {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 900;
}
.heading h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .heading h1 {
    font-size: 18px;
  }
}
.heading .desc {
  font-size: 25px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .heading .desc {
    font-size: 15px;
  }
}

.general-section {
  width: 100%;
  padding: 120px 0px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .general-section {
    padding: 40px 0px;
  }
}
.general-section.patterns::after, .general-section.patterns::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: url("../images/icons/lines.svg") top left/contain no-repeat;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 992px) {
  .general-section.patterns::after, .general-section.patterns::before {
    width: 100px;
    height: 100px;
    opacity: 0.5;
  }
}
.general-section.patterns::after {
  top: 0;
  left: 0;
}
.general-section.patterns::before {
  transform: scaleX(-1);
  bottom: 0;
  right: 0;
}

.navbar {
  width: 100%;
  padding: 24px 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s linear;
}
.navbar.scrolled {
  padding: 10px 0px;
  background-color: var(--secondary-color);
  box-shadow: 0px 2px 25px rgba(13, 80, 229, 0.1);
}
@media (max-width: 992px) {
  .navbar.scrolled .navbar-nav {
    top: 60px !important;
  }
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  width: 30px;
  height: 30px;
  position: relative;
  transition: 0.1s;
  cursor: pointer;
  display: inline-block;
}
@media (min-width: 992px) {
  .navbar .contain .hamburger {
    display: none;
  }
}
.navbar .contain .hamburger span {
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  display: block;
  border-radius: 50%;
  position: absolute;
}
.navbar .contain .hamburger span:nth-child(1) {
  left: 0;
  top: 0;
}
.navbar .contain .hamburger span:nth-child(2) {
  left: 12px;
  top: 0;
}
.navbar .contain .hamburger span:nth-child(3) {
  right: 0;
  top: 0;
}
.navbar .contain .hamburger span:nth-child(4) {
  left: 0;
  top: 12px;
}
.navbar .contain .hamburger span:nth-child(5) {
  left: 12px;
  top: 12px;
}
.navbar .contain .hamburger span:nth-child(6) {
  right: 0px;
  top: 12px;
}
.navbar .contain .hamburger span:nth-child(7) {
  left: 0px;
  bottom: 0px;
}
.navbar .contain .hamburger span:nth-child(8) {
  position: absolute;
  left: 12px;
  bottom: 0px;
}
.navbar .contain .hamburger span:nth-child(9) {
  right: 0px;
  bottom: 0px;
}
.navbar .contain .hamburger span:hover {
  transform: scale(1.2);
  transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.navbar .contain .hamburger.active {
  transform: rotate(180deg);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.navbar .contain .hamburger.active span {
  border-radius: 50%;
  transition-delay: 200ms;
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.navbar .contain .hamburger.active span:nth-child(2) {
  left: 6px;
  top: 6px;
}
.navbar .contain .hamburger.active span:nth-child(4) {
  left: 6px;
  top: 18px;
}
.navbar .contain .hamburger.active span:nth-child(6) {
  right: 6px;
  top: 6px;
}
.navbar .contain .hamburger.active span:nth-child(8) {
  left: 18px;
  bottom: 6px;
}
.navbar .contain .brand-name img {
  width: 200px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 992px) {
  .navbar .contain .brand-name img {
    width: 183px;
    -o-object-position: right;
       object-position: right;
  }
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav {
    width: 100%;
    height: 100vh;
    background-color: var(--secondary-color);
    padding: 20px 15px;
    flex-direction: column;
    gap: 0px;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    position: absolute;
    top: 100px;
    left: -100%;
    transition: all 0.3s linear;
  }
  .navbar .contain .navbar-nav.active-nav {
    left: 0;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInSlide 0.5s ease-out forwards;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(4) {
    animation-delay: 0.4s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(5) {
    animation-delay: 0.5s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(6) {
    animation-delay: 0.6s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(7) {
    animation-delay: 0.7s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(8) {
    animation-delay: 0.8s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(9) {
    animation-delay: 0.9s;
  }
  .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(10) {
    animation-delay: 1s;
  }
}
.navbar .contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item {
    padding: 10px 0px;
    border-bottom: 1px solid rgba(13, 80, 229, 0.08);
  }
  .navbar .contain .navbar-nav .nav-item:last-child {
    border-bottom: 0px;
  }
  .navbar .contain .navbar-nav .nav-item:first-child {
    padding-top: 0px;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--light-color);
  padding: 0px;
  margin: 0px;
}
.navbar .contain .navbar-nav .nav-item .nav-link.active, .navbar .contain .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color);
}
@media (max-width: 992px) {
  .navbar .contain .custom-btn {
    width: 100px;
    height: 40px;
  }
  .navbar .contain .custom-btn span {
    font-size: 12px;
  }
}

header {
  width: 100%;
  padding: 236px 0px 130px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 0px 0px 40px 40px;
}
@media (max-width: 992px) {
  header {
    padding: 150px 0px 50px;
    border-radius: 0px 0px 20px 20px;
  }
}
header .intro-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
header .contain {
  width: 100%;
}
@media (max-width: 992px) {
  header .contain {
    text-align: center;
  }
}
header .contain h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  header .contain h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
header .contain .flex-data {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 120px;
}
@media (max-width: 992px) {
  header .contain .flex-data {
    gap: 20px;
    flex-wrap: wrap;
  }
}
header .contain .flex-data p {
  width: calc(100% - 160px);
  color: var(--light-color);
  font-size: 28px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  header .contain .flex-data p {
    width: 100%;
    font-size: 15px;
  }
}
header .contain .flex-data .see-more {
  width: 160px;
  height: 160px;
  background: url("../images/icons/button-shape.svg") center/contain no-repeat;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding-inline-start: 15px;
  padding-bottom: 20px;
  gap: 10px;
}
@media (max-width: 992px) {
  header .contain .flex-data .see-more {
    width: 100px;
    height: 100px;
    gap: 4px;
  }
}
header .contain .flex-data .see-more img {
  width: 20px;
  height: 20px;
  filter: var(--light-filter);
  transition: transform 0.3s linear;
}
header .contain .flex-data .see-more span {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
}
@media (max-width: 992px) {
  header .contain .flex-data .see-more span {
    font-size: 10px;
  }
}
header .contain .flex-data .see-more:hover img {
  transform: rotate(45deg);
}
header .contain .flex-data .see-more:hover span {
  animation: storm 0.3s linear;
}

.about-us .image-contain {
  width: 100%;
  height: 400px;
  animation: translateY 2s ease-in-out infinite alternate both;
}
@media (max-width: 992px) {
  .about-us .image-contain {
    height: 250px;
  }
}
.about-us .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .about-us .image-contain img {
    -o-object-position: center;
       object-position: center;
  }
}
.about-us .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 992px) {
  .about-us .contain {
    gap: 25px;
    text-align: center;
  }
}
.about-us .contain .sub-desc {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 900;
}
.about-us .contain h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .about-us .contain h1 {
    font-size: 16px;
  }
}
.about-us .contain .desc {
  font-size: 25px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 0px !important;
}
@media (max-width: 992px) {
  .about-us .contain .desc {
    font-size: 12px;
  }
}
.about-us .contain .icons {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .about-us .contain .icons {
    justify-content: center;
  }
}
.about-us .contain .icons li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.about-us .contain .icons li img:hover {
  transform: scale(0.95);
  box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
}
.about-us .contain .button-contain {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.about-us .contain .button-contain.flex-start {
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .about-us .contain .button-contain {
    justify-content: center;
  }
}
.about-us .contain .button-contain .custom-btn {
  width: 120px;
}
@media (max-width: 992px) {
  .about-us .contain .button-contain .custom-btn {
    width: calc(50% - 10px);
  }
}
.about-us .contain .list {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 992px) {
  .about-us .contain .list {
    justify-content: center;
    gap: 10px;
  }
}
.about-us .contain .list li {
  padding-inline-start: 15px;
  border-inline-start: 1px solid #E7EDED;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 12px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .about-us .contain .list li {
    padding-inline-end: 10px;
    gap: 10px;
  }
}
.about-us .contain .list li img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .about-us .contain .list li img {
    width: 30px;
    height: 30px;
  }
}
.about-us .contain .list li .data {
  text-align: start;
}
.about-us .contain .list li .data p {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 900;
  margin-top: 12px;
}
@media (max-width: 992px) {
  .about-us .contain .list li .data p {
    font-size: 12px;
    margin-top: 2px;
  }
}
.about-us .contain .list li .data span {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .about-us .contain .list li .data span {
    font-size: 10px;
  }
}
.about-us .contain .list li:hover {
  transform: translateY(-10px);
}

.partners {
  width: 100%;
  padding: 30px 0px;
  background-color: #FBFBFB;
  position: relative;
  z-index: 9;
}
.partners img {
  width: 100%;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.benfits .box {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  position: relative;
  height: 100%;
  z-index: 9;
  background-color: #FDFFFF;
  box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
  transition: all 0.3s linear;
}
.benfits .box img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .benfits .box img {
    height: 180px;
  }
}
.benfits .box h2 {
  color: var(--secondary-color);
  margin: 18px 0px;
  font-weight: 900;
  font-size: 24px;
}
@media (max-width: 992px) {
  .benfits .box h2 {
    font-size: 15px;
    margin: 10px 0px;
  }
}
.benfits .box p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.benfits .box:hover {
  transform: translateY(-10px);
}
.benfits .box:hover h2 {
  color: var(--primary-color);
}

.testimonials {
  display: none;
}
.testimonials .heading {
  margin: 0px auto;
}
.testimonials .heading h1 {
  text-align: center;
  color: var(--light-color);
}
.testimonials .heading .col-lg-4.col-4 {
  padding: 0px 10px !important;
}
@media (max-width: 992px) {
  .testimonials .heading .col-lg-4.col-4 {
    padding: 0px 5px !important;
  }
}
.testimonials .heading .box {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s linear;
  background-color: rgba(253, 255, 255, 0.05);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 992px) {
  .testimonials .heading .box {
    padding: 10px 5px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    align-items: center;
  }
}
.testimonials .heading .box img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.testimonials .heading .box .data-contain {
  display: block;
}
@media (min-width: 992px) {
  .testimonials .heading .box .data-contain {
    width: calc(100% - 48px);
  }
}
.testimonials .heading .box p {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0px !important;
}
@media (max-width: 992px) {
  .testimonials .heading .box p {
    font-size: 15px;
  }
}
.testimonials .heading .box span {
  font-size: 14px;
  font-weight: 700;
  color: var(--light-color);
}
@media (max-width: 992px) {
  .testimonials .heading .box span {
    font-size: 9px;
  }
}
.testimonials .heading .box:hover {
  transform: translateY(-10px);
}
.testimonials::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/intro/intro.webp") center/cover no-repeat;
  transform: scaleX(-1);
  top: 0;
  left: 0;
  z-index: -1;
}
.testimonials .client-box {
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 9;
  background-color: rgba(20, 20, 20, 0.3);
  border-radius: 20px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .testimonials .client-box {
    padding: 20px 10px;
  }
}
.testimonials .client-box img {
  margin: 0px auto 20px;
  display: block;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .testimonials .client-box img {
    margin: 0px auto 15px;
  }
}
.testimonials .client-box img.user-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .testimonials .client-box img.user-img {
    width: 70px;
    height: 70px;
  }
}
.testimonials .client-box img.star {
  width: 136px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials .client-box h2 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .testimonials .client-box h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.testimonials .client-box p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.testimonials .client-box:hover {
  transform: translateY(-10px);
}
.testimonials .swiper-wrapper {
  padding: 20px 0px 30px;
}

.services .box {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  transition: all 0.3s linear;
  text-align: center;
}
@media (max-width: 992px) {
  .services .box {
    height: 150px;
    padding: 10px;
    border-radius: 10px;
  }
}
.services .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.3);
  top: 0;
  left: 0;
  z-index: -1;
}
.services .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.services .box p {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 900;
  margin: 0px;
}
@media (max-width: 992px) {
  .services .box p {
    font-size: 12px;
  }
}
.services .box:hover {
  transform: translateY(-10px);
}
.services .button-contain {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.faq {
  background-color: var(--secondary-color);
}
.faq .heading {
  width: 100%;
  gap: 20px;
  margin: 0px;
}
.faq .heading h1, .faq .heading p {
  color: var(--light-color);
}
.faq .heading .custom-btn {
  background-color: transparent;
  border-color: var(--light-color);
}
.faq .heading .custom-btn span {
  color: var(--light-color);
}
.faq .heading .custom-btn:hover {
  background-color: var(--light-color);
}
.faq .heading .custom-btn:hover span {
  color: var(--dark-color);
}
.faq .card {
  width: 100%;
  margin-bottom: 6px;
  border: 0px;
  background-color: transparent;
  border-bottom: 1px solid rgba(253, 255, 255, 0.05);
  border-radius: 0px;
}
.faq .card .card-header {
  padding: 0px;
  margin: 0px;
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
}
.faq .card .card-header .btn {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  padding: 10px 15px;
  background-color: transparent;
  font-size: 20px;
  font-weight: 700;
  color: var(--light-color);
  border-radius: 100px;
  border: 0px;
  position: relative;
  z-index: 9;
  text-align: start;
}
@media (max-width: 992px) {
  .faq .card .card-header .btn {
    font-size: 14px;
  }
}
.faq .card .card-header .btn::after {
  content: "+";
  position: absolute;
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--light-color);
  top: calc(50% - 12px);
  left: 10px;
}
html[dir=ltr] .faq .card .card-header .btn::after {
  left: unset;
  right: 10px;
}
.faq .card .card-header .btn[aria-expanded=true]::after {
  content: "-";
}
.faq .card .card-body {
  border-radius: 0px;
  padding: 10px 15px;
  border: 0px !important;
}
.faq .card .card-body p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .faq .card .card-body p {
    font-size: 13px;
  }
}

footer {
  padding-bottom: 10px !important;
}
footer .contain .brand-name img {
  width: 200px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
footer .contain p {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0px;
}
@media (max-width: 992px) {
  footer .contain p {
    margin: 15px 0px;
  }
}
footer .contain h2 {
  color: var(--gray-color);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 900;
}
@media (max-width: 992px) {
  footer .contain h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
footer .contain .links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
footer .contain .links li a {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
footer .contain .links li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain .links li a span {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 700;
}
footer .contain .links li a:hover span {
  color: var(--primary-color);
}
footer .contain .flex-data {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  align-content: flex-start;
}
footer .contain .flex-data .links {
  width: 50%;
  height: 100%;
  padding-inline-start: 10px;
  border-inline-start: 1px solid #E7EDED;
}
footer .copyrights {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #E7EDED;
  margin-top: 20px;
}
@media (max-width: 992px) {
  footer .copyrights {
    gap: 10px;
  }
}
footer .copyrights a {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: underline !important;
}
@media (max-width: 992px) {
  footer .copyrights a {
    font-size: 10px;
  }
}
footer .copyrights p {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 700;
  margin: 0px;
}
@media (max-width: 992px) {
  footer .copyrights p {
    font-size: 12px;
  }
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */