:root {
  --mainColor: #87247f;
  --secondaryColor: #1d1868;
  --white: #f5f5f5;
  --black: #101014;
  --txt: #8f9091;
  --sectionBG: #f8f9fa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--secondaryColor);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  border-radius: 4px;
}

.mainColor {
  color: var(--mainColor);
}

.txtColor {
  color: var(--txt);
}

.section-mt-p {
  margin-top: 5em;
  padding: 100px 0;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}

.lang-show {
  display: none;
}

.navbar-nav .dropdown-menu {
  position: static;
  background-color: var(--sectionBG);
}

.dropdown-item::before {
  content: "\2022";
  margin: 5px;
  color: var(--black);
}
.logo {
  height: 64px;
}

.nav-item {
  margin: 32px;
}

.nav-item a {
  color: var(--black);
  transition: 0.4s;
}

.navbar {
  padding: 14px;
  background-color: var(--white);
  border-bottom: solid 1px var(--txt);
}

.lang .nav-link {
  font-size: 16px;
  text-decoration: none;
  color: var(--black);
}

.lang .nav-link:hover {
  color: var(--secondaryColor);
}
.home {
  background-image: url("https://images.unsplash.com/photo-1625258110856-e1f042875340?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-position: center;
  background-size: cover;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.5);
  height: fit-content;
  width: inherit;
  padding: 275px 0 275px 0;
}

.content h5 {
  color: var(--mainColor);
  text-align: center;
}

.content h1 {
  color: var(--white);
  font-size: 2.7rem;
  text-align: center;
}

.content p {
  color: var(--white);
  line-height: 32px;
  text-align: center;
  width: 50%;
  margin: auto;
  font-size: 18px;
}

.btns {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: fit-content;
  flex-wrap: wrap;
  margin: auto;
}

.btns button {
  margin: 14px;
}

.btn-primary {
  font-size: 16px;
  background-color: var(--mainColor);
  color: var(--white);
  border: none;
  padding: 12px;
  width: 200px;
  transition: 0.3s;
}

.btn-secondary {
  font-size: 16px;
  background-color: transparent;
  border: solid 1px var(--secondaryColor);
  color: var(--white);
  padding: 12px;
  width: 200px;
  transition: 0.3s;
}

.home .btn-primary:hover {
  background-color: transparent;
  border: solid 1px var(--mainColor);
  transform: scale(1.1);
}

.btn-secondary:hover {
  background-color: var(--secondaryColor);
  border: none;
}

.nav-item a:hover {
  color: var(--mainColor) !important;
  font-size: 1.2rem;
}

.nav-item a:active {
  background-color: transparent;
}
.nav-link:focus {
  color: var(--mainColor);
}

.lang a:hover {
  color: var(--mainColor);
}

.card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.4s;
  padding: 24px;
  padding-bottom: 0;
}

.section-title {
  width: fit-content;
  position: relative;
  padding: 10px 20px;
  transition: 0.4s;
  z-index: 10;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--secondaryColor);
  border-radius: 50%;
  position: absolute;
  top: 40%;
}

.section-title::before {
  left: -40px;
}

.section-title::after {
  right: -40px;
}

.section-title:hover::before {
  z-index: -1;
  animation: leftMv forwards linear 0.5s;
}

.section-title:hover::after {
  z-index: -1;
  animation: RightMv forwards linear 0.5s;
}

.section-title:hover {
  color: var(--white);
}

.features .card-body {
  transition: 0.4s;
}

.card-img-top {
  height: 64px;
  width: 64px;
  margin: 32px auto;
  transition: 0.4s;
}

.card-img-top:hover {
  transform: scale(1.3);
}

.card span {
  border: solid 2px var(--mainColor);
  margin: 14px 0;
}

.card h5 {
  line-height: 32px;
  text-align: center;
}

.card:hover {
  transform: scale(1.1);
  z-index: 7;
}

.features .card:hover .card-body {
  display: block !important;
}

.fs-14px {
  font-size: 14px;
}

.services {
  background-color: var(--sectionBG);
}

.services .card {
  margin: 32px 0;
}

.services .card {
  width: 100%;
}

.service-more {
  text-decoration: none;
  color: var(--white);
  background-color: var(--mainColor);
  padding: 14px;
  border-radius: 4px;
  display: block;
  margin: 2em auto;
  width: fit-content;
  transition: 0.4s;
}

.service-more:hover {
  filter: brightness(75%);
}

.about-us-img {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: 0.4s;
  border: solid 6px var(--mainColor);
}

.about-us-img:hover {
  filter: grayscale(100);
}

.clients {
  background-color: var(--sectionBG);
  margin-top: 8em !important;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients .btn:hover,
.contact .btn:hover {
  background-color: var(--mainColor);
  color: var(--white);
  filter: brightness(75%);
}

.contact .container {
  background-color: var(--sectionBG);
}

.contact form .col-md-4,
.contact form .col-md-3 {
  width: 100%;
}

.contact i {
  font-size: 32px;
  color: var(--mainColor);
  transition: 0.2s;
}

.contact i:hover {
  transform: scale(1.2);
}
.contact .card {
  padding: 40px;
  width: 18rem;
  height: fit-content;
  margin: auto;
  border-top: solid 8px var(--mainColor);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

footer {
  border-top: solid 1px var(--txt);
  background-color: var(--sectionBG);
}

footer img {
  height: 100px;
}

footer p,
.copyright {
  color: var(--txt);
}

footer h5 {
  color: var(--mainColor);
  font-size: 1.5rem;
}

footer li a,
footer li {
  color: var(--black);
  transition: 0.2s;
  text-decoration: none;
}

footer li:hover,
footer li a:hover {
  color: var(--mainColor);
  text-decoration: underline;
  cursor: pointer;
}

footer .btn:hover {
  background-color: var(--mainColor);
  color: var(--white);
  filter: brightness(75%);
}

@keyframes leftMv {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }

  100% {
    left: 0;
    top: 5%;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
}

@keyframes RightMv {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }

  100% {
    right: 0;
    top: 5%;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
}
