/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  --main-color: #001437;
  --second-color: #4df2cd;
  --third-color: #4af4cd;
  --main-font: "Tajawal", sans-serif;
  --main-font-color: #090637;
  --section-padding: 60px;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
li {
  list-style: none;
}
a,
img,
span,
button {
  display: block;
}
a {
  color: inherit;
}
a,
a:visited,
a:hover,
a:focus {
  text-decoration: none;
  border: none;
  outline: none;
}
img {
  height: auto;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
address {
  font-style: normal;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  direction: rtl;
  font-size: 1.6rem;
  font-family: var(--main-font);
  font-weight: 400;
  overflow-x: hidden !important;
}
html[lang="en"] body {
  direction: ltr;
}
main {
  overflow: hidden !important;
}
body.active {
  overflow: hidden !important;
}
:focus-visible {
  outline-offset: 4px;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

div.preload-images {
  background: url("/assets/images/hero-1.webp") no-repeat -9999px -9999px;
  background: url("/assets/images/hero-2.webp") no-repeat -9999px -9999px;
}
.container {
  padding-inline: 15px;
}
.h-100 {
  height: 100%;
}
.w-100 {
  width: 100%;
}
.color-white {
  color: white;
}
.flex {
  display: flex !important;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-space-between {
  justify-content: space-between;
}
.justify-flex-end {
  justify-content: flex-end;
}
.flex-column {
  flex-direction: column;
}

.shape {
  display: none;
}
.section {
  padding-block: var(--section-padding);
}

.has-before {
  position: relative;
  z-index: 1;
}
.has-before::before {
  content: "";
  position: absolute;
}
.has-after {
  position: relative;
  z-index: 1;
}
.has-after::after {
  content: "";
  position: absolute;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-reveal] {
  transform: translateY(50px);
  opacity: 0;
  transition: 0.5s all ease;
  transition-delay: var(--delay);
}
[data-reveal="left"] {
  transform: translate(-50px, 0);
}
[data-reveal="right"] {
  transform: translate(50px, 0);
}
[data-reveal].revealed {
  transform: translate(0, 0);
  opacity: 1;
}

/* Loading page */

.loading-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #001437;
  z-index: 9999;
  transform-origin: bottom;
  transition: 0.5s cubic-bezier(0.51, 0.03, 0.64, 0.28);
  transition-delay: 0.5s;
}
.loading-page.loaded {
  transform: scaleY(0);
  pointer-events: none;
}
.loading-page > * {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  transition: opacity 1s ease;
}
.loading-page.loaded > * {
  opacity: 0;
}

svg .svg-elem-1 {
  stroke-dashoffset: 1687.4884033203125px;
  stroke-dasharray: 1687.4884033203125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
}

svg .svg-elem-2 {
  stroke-dashoffset: 1257.1669921875px;
  stroke-dasharray: 1257.1669921875px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.12s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

/* End loading page */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding-block: 30px;
  background-color: #fff;
  z-index: 555;
  box-shadow: 0px 4px 33px 0px #00000017;
}
header img {
  width: 90px;
}

.menu-list {
  position: relative;
  margin-left: auto;
  gap: 5rem;
}
html[lang="en"] .menu-list {
  margin-left: unset;
  margin-right: auto;
  gap: 2rem;
}
.logo {
  margin-left: auto;
}
html[lang="en"] .logo {
  margin-left: unset;
  margin-right: auto;
}
.menu-list button {
  font-size: 21px;
  color: var(--main-font-color);
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 4px;
  transition: 0.3s all ease-in-out;
}
html[lang="en"] .menu-list button {
  font-size: 18px;
  font-weight: 700;
}
.menu-list button:hover,
.menu-list button.active {
  background-color: var(--third-color);
}

/*menu open close*/
.menu-logo img {
  width: 90px;
  margin-bottom: 20px;
}
.menu-footer {
  position: absolute;
  bottom: 30px;
  width: 100%;
  justify-content: space-evenly;
}
.menu-footer img {
  width: 25px;
}
label {
  direction: ltr;
  display: flex;
  flex-direction: column;
  width: 45px;
  cursor: pointer;
  z-index: 6666;
}
html[lang="en"] label {
  transform: rotate(180deg);
}

label span {
  background: var(--main-font-color);
  border-radius: 10px;
  height: 4px;
  margin: 7px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

span:nth-of-type(1) {
  width: 50%;
}

span:nth-of-type(2) {
  width: 100%;
}

span:nth-of-type(3) {
  width: 75%;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(8px, 4px);
}

input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(20px, -11px) rotatez(45deg);
}

/*Hero*/

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  height: calc(100svh - 100px);
  margin-top: 100px;
  background-image: url(/assets/images/hero-bg.webp);
  background-size: cover;
}
.hero .container {
  max-width: unset !important;
  justify-content: space-evenly;
  margin-top: 50px;
}
.texture {
  position: absolute;
  width: fit-content;
  height: auto;
  /* z-index: -1; */
}
.hero .texture-before {
  left: 0;
  top: 0;
}
.hero .texture-after {
  right: -6rem;
  bottom: 0;
}
.hero-description {
  display: grid;
  gap: 1.8rem;
}

.hero-heading {
  font-size: 6.1rem;
  z-index: 1;
  font-weight: 700;
}

.hero-text {
  font-size: 3.3rem;
  font-weight: 500;
  z-index: 1;
}

.hero-btn {
  width: 275px;
  height: 62px;
  background-color: var(--third-color);
  font-size: 2.3rem;
  color: var(--main-font-color);
  font-weight: 700;
  border-radius: 4px;
  margin-top: 15px;
  z-index: 1;
}
.hero-image-container {
  width: 66rem;
  height: 53.22rem;
}

.hero-image-container::before {
  top: 0;
  right: 0;
  width: 48.8rem;
  height: 38.125rem;
  border-top: 6px solid #fff;
  border-right: 6px solid #fff;
  border-top-right-radius: 4px;
  transform: translate(0px, 0px);
  animation: hero-border-1 8s infinite;
  animation-delay: 2.3s;
}

.hero-image-container::after {
  bottom: 0;
  left: 0;
  width: 48.8rem;
  height: 38.125rem;
  border-bottom: 6px solid #fff;
  border-left: 6px solid #fff;
  border-bottom-left-radius: 4px;
  transform: translate(0px, 0px);
  animation: hero-border-2 8s infinite;
  animation-delay: 2.3s;
}

.hero-image {
  width: 57.6rem;
  height: 44.3rem;
  border-radius: 1px;
  background-image: url(/assets/images/hero-2.webp);
  background-size: cover;
  animation: hero-image 8s infinite;
  animation-delay: 2.3s;
}

@keyframes hero-border-1 {
  0%,
  30% {
    border-top: 6px solid #fff;
    border-right: 6px solid #fff;
    transform: translate(0px, 0px);
  }
  50%,
  80% {
    transform: translate(-15px, 15px);
    border-top: 6px solid var(--third-color);
    border-right: 6px solid var(--third-color);
  }
}
@keyframes hero-border-2 {
  0%,
  30% {
    border-bottom: 6px solid #fff;
    border-left: 6px solid #fff;
    transform: translate(0px, 0px);
  }
  50%,
  80% {
    transform: translate(15px, -15px);
    border-bottom: 6px solid var(--third-color);
    border-left: 6px solid var(--third-color);
  }
}
@keyframes hero-image {
  0%,
  30% {
    background-image: url(/assets/images/hero-2.webp);
  }
  50%,
  80% {
    background-image: url(/assets/images/hero-1.webp);
  }
}

/*About*/
.about {
  position: relative;
  overflow: hidden !important;
}
.about .container {
  display: grid;
  gap: 0.8rem;
}
.about-part {
  gap: 10rem;
}
html[lang="en"] .about-part {
  flex-direction: row-reverse;
}
.about-part:not(:last-child) {
  margin-bottom: 10rem;
}

.about-image-container {
  position: relative;
  width: 67.6rem;
  height: 56.5rem;
  display: flex;
  align-items: center;
}
html[lang="en"] .about-image-container {
  direction: rtl;
}
.about-image-container img {
  height: 48.9rem;
  width: 63.6rem;
}
.about-image-container.bottom-right::after {
  bottom: 0;
  right: 0;
  width: 54.8rem;
  height: 42.3rem;
  border-bottom: 6px solid var(--main-font-color);
  border-right: 6px solid var(--main-font-color);
  border-bottom-right-radius: 4px;
  transform: translate(0px, 0px);
  animation: about-bottom-right 8s infinite;
}
.about-image-container.top-left::after {
  top: 0;
  left: 0;
  width: 54.8rem;
  height: 42.3rem;
  border-top: 6px solid var(--main-font-color);
  border-left: 6px solid var(--main-font-color);
  border-top-left-radius: 4px;
  transform: translate(0px, 0px);
  animation: about-top-left 8s infinite;
}
.about-image-container.top-right::after {
  top: 0;
  right: 0;
  width: 54.8rem;
  height: 42.3rem;
  border-top: 6px solid var(--main-font-color);
  border-right: 6px solid var(--main-font-color);
  border-top-right-radius: 4px;
  transform: translate(0px, 0px);
}
.about-heading,
.about-text {
  color: var(--main-font-color);
}
.about-heading {
  font-size: 5.4rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
.about-text {
  font-size: 2.85rem;
  font-weight: 500;
}

.about .texture-before {
  top: 35rem;
  right: 0;
  transform: rotate(4deg);
  z-index: -1;
}
.about .texture-after {
  left: 5rem;
  top: 35rem;
  transform: rotate(-6deg);
  z-index: -1;
}

@keyframes about-bottom-right {
  0%,
  30% {
    transform: translate(0px, 0px);
  }
  50%,
  80% {
    transform: translate(-10px, -10px);
  }
}
@keyframes about-top-left {
  0%,
  30% {
    transform: translate(0px, 0px);
  }
  50%,
  80% {
    transform: translate(10px, 10px);
  }
}

/*Products*/

.products-container {
  direction: ltr;
}
.products-container h4,
.products-container p {
  direction: rtl;
  color: var(--main-font-color);
}

/*carousel*/
.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #ececec;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
#customers-testimonials .shadow-effect h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2rem;
}
#customers-testimonials .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 500;
}
html[lang="en"] #customers-testimonials .shadow-effect p {
  direction: ltr;
}
.testimonial-name {
  direction: rtl;
  margin: -17px auto 0;
  display: flex;
  width: fit-content;
  align-items: center;
  background: var(--third-color);
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: var(--main-font-color);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}
.testimonial-name a {
  font-weight: 500;
  transition: 0.3s all ease-in-out;
}
.testimonial-name a:hover {
  color: #000000;
}
#customers-testimonials .item {
  text-align: center;
  padding-inline: 10px;
  margin-bottom: 30px;
  opacity: 0.2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 200px;
  margin: 0 auto 17px;
  border-radius: 6px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--main-color);
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: var(--main-color);
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

/*End carousel*/

/*Services*/
.services {
  position: relative;
}
.services .texture {
  top: -30rem;
  right: 0;
  z-index: -1;
}
.services-heading,
.products-heading {
  margin-bottom: 10rem;
  text-align: center;
}
.services-heading h2,
.products-heading h2 {
  font-size: 5.4rem;
  color: var(--main-font-color);
  font-weight: 700;
}
.services-heading h3,
.products-heading h3 {
  font-size: 3.1rem;
  color: var(--main-font-color);
  font-weight: 500;
}
.service-container {
  justify-content: space-evenly;
}
.service {
  position: relative;
  width: 200px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border: 1px solid rgba(50, 40, 192, 0.12);
  border-radius: 4px;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  overflow: hidden;
}
.service * {
  transition: 0.8s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 0;
  z-index: -1;
  border-radius: 20px 20px 0px 0px;
  transition: 0.8s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-container > div:nth-child(odd)::after {
  background-color: var(--third-color);
}
.service-container > div:nth-child(even)::after {
  background-color: var(--main-font-color);
}

.service:hover::after {
  border-radius: 0px 0px 0px 0px;
  height: 100%;
  bottom: 0px;
}
.service:not(:hover)::after {
  height: 0;
}
.service-container > div:nth-child(odd) svg circle:nth-child(2),
.service-container > div:nth-child(even) svg circle:nth-child(2) {
  stroke-opacity: 0;
}
.service-container > div:nth-child(odd):hover svg circle:nth-child(2) {
  fill-opacity: 0;
  stroke-opacity: 1;
}
.service-container > div:nth-child(even):hover svg circle:nth-child(2) {
  fill-opacity: 0;
  stroke-opacity: 1;
}
.service-container > div:nth-child(even):hover svg circle:nth-child(1) {
  stroke: #fff;
}
.service-container > div:nth-child(even):hover p {
  color: #fff;
}

.service-image {
  display: flex;
  justify-content: center;
}
.services-end {
  margin-top: 5rem;
}
.services-end p {
  font-size: 2.7rem;
  font-weight: 500;
  text-align: center;
}

/*Footer*/

.footer {
  position: relative;
  height: 450px;
  background-color: #061542;
  margin: 5rem 4rem 4rem;
  border-radius: 4px;
  color: #fff;
  overflow: hidden;
}
.footer-logo {
  width: 100px;
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10rem;
}
.footer .container:before {
  display: none !important;
}
.footer-text {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 2rem;
}
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-heading {
  font-size: 3.4rem;
  font-weight: 700;
}
.footer-contact .email,
.footer-contact .address {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.social-icons {
  gap: 3rem;
}
.social-icons img {
  width: 34px;
}

.footer .texture-before {
  top: -2rem;
  right: -8rem;
  opacity: 0.7;
}
.footer .texture-after {
  bottom: -6.5rem;
  left: -8rem;
}

@media (min-width: 575px) {
  :root {
    --section-padding: 80px;
  }

  /* re used */
  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }
  :is(.header) .container {
    max-width: unset;
  }
}

@media (min-width: 769px) {
  .container {
    max-width: 720px;
  }
  header label,
  .menu-logo,
  .menu-footer {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  html[lang="en"] .hero-text {
    width: 500px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/*Responsive*/

@media (max-width: 1400px) {
  .hero-image {
    width: 41.6rem;
    height: 32rem;
  }
  .hero-heading,
  .about-heading {
    font-size: 5.1rem;
  }

  .hero-text,
  .about-text {
    font-size: 2.3rem;
  }
  .hero-image-container {
    width: 50rem;
    height: 40.32rem;
  }
  .hero-image-container::before,
  .hero-image-container::after {
    width: 36.6rem;
    height: 28.59rem;
  }
  .about-image-container {
    width: 45.6rem;
    height: 40rem;
  }
  .about-image-container img {
    width: 41.6rem;
    height: 32rem;
  }
  .about-image-container::after {
    width: 36.6rem !important;
    height: 28.59rem !important;
  }
  .about .texture-before {
    top: 3rem;
    opacity: 0.6;
  }
  .about .texture-after {
    top: 15rem;
  }
}

@media (max-width: 1200px) {
  .hero-heading,
  .about-heading,
  .products-heading h2 {
    font-size: 4.1rem;
  }
  .hero-text,
  .about-text {
    font-size: 2.1rem;
  }
  html[lang="en"] .hero-heading {
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .about .texture-before {
    top: 3rem;
    opacity: 0.6;
  }
  .about .texture-after {
    top: 15rem;
  }
  .service-container {
    gap: 1rem;
  }
  .services .texture {
    top: -12rem;
    right: -4px;
  }
  .services .texture img {
    width: 222px;
  }

  .footer .container {
    column-gap: 5rem;
  }
  .footer-logo {
    width: 90px;
  }
  .footer-text {
    font-size: 1.8rem;
  }
  .footer-heading {
    font-size: 2.5rem;
  }
  .footer-contact .email,
  .footer-contact .address {
    font-size: 1.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 992px) {
  .menu-list {
    margin-left: unset;
    gap: 2rem;
  }
  .menu-list button {
    font-size: 19px;
  }
  html[lang="en"] .menu-list {
    gap: 1rem;
  }
  html[lang="en"] .menu-list button {
    font-size: 17px;
  }
  html[lang="en"] .logo img {
    width: 80px;
  }
  .hero {
    height: unset;
    min-height: calc(100vh - 100px);
    min-height: calc(100svh - 100px);
    max-height: fit-content;
  }
  .hero .container {
    flex-direction: column;
    margin-top: 20px;
  }
  .hero-image {
    width: 35.1rem;
    height: 27rem;
  }
  .hero-description {
    place-items: center;
    gap: 0.8rem;
    margin-bottom: 40px;
  }
  .hero-heading,
  .about-heading,
  .products-heading h2 {
    font-size: 4.8rem;
    text-align: center;
  }
  .hero-text,
  .about-text {
    font-size: 2.3rem;
    text-align: center;
  }
  .hero-image-container {
    width: 41.3rem;
    height: 33.32rem;
  }
  .hero-image-container::after,
  .hero-image-container::before {
    width: 29.6rem;
    height: 23.125rem;
  }
  .hero-btn {
    width: 200px;
    height: 55px;
    font-size: 2rem;
  }
  .about-part,
  html[lang="en"] .about-part {
    flex-direction: column;
    align-items: center;
  }

  html[lang="en"] .about-part:nth-child(2),
  .about-part:nth-child(2) {
    flex-direction: column-reverse;
  }
  .about-image-container {
    width: 38rem;
    height: 33.32rem;
  }
  .about-image-container img {
    width: 35rem;
    height: 27.32rem;
  }
  .about-image-container::after {
    width: 29.6rem !important;
    height: 23.125rem !important;
  }
  .service-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
    place-items: center;
  }
  .service {
    width: 90%;
  }
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-contact,
  .footer-social {
    gap: 1.5rem;
  }
  .footer-logo {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .loading-page svg {
    width: 300px !important;
    height: 437px !important;
  }
  header {
    height: 80px;
  }
  header img,
  html[lang="en"] .logo img {
    width: 60px;
  }
  header .container {
    max-width: unset;
  }
  .logo {
    margin-right: 10px;
  }
  .menu-list {
    flex-direction: column;
    position: fixed;
    top: 0;
    width: 80%;
    height: 100%;
    left: -100%;
    background-color: #fff;
    box-shadow: 0px 4px 33px 0px #00000017;
    justify-content: center;
    border-radius: 1rem 0 0 1rem;
    -webkit-border-radius: 1rem;
    transition: 0.4s ease-in-out;
  }
  html[lang="en"] .menu-list {
    left: unset;
    right: -100%;
    gap: 2rem;
  }
  html[lang="en"] .menu-list button {
    font-size: 21px;
  }
  .menu-list button {
    font-weight: 700;
    font-size: 21px;
  }
  .menu-list.active {
    left: 0;
  }
  html[lang="en"] .menu-list.active {
    right: 0;
  }
  .hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
    max-height: fit-content;
  }
  .hero-heading {
    font-size: calc(2rem + 3.5vw);
  }
  .hero-text {
    font-size: calc(1.275rem + 1.5vw);
  }
  .hero-image {
    width: 24rem;
    height: 18.46rem;
  }
  .hero-image-container {
    width: 30rem;
    height: 24.2rem;
  }
  .hero-image-container::after,
  .hero-image-container::before {
    width: 20.6rem;
    height: 15.625rem;
  }
  .about .texture-after {
    transform: rotate(-20deg);
    opacity: 0.7;
  }
  .about .texture-after img {
    width: 600px;
  }
  .services-heading h3,
  .products-heading h3 {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.3;
  }
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-end p {
    font-size: 2.2rem;
  }
  .footer {
    height: unset;
    padding-block: 50px;
    margin: 5rem 1rem 1rem;
  }
  .footer .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  header .container {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .hero .container {
    margin-top: 0;
  }
  .hero .texture-before,
  .hero .texture-after {
    opacity: 0.6;
  }
  .hero .texture-after {
    right: -10rem;
  }
  .loading-page svg {
    width: 200px !important;
    height: 291px !important;
  }
  .about-heading,
  .products-heading h2,
  .services-heading h2 {
    font-size: 4.3rem;
  }
  .about-text {
    font-size: 2.1rem;
  }
  .about-part {
    gap: 5rem;
  }
  .about-image-container {
    width: 27rem;
    height: 24.2rem;
  }
  .about-image-container img {
    width: 24rem;
    height: 18.46rem;
  }
  .about-image-container::after {
    width: 20.6rem !important;
    height: 15.625rem !important;
  }
  .about .texture-before {
    top: 70rem;
    right: -6rem;
  }
  html[lang="en"] .about .texture-before {
    top: 79rem;
  }
  .about .texture-before img {
    width: 290px;
  }

  .about .texture-after {
    bottom: 0rem;
    left: -20rem;
  }
  .shadow-effect {
    padding: 20px 10px;
  }
  #customers-testimonials .shadow-effect h4 {
    font-size: 21px;
  }
  .service-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1000;
  min-width: 200px;
  text-align: center;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 20px !important;
  color: #001437;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: "Tajawal", sans-serif;
  font-size: 18px !important;
  font-weight: normal !important;
  width: 100%;
}

.dropdown-item:hover {
  background-color: var(--second-color) !important;
}

/*New service section*/

.new-service-section {
  direction: rtl;
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.new-service-section .grain-bg {
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.new-service-section .header-text {
  color: rgb(148, 163, 184);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto 0.5rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-service-section .header-text svg {
  color: #ff7f50;
  margin-left: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.new-service-section h1 {
  color: white;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  max-width: 48rem;
  margin: 0 auto 4rem;
  line-height: 1.2;
}

.new-service-section .grid {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 640px) {
  .new-service-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .new-service-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  section.new-service-section {
    padding: 5rem 0;
  }
}

.card {
  background-color: #e8f3f1;
  color: #001437;
  backdrop-filter: blur(8px);
  padding: 20px 25px;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  direction: rtl;
  text-align: justify;
  cursor: pointer;
}

.new-service-section .card:nth-child(1) {
  animation-delay: 0.1s;
}
.new-service-section .card:nth-child(2) {
  animation-delay: 0.2s;
}
.new-service-section .card:nth-child(3) {
  animation-delay: 0.3s;
}
.new-service-section .card:nth-child(4) {
  animation-delay: 0.4s;
}
.new-service-section .card:nth-child(5) {
  animation-delay: 0.5s;
}
.new-service-section .card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.new-service-section .card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden !important;
}

.new-service-section .card:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(184, 216, 216, 0.3);
}

.new-service-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  background: linear-gradient(135deg, #4af4cd 0%, #4df2cd 100%);
  opacity: 0.9;
}

.new-service-section .card:nth-child(1)::before {
  bottom: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}

.new-service-section .card:nth-child(2)::before {
  bottom: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}

.new-service-section .card:nth-child(3)::before {
  top: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 0%);
}

.new-service-section .card:nth-child(4)::before {
  top: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 0%);
}

.new-service-section .card:nth-child(5)::before {
  bottom: 0;
  right: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 100% 100%);
}

.new-service-section .card:nth-child(6)::before {
  bottom: 0;
  left: 0;
  clip-path: circle(calc(6.25rem + 7.5vw) at 0% 100%);
}

.new-service-section .card:hover::before {
  clip-path: circle(150% at 100% 100%);
}

.new-service-section .card-content {
  position: relative;
}

@media (min-width: 1024px) {
  .new-service-section .card-content {
    padding-right: 3rem;
  }
  .card:nth-child(even) .card-content {
    padding-right: 0;
    padding-left: 3rem;
  }
}

.new-service-section .card svg {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.new-service-section .card:hover .service-icon-holder svg {
  transform: scale(1.1) rotate(5deg);
  color: white;
}

.new-service-section .container h2 {
  text-transform: capitalize;
  color: #001437;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
}

.new-service-section .card p {
  color: #001437;
  margin-bottom: 1.5rem;
  transition: color 0.8s;
  font-size: 1.8rem;
  text-align: right;
}

/* .new-service-section .card:hover p {
  color: white;
} */

.new-service-section .btn {
  background-color: #333e66;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  position: relative;
  z-index: 10;
}
.service-icon-holder {
  display: flex;
  justify-content: end;
}

.new-service-section .btn:hover {
  background-color: #a6c4c4;
}

.new-service-section .btn-glow {
  position: relative;
}

.new-service-section .btn-glow::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #c4e3e3 0%, #a6c4c4 100%);
  border-radius: 0.5rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.new-service-section .btn-glow:hover::after {
  opacity: 0.5;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.2;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px 40px;
  width: 80%;
}

.close:hover,
.close:focus {
  cursor: pointer;
}

/* Modal content box */
.modal-content {
  color: #fff;
  display: flex;
  background-image: linear-gradient(
    to left top,
    #001437,
    #021639,
    #04183c,
    #071a3e,
    #0a1c41
  ) !important;
  height: 60%;
}

.modal-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}
html[lang="en"] .modal-flex {
  direction: ltr;
  text-align: left;
}
html[lang="en"] .modal-flex p {
  text-align: left;
}
html[lang="en"] .modal-flex h2 {
  text-align: left;
}
/* Image section */
.modal-image {
  flex: 1;
}

.modal-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Text section */
.modal-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

.modal-text h2 {
  color: #fff !important;
  border: none;
  font-size: 3.5rem !important;
  text-align: justify;
  margin-bottom: 25px !important;
}

.modal-text p {
  color: #fff !important;
  text-align: right;
  font-size: 26px;
  font-weight: 300;
}

/* Button styling */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #4df2cd !important;
  color: var(--main-color) !important;
  width: fit-content;
  margin-top: 20px !important;
  font-size: 1.8rem !important;
}

.btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: normal;
  cursor: pointer;
  opacity: 0.9;
}

.close:hover,
.close:focus {
  transition: all 0.3s ease-in-out;
  transform: scale(1.2);
  color: #fff;
}

.read-more {
  gap: 10px;
  align-items: center;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.read-more p {
  margin-bottom: 0 !important;
}
.new-service-section .card:hover .read-more {
  transform: translateY(10px);
  opacity: 1;
}

@media (max-width: 992px) {
  .read-more {
    transform: translateY(10px);
    opacity: 1;
  }
  .modal-flex {
    flex-direction: column-reverse;
    align-items: center !important;
  }
  .modal-content {
    height: fit-content;
    padding: 40px 40px 20px;
    overflow: hidden;
  }
  .modal {
    top: 90px !important;
  }
  .modal-image,
  .modal-text {
    flex: unset;
  }
  .modal-text {
    padding-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .new-service-section .container {
    margin-left: unset;
    margin-right: unset;
  }
}

@media (max-width: 550px) {
  .modal {
    top: 60px !important;
  }

  .new-service-section .container h2 {
    font-size: 2.2rem !important;
    text-align: right;
  }
  html[lang="en"] .new-service-section .container h2 {
    text-align: left;
  }
  .new-service-section .container P {
    font-size: 2rem !important;
  }
  .modal-content {
    padding: 50px 20px 20px;
    height: fit-content;
  }
}

/*********HEADING SECTION HEADING SECTION *********/
.heading-section {
  padding-bottom: 30px;
  padding-top: 80px;
}
.heading-section h2 {
  text-align: center;
  color: black;
  font-size: 40px;
  margin-bottom: 15px;
}
.heading-section p {
  font-size: 15px;
  text-align: center;
  margin-bottom: 30px;
}
.heading-borders {
  text-align: center;
  justify-content: center;
  display: flex;
}
.heading-borders span {
  border: 1px solid red;
  width: 5%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .heading-section h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .heading-borders span {
    width: 8%;
  }
}
@media screen and (max-width: 500px) {
  .heading-borders span {
    width: 25%;
  }
  .heading-section h2 {
    font-size: 30px;
  }
}
/*********SERVICES SECTION SERVICES SECTION S*********/
/* Container for each service card */
.service-section {
  width: 100%;
  min-height: 300px; /* Ensures a consistent height for flipping */
  background: white;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
  margin-bottom: 30px;
  float: left;
  position: relative; /* Contains the absolutely positioned children */
  perspective: 1000px; /* Adds depth to the 3D effect */
}

/* The flipping element */
.card-flipper {
  position: relative;
  width: 100%;
  height: 100%; /* Fills the service-section height */
  transform-style: preserve-3d; /* Enables 3D transforms on children */
  transition: transform 0.6s; /* Smooth rotation */
}

/* Styles for both front and back faces */
.service-image-title,
.new-service-description {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensures both sides fill the card */
  backface-visibility: hidden; /* Hides the back side when not facing forward */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px 20px; /* Moved padding here from .service-section */
  box-sizing: border-box; /* Includes padding in width/height */
  background: white; /* Consistent background */
  text-align: center;
}

/* Back side starts rotated 180 degrees */
.new-service-description {
  transform: rotateY(180deg); /* Back side faces away initially */
}

/* Flip the card on hover */
.service-section:hover .card-flipper {
  transform: rotateY(180deg); /* Rotates to show the back */
}

/* Existing styles for child elements */
.service-img {
  height: 150px;
  width: 150px;
  margin-bottom: 15px;
}

.service-section h6 {
  font-size: 23px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #001437 !important;
}

.service-section p {
  line-height: 30px;
  font-size: 15px;
}

/* Keep your existing button styles */
.new-service-button {
  position: relative;
  padding: 10px 5px;
  color: var(--main-color);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
  overflow: hidden;
  background-color: var(--second-color);
}

/* Your existing button animations remain unchanged */
.new-service-button::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.new-service-button span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--main-color), var(--main-color));
  animation: animate1 2s linear infinite;
  animation-delay: 1s;
}

/* Include all your existing keyframes for animate1, animate2, animate3, animate4 */
@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Add media queries as needed */
@media screen and (max-width: 768px) {
  .service-section {
    min-height: 250px; /* Adjust height for smaller screens if needed */
  }
}

@media screen and (max-width: 500px) {
  .service-section {
    min-height: 200px; /* Further adjustment */
  }
}

.new-service-button {
  position: relative;
  padding: 10px 5px;
  color: var(--main-color);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
  overflow: hidden;
  background-color: var(--second-color);
}

.new-service-button::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.new-service-button span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--main-color), var(--main-color));
  animation: animate1 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
a span:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--main-color), var(--main-color));
  animation: animate2 2s linear infinite;
  animation-delay: 2s;
}
@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
a span:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, var(--main-color), var(--main-color));
  animation: animate3 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
a span:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, var(--main-color), var(--main-color));
  animation: animate4 2s linear infinite;
  animation-delay: 2s;
}
@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* .flip-card-container */
.flip-card-container {
  --hue: 150;
  --primary: hsl(var(--hue), 50%, 50%);
  --white-1: hsl(0, 0%, 90%);
  --white-2: hsl(0, 0%, 80%);
  --dark: hsl(var(--hue), 25%, 10%);
  --grey: hsl(0, 0%, 50%);

  width: 270px;
  height: 270px;

  perspective: 1000px;
}

/* .flip-card */
.flip-card {
  width: inherit;
  height: inherit;

  position: relative;
  transform-style: preserve-3d;
  transition: 0.6s 0.1s;
}

/* hover and focus-within states */
.flip-card-container:hover .flip-card,
.flip-card-container:focus-within .flip-card {
  transform: rotateY(180deg);
}

/* .card-... */
.card-front,
.card-back {
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
  background: var(--main-color);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;

  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card-back .new-service-button {
  width: fit-content;
}

/* .card-front */
.card-front {
  transform: rotateY(0deg);
  z-index: 2;
  cursor: pointer;
}

/* .card-back */
.card-back {
  transform: rotateY(180deg);
  z-index: 1;
}

/* figure */
figure {
  z-index: -1;
}

/* figure, .img-bg */
figure,
.img-bg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

/* img */
img.service-img {
  height: 150px;
  height: 150px;
  border-radius: 24px;
}

/* figcaption */
figcaption {
  display: block;

  width: auto;
  margin-top: 12%;
  padding: 8px 22px;

  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 2px;
  word-spacing: 6px;
  text-align: right;

  position: absolute;
  top: 0;
  right: 12px;

  color: var(--white-1);
  background: hsla(var(--hue), 25%, 10%, 0.5);
}

/* .img-bg */
.img-bg {
  background: hsla(var(--hue), 25%, 10%, 0.5);
}

.card-front .img-bg {
  clip-path: polygon(0 20%, 100% 40%, 100% 100%, 0 100%);
}

.card-front .img-bg::before {
  content: "";

  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(18deg);

  width: 100%;
  height: 6px;
  border: 1px solid var(--primary);
  border-left-color: transparent;
  border-right-color: transparent;

  transition: 0.1s;
}

.card-back .img-bg {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 60%);
}

/* hover state */

/* button */
button {
  font-family: inherit;
  font-weight: bold;
  color: var(--white-1);

  letter-spacing: 2px;

  padding: 9px 20px;
  border: 1px solid var(--grey);
  border-radius: 1000px;
  background: transparent;
  transition: 0.3s;

  cursor: pointer;
}

button:hover,
button:focus {
  color: var(--primary);
  background: hsla(var(--hue), 25%, 10%, 0.2);
  border-color: currentColor;
}

button:active {
  transform: translate(2px);
}

/* .design-container */
.design-container {
  --tr: 90;
  --op: 0.5;

  width: 100%;
  height: 100%;

  background: transparent;
  position: absolute;
  top: 0;
  left: 0;

  pointer-events: none;
}

/* .design */
.design {
  display: block;

  background: var(--grey);
  position: absolute;

  opacity: var(--op);
  transition: 0.3s;
}

.design--1,
.design--2,
.design--3,
.design--4 {
  width: 1px;
  height: 100%;
}

.design--1,
.design--2 {
  top: 0;
  transform: translateY(calc((var(--tr) - (var(--tr) * 2)) * 1%));
}

.design--1 {
  left: 20%;
}

.design--2 {
  left: 80%;
}

.design--3,
.design--4 {
  bottom: 0;
  transform: translateY(calc((var(--tr) + (var(--tr) - var(--tr))) * 1%));
}

.design--3 {
  left: 24%;
}

.design--4 {
  left: 76%;
}

.design--5,
.design--6,
.design--7,
.design--8 {
  width: 100%;
  height: 1px;
}

.design--5,
.design--6 {
  left: 0;
  transform: translateX(calc((var(--tr) - (var(--tr) * 2)) * 1%));
}

.design--5 {
  top: 41%;
}

.design--6 {
  top: 59%;
}

.design--7,
.design--8 {
  right: 0;
  transform: translateX(calc((var(--tr) + (var(--tr) - var(--tr))) * 1%));
}

.design--7 {
  top: 44%;
}

.design--8 {
  top: 56%;
}

/* states */
button:hover + .design-container,
button:active + .design-container,
button:focus + .design-container {
  --tr: 20;
  --op: 0.7;
}

.new-service-title {
  font-size: 20px;
  color: #001437;
  font-weight: bold;
}

.row.new-service-row > div {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
button,
#modalButton {
  letter-spacing: 0;
}

html[lang="en"] .new-service-section .card {
  direction: ltr;
}
