html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: "El Messiri", serif;
  font-optical-sizing: auto;
  font-weight: 300, 400, 500, 600, 700, 800;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  font-display: swap;
}

a {
  text-decoration: none;
  color: black;
}
section:not(:first-of-type) {
  padding-top: 80px;
  padding-bottom: 80px;
}
section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 900;
}
.mb-6 {
  margin-bottom: 6rem;
}
.whats-app {
  position: relative;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
  height: 55px;
  width: 55px;
}
.whats-app {
  img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
  }
}
.instgram {
  left: calc(20px + 55px + 20px);
}
@media (max-width: 600px) {
  .instgram {
    left: 20px;
    bottom: calc(20px + 55px + 20px);
  }
}

.scroll-up {
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #8f8f8f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  svg {
    font-size: 25px;
  }
}
.scroll-up.show {
  position: fixed;
}

/* image slider */

.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  /* mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent); */
  background-color: #f8f9fa;
  p {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
  }
}

.slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 10s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc(
    (10s / var(--quantity)) * (var(--position) - 1) - 10s
  ) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slider .list .item img {
  max-width: 200px;
  height: 80px;
  margin-left: 20px;
}

@keyframes autoRun {
  from {
    left: 100%;
  }

  to {
    left: calc(var(--width) * -1);
  }
}

.slider[reverse="true"] .item {
  animation: reversePlay 10s linear infinite;
}

@keyframes reversePlay {
  from {
    left: calc(var(--width) * -1);
  }

  to {
    left: 100%;
  }
}

nav {
  .nav-link {
    /* color: white !important; */
    transition: 0.3s;
  }
}

.nav-link:hover {
  color: #903652 !important;
  font-weight: bold;
  font-size: 20px;
}
.navbar-toggler {
  background-color: #f0f0f0 !important;
  color: transparent !important;
}

@media (max-width: 991px) {
}
.navbar-brand {
  background-color: #131c13;
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* landing section */
.landing {
  background-image: url(../images/a21d29d7-ab91-434b-9a3c-bb41a0dde21e.webp);
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.landing .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 80px;
}
.landing img {
  height: 250px !important;
  width: 100%;
}
.landing .navbar-brand {
  width: 250px !important;
  height: 250px !important;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .landing img {
    height: 200px !important;
  }
  .landing .navbar-brand {
    width: 200px !important;
    height: 200px !important;
  }
}
@media (max-width: 776px) {
  .landing img {
    height: 150px !important;
  }
  .landing .navbar-brand {
    width: 150px !important;
    height: 150px !important;
  }
}
.overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(63, 43, 86, 0.89);
}

/* about section  */
.about li:not(:last-child) {
  margin-bottom: 10px;
}

.about img {
  width: 100%;
}
@media (max-width: 997px) {
  .about ul {
    width: 100%;
  }
  .about .col-4 {
    width: 100%;
  }
  .about img {
    width: 100%;
  }
}

/* feature section */
.feature {
  background-color: #3f2b56;
}
.feature .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  .cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(241, 241, 241, 0.1);
    transition: 0.3s;
    color: white;
    span {
      font-size: 45px;
    }
  }
}

@media (max-width: 776px) {
  .feature .container {
    gap: calc(100% - 98%);
    span {
      font-size: 30px !important;
    }
    h5 {
      font-size: 18px !important;
    }
  }
}
@media (max-width: 440px) {
  .feature .container {
    span {
      font-size: 25px !important;
    }
    h5 {
      font-size: 16px !important;
    }
  }
}
@media (max-width: 313px) {
  .feature .container {
    span {
      font-size: 20px !important;
    }
    h5 {
      font-size: 14px !important;
    }
  }
}

.cards:hover {
  transform: scale(1.1);
}
/* goals section */
.goals {
  background-color: #f5f5f5;
}
.goals h3 {
  color: #903652;
  font-weight: 900;
  position: relative;
  margin-bottom: 20px;
}

.goals h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 2px;
  background-color: #903652;
}

/* services section */
.services .image {
  height: 80%;
  width: 100%;
}
.services img,
.achievment img,
.services video {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 776px) {
  .services img {
    max-width: 400px;
  }
}
.services h3 {
  color: #903652;
  font-weight: 900;
}
.services p {
  line-height: 2;
}
@media (max-width: 776px) {
  .services .col-6 {
    width: 100%;
  }
}
.services .dist h3 {
  position: relative;
}
.services .dist h3::before {
  content: "01";
  position: absolute;
  bottom: 0px;
  right: -60px;
  width: 30px;
  height: 30px;
  background-color: #903652;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
@media (max-width: 1100px) {
  .services .dist h3::before {
    right: -50px;
  }
}
@media (max-width: 950px) {
  .services .dist h3::before {
    right: 0;
    top: -40px;
  }
}
.services .dist:nth-of-type(1) h3::before {
  content: "01";
}
.services .dist:nth-of-type(2) h3::before {
  content: "02";
}
.services .dist:nth-of-type(3) h3::before {
  content: "03";
}
.services .dist:nth-of-type(4) h3::before {
  content: "04";
}
.services .dist:nth-of-type(5) h3::before {
  content: "05";
}
.achievment {
  background-color: #f8f9fa;
  padding-bottom: 0 !important;
  p {
    font-size: 20px;
  }
}

/* footer section */
.footer-section {
  padding: 50px 0;
  background-color: #3f2b56;
  color: white;
  a {
    color: white;
  }
  h3 {
    margin-bottom: 20px;
  }
}
.footer-section div:nth-child(3) ul {
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .footer-section div:nth-child(3) {
    margin-top: 20px;
  }
}
@media (max-width: 776px) {
  .footer-section h3 {
    text-align: center;
  }

  .footer-section div:nth-child(3) ul {
    margin: 0 auto 20px;
  }
}
@media (max-width: 600px) {
  p {
    text-align: justify !important;
  }
  .itemList {
    text-align: justify !important;
  }
}
@media (max-width: 600px) {
  .contact p {
    text-align: center !important;
  }
}
