/* =============== VARIABLES ===============  */
:root {
  --clr-primary-400: #EFEBE6;
  --clr-primary-500: #E9E4DC;
  --clr-primary-600: #E3DDD2;
  --clr-neutral-100: #ffffff;
  --clr-neutral-200: #231F20;
  --clr-neutral-300: #000000;
  --ff-primary: "Safiro";
  --ff-secondary: "ABC Favorit";
  --fs-100: 1.4rem;
  --fs-200: 1.6rem;
  --fs-300: 1.8rem;
  --fs-400: 2rem;
  --fs-500: 2.4rem;
  --fs-600: 3.6rem;
  --fs-700: 3.6rem;
  --fs-800: 4rem;
  --fs-900: 4.8rem;
  --main-heading: var(--fs-900);
  --secondary-heading: var(--fs-700);
  --sub-heading: var(--fs-500);
  --lh-300: 1;
  --lh-400: 1.5;
  --section-gap: clamp(15rem, 12vw, 20rem);
  --outer-padding: 2rem;
}
@media (min-width: 581px) {
  :root {
    --outer-padding: 4rem;
  }
}

/* box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*reset font sizes of all tags*/
* {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

/* reset font size 1rem to 10px */
html {
  font-size: 62.5%;
}

body,
html {
  height: 100%;
}

/* remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* set core body defaults */
body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  cursor: url("../img/cusrsor-img.svg"), auto;
}

/* a elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* avoid text overflows */
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-size: inherit;
}

/* remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  video::-webkit-media-controls {
    display: none;
  }
}
.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.text-neutral-200 {
  color: var(--clr-neutral-200);
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200);
}

.text-neutral-300 {
  color: var(--clr-neutral-300);
}

.bg-neutral-300 {
  background-color: var(--clr-neutral-300);
}

.text-primary-400 {
  color: var(--clr-primary-400);
}

.text-primary-500 {
  color: var(--clr-primary-500);
}

.text-primary-600 {
  color: var(--clr-primary-600);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-primary-500 {
  background-color: var(--clr-primary-500);
}

.bg-primary-600 {
  background-color: var(--clr-primary-600);
}

.outer-padding {
  padding: 0 var(--outer-padding) 0;
}

.section-gap {
  padding: var(--section-gap) 0;
}

.grid {
  display: grid;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.fs-100 {
  font-size: var(--fs-100);
}

@media (min-width: 1200px) {
  .fs-xl-100 {
    font-size: var(--fs-100);
  }
}
@media (min-width: 992px) {
  .fs-lg-100 {
    font-size: var(--fs-100);
  }
}
.fs-200 {
  font-size: var(--fs-200);
}

@media (min-width: 1200px) {
  .fs-xl-200 {
    font-size: var(--fs-200);
  }
}
@media (min-width: 992px) {
  .fs-lg-200 {
    font-size: var(--fs-200);
  }
}
.fs-300 {
  font-size: var(--fs-300);
}

@media (min-width: 1200px) {
  .fs-xl-300 {
    font-size: var(--fs-300);
  }
}
@media (min-width: 992px) {
  .fs-lg-300 {
    font-size: var(--fs-300);
  }
}
.fs-400 {
  font-size: var(--fs-400);
}

@media (min-width: 1200px) {
  .fs-xl-400 {
    font-size: var(--fs-400);
  }
}
@media (min-width: 992px) {
  .fs-lg-400 {
    font-size: var(--fs-400);
  }
}
.fs-500 {
  font-size: var(--fs-500);
}

@media (min-width: 1200px) {
  .fs-xl-500 {
    font-size: var(--fs-500);
  }
}
@media (min-width: 992px) {
  .fs-lg-500 {
    font-size: var(--fs-500);
  }
}
.fs-600 {
  font-size: var(--fs-600);
}

@media (min-width: 1200px) {
  .fs-xl-600 {
    font-size: var(--fs-600);
  }
}
@media (min-width: 992px) {
  .fs-lg-600 {
    font-size: var(--fs-600);
  }
}
.fs-700 {
  font-size: var(--fs-700);
}

@media (min-width: 1200px) {
  .fs-xl-700 {
    font-size: var(--fs-700);
  }
}
@media (min-width: 992px) {
  .fs-lg-700 {
    font-size: var(--fs-700);
  }
}
.fs-800 {
  font-size: var(--fs-800);
}

@media (min-width: 1200px) {
  .fs-xl-800 {
    font-size: var(--fs-800);
  }
}
@media (min-width: 992px) {
  .fs-lg-800 {
    font-size: var(--fs-800);
  }
}
.fs-900 {
  font-size: var(--fs-900);
}

@media (min-width: 1200px) {
  .fs-xl-900 {
    font-size: var(--fs-900);
  }
}
@media (min-width: 992px) {
  .fs-lg-900 {
    font-size: var(--fs-900);
  }
}
@media (min-width: 768px) {
  .grid--md {
    display: grid;
  }
  .grid--md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1025px) {
  .grid-xl {
    display: grid;
  }
  .grid--xl-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--xl-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid-xxl {
    display: grid;
  }
  .grid--xxl-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--xxl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--xxl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--xxl-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--xxl-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@font-face {
  font-family: "Safiro";
  src: url("../font/Safiro-Regular.woff2") format("woff2"), url("../font/Safiro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Safiro";
  src: url("../font/Safiro-Medium.woff2") format("woff2"), url("../font/Safiro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Favorit";
  src: url("../font/ABCFavorit-Bold.woff2") format("woff2"), url("../font/ABCFavorit-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Favorit";
  src: url("../font/ABCFavoritArabic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Favorit";
  src: url("../font/ABCFavoritArabic-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: var(--ff-primary);
  font-size: var(--fs-300);
  color: var(--clr-neutral-200);
  background-color: var(--clr-neutral-100);
  font-weight: 400;
}

.main-heading {
  font-size: var(--main-heading);
  font-weight: 500;
}

.secondary-heading {
  font-size: var(--secondary-heading);
}

.sub-heading {
  font-size: var(--sub-heading);
  line-height: auto;
  font-weight: 500;
}

.more-btn {
  box-shadow: none;
  background: none;
  border: 0;
}

/* content */
.content-box__desc {
  margin-top: 4rem;
  display: grid;
  gap: 3rem;
}
.content-box__head {
  display: grid;
  gap: 4rem;
}
.content-box__sub-desc {
  margin-top: 1.6rem;
}
.content-box__btn {
  margin-top: 4.6rem;
  gap: 1.7rem;
}
.content-box__btn--margin {
  margin-top: 2.3rem;
}

@media (min-width: 581px) {
  /* content */
  .content-box__desc {
    margin-top: 8rem;
  }
  .content-box__btn {
    margin-top: 3rem;
    gap: 3rem;
  }
  .content-box__btn--margin {
    margin-top: 4rem;
  }
}
.swiper-button-next,
.swiper-button-prev {
  height: 6rem;
  width: 6rem;
  border: none;
  display: flex;
  position: unset;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid var(--clr-neutral-400);
  background-size: 3.5rem;
  background-position: center center;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  display: flex;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M8.85 3.15a.5.5 0 0 0-.707.707l4.15 4.15h-9.79a.5.5 0 0 0 0 1h9.79l-4.15 4.15a.5.5 0 0 0 .707.707l5-5a.5.5 0 0 0 0-.707l-5-5z'/%3E%3C/svg%3E");
}
.swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8.85 3.15a.5.5 0 0 0-.707.707l4.15 4.15h-9.79a.5.5 0 0 0 0 1h9.79l-4.15 4.15a.5.5 0 0 0 .707.707l5-5a.5.5 0 0 0 0-.707l-5-5z'/%3E%3C/svg%3E");
  background-color: var(--clr-neutral-100);
  opacity: 9;
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M8.85 3.15a.5.5 0 0 0-.707.707l4.15 4.15h-9.79a.5.5 0 0 0 0 1h9.79l-4.15 4.15a.5.5 0 0 0 .707.707l5-5a.5.5 0 0 0 0-.707l-5-5z'/%3E%3C/svg%3E");
  scale: -1;
  background-repeat: no-repeat;
  background-size: 3.5rem;
}
.swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8.85 3.15a.5.5 0 0 0-.707.707l4.15 4.15h-9.79a.5.5 0 0 0 0 1h9.79l-4.15 4.15a.5.5 0 0 0 .707.707l5-5a.5.5 0 0 0 0-.707l-5-5z'/%3E%3C/svg%3E");
  background-color: var(--clr-neutral-100);
  opacity: 9;
}

.swiper-button-disabled {
  cursor: pointer !important;
  pointer-events: unset !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
}

.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
  height: 10rem;
  width: 10rem;
  background-size: 4.5rem;
}

@media (max-width: 991px) {
  .testimonial .swiper-button-next,
  .testimonial .swiper-button-prev {
    height: 7rem;
    width: 7rem;
    background-size: 3.5rem;
  }
}
.footer {
  background-color: var(--clr-neutral-200);
  padding: 0 var(--outer-padding);
}
.footer__wrapper {
  padding: 10rem 0;
}
.footer__list {
  margin-top: 8rem;
  display: grid;
  gap: 2rem;
}
.footer__link {
  color: var(--clr-neutral-100);
  transition: all 0.3s;
}
.footer__link:hover {
  color: var(--clr-primary-600);
}
.footer__copyrht {
  border-top: 1px solid var(--clr-neutral-100);
  padding: 4rem 0;
}

@media (max-width: 991px) {
  .footer__menu {
    margin-top: 8rem;
  }
}
.header {
  padding: 4rem;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--clr-neutral-100);
  z-index: 99;
  transition: all 0.3s;
}
.header.active {
  padding: 2rem 3rem;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo-box {
  gap: 1.4rem;
}
.header__logo {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
.header__logo.active {
  width: 6rem;
  height: 6rem;
}
.header__sc-logo {
  transition: all 0.3s;
  opacity: 0;
  height: 3rem;
}
.header__sc-logo.active {
  opacity: 9;
  height: 5rem;
  width: 20rem;
}
.header__menu {
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.header__menu.active {
  transform: translateY(0);
  opacity: 1;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__link {
  color: var(--clr-neutral-300);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: normal;
  transition: all 0.4s;
  display: block;
}
.header__link:hover {
  transform: translateY(-5px);
}
.header__menu-btn {
  cursor: pointer;
}
.header__close-btn {
  cursor: pointer;
  display: flex;
  justify-content: end;
  margin-top: 7.5rem;
}
.header__close-ic {
  width: 2.4rem;
  height: 2.4rem;
}
.header__lang-btn {
  margin-right: 3rem;
  background: none;
  box-shadow: none;
  border: 0;
  font-family: "ABC Favorit" !important;
}

@media (min-width: 992px) {
  .header .offcanvas-logo {
    display: none;
  }
  .header .close-btn {
    display: none;
  }
  .header__item {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .header__menu.active .header__item {
    opacity: 1;
    transform: translateY(0);
  }
  .header__menu.active .header__item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .header__menu.active .header__item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .header__menu.active .header__item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .header__menu.active .header__item:nth-child(4) {
    transition-delay: 0.4s;
  }
  .header__menu.active .header__item:nth-child(5) {
    transition-delay: 0.5s;
  }
}
@media (max-width: 991px) {
  .header.active {
    padding: 2rem 2.4rem;
  }
  .header__logo {
    width: 4rem;
    height: 4rem;
  }
  .header__logo.active {
    width: 3.6rem;
    height: 3.6rem;
  }
  .header__sc-logo {
    height: 3rem;
  }
  .header__sc-logo.active {
    height: 3rem;
    width: 13rem;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-neutral-100);
    transform: translateX(-100%);
    padding: 4.8rem 3rem 0;
  }
  .header__list {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 580px) {
  .header {
    padding: 3rem;
  }
  .header.active {
    padding: 2rem 3rem;
  }
  .header__logo-box {
    gap: 8px;
  }
  .header__logo {
    width: 2.8rem;
    height: 2.8rem;
  }
  .header__logo.active {
    width: 3rem;
    height: 3rem;
  }
  .header__sc-logo {
    height: 2rem;
    width: auto;
  }
  .header__sc-logo.active {
    height: 2.3rem;
    width: auto;
  }
  .header__lang-btn {
    margin-right: 1rem !important;
  }
}
.container {
  max-width: min(123rem, 100% - 6.5rem);
}
.container--lg {
  max-width: min(130rem, 100% - 6.5rem);
}

.lang {
  display: none;
}

.lang.active {
  display: block;
}

/* RTL for Arabic */
.rtl {
  direction: rtl;
  text-align: right;
  font-family: var(--ff-secondary) !important;
}
.rtl .feature__box:nth-child(2) {
  border-width: 1px 1px 0 1px;
}
.rtl .feature__box:nth-child(3) {
  border-width: 1px 0 0 0;
}
.rtl .feature__box:nth-child(5) {
  border-width: 1px 1px 1px 1px;
}
.rtl .feature__box:nth-child(6) {
  border-width: 1px 0 1px 0;
}

@media (max-width: 575px) {
  .container {
    max-width: min(123rem, 100% - 2.3rem);
  }
  .container--lg {
    max-width: min(130rem, 100% - 2.3rem);
  }
}
@media (max-width: 991px) {
  .rtl {
    direction: rtl;
    text-align: right;
    font-family: var(--ff-secondary) !important;
  }
  .rtl .feature__box:nth-child(2) {
    border-width: 1px 1px 0 0;
  }
  .rtl .feature__box:nth-child(4) {
    border-width: 1px 1px 1px 0;
  }
  .rtl .feature__box:nth-child(5) {
    border-width: 1px 0 1px 1px;
  }
  .rtl .feature__box:nth-child(6) {
    border-width: 0 0 1px 0;
  }
}
.hero {
  padding: 18rem var(--outer-padding) 8rem;
}

/* services */
.services__grid {
  display: grid;
}
.services__box {
  padding: var(--outer-padding);
  background-color: var(--clr-primary-600);
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services__box:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.services__box:nth-child(2) {
  grid-column: span 2;
  background-color: var(--clr-primary-400);
}
.services__box:nth-child(3) {
  grid-column: span 2;
  background-color: var(--clr-primary-500);
}
.services__ic {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/* spark */
.spark {
  padding: var(--outer-padding) var(--outer-padding) 0;
  position: relative;
}
.spark__img {
  width: 100%;
  opacity: 1;
  transition: all 0.3s ease;
}

/* about */
.about {
  margin: 0 var(--outer-padding);
}
.about__grid {
  gap: 4rem;
}

/* gallery */
.gallery {
  padding: 0 clamp(4rem, 8vw, 19vh);
  position: relative;
  overflow: hidden;
}
.gallery__img {
  aspect-ratio: 3/1.8;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  scale: 1.2;
}

/* feature */
.feature__box {
  min-height: 30rem;
  padding: 2rem;
  border-color: var(--clr-neutral-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature__box span {
  font-size: var(--fs-200);
}
.feature__box:nth-child(1) {
  border-width: 1px 0 0 0;
  border-style: solid;
  align-items: start;
  justify-content: center;
}
.feature__box:nth-child(2) {
  border-width: 1px 0 0 1px;
  border-style: solid;
}
.feature__box:nth-child(3) {
  border-width: 1px 0 0 0;
  border-style: solid;
}
.feature__box:nth-child(4) {
  border-width: 1px 0 0 1px;
  border-style: solid;
}
.feature__box:nth-child(5) {
  border-width: 1px 0 1px 0;
  border-style: solid;
}
.feature__box:nth-child(6) {
  border-width: 1px 0 1px 1px;
  border-style: solid;
}
.feature__img {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/* client */
.client {
  padding: 9rem 0 6rem;
  margin: 0 var(--outer-padding);
}
.client__grid {
  gap: 4rem;
  margin-top: 5.2rem;
}
.client__img-box .extra-logos {
  display: none;
}
.client__img {
  width: auto;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  width: 22rem;
}
.client__btn {
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .feature__box {
    min-height: 40rem;
  }
  .feature__box:nth-child(1) {
    border-width: 1px 0 0 0;
  }
  .feature__box:nth-child(2) {
    border-width: 1px 0 0 1px;
  }
  .feature__box:nth-child(3) {
    border-width: 1px 0 0 1px;
  }
  .feature__box:nth-child(4) {
    border-width: 1px 0 1px 0;
  }
  .feature__box:nth-child(5) {
    border-width: 1px 0 1px 1px;
  }
  .feature__box:nth-child(6) {
    border-width: 1px 0 1px 1px;
  }
  .feature__img {
    width: 6rem;
    height: 6rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  /* gallery */
  .gallery__img {
    aspect-ratio: 3/1.3;
  }
  .client {
    padding: 11.2rem 0;
    margin: 0 var(--outer-padding);
  }
  .client__grid {
    gap: 4rem;
    margin-top: 8.2rem;
  }
  .client__img {
    height: 13rem;
    width: 24rem;
  }
  .client__btn {
    margin-top: 7rem;
  }
}
@media (min-width: 581px) {
  .hero {
    padding: 21rem var(--outer-padding) 10rem;
  }
  .services__box {
    padding: var(--outer-padding);
    background-color: var(--clr-primary-600);
  }
  .services__ic {
    width: 6rem;
    height: 6rem;
  }
  .feature__box {
    padding: 4rem;
  }
  .feature__box span {
    font-size: var(--fs-300);
  }
}
@media (max-width: 991px) {
  /* feature */
  .feature__box {
    min-height: 30rem;
    padding: 2rem;
    border-color: var(--clr-neutral-200);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .feature__box span {
    font-size: var(--fs-200);
  }
}/*# sourceMappingURL=main.css.map */