@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  /* transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out; */
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

:root {
  --primary-color: #6f9eea;
  --btn-gradient: linear-gradient(180deg, #3f83d2 0%, #297bd9 73.6%);
  --secondary-gradient: linear-gradient(180deg, #4982f0 0%, #2771c7 73.6%);
  --black-color: #1b1d20;
  --fade-black: rgba(27, 29, 32, 80%);
  --white-color: #ffffff;
  --fade-white: #f0f0f0;
}

body {
  padding: 0 !important;
}

a {
  text-decoration: none;
}

.btn-gradient {
  background: var(--btn-gradient);
  color: var(--white-color);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  /* padding: 14px 24px; */
  padding: 13px 20px;
  border-radius: 33px;
  font-weight: 600;
  font-size: 16px;
}

.btn-gradient:hover,
.btn-gradient:active {
  background: var(--secondary-gradient);
  color: var(--white-color);
}

.py-120 {
  padding-block: 80px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background: var(--secondary-gradient);
  color: var(--white-color);
  border-color: transparent;
}

.px-120 {
  padding-inline: 120px;
}

.company-logo img {
  width: 200px;
}

.py-nav {
  padding-block: 10px;
}

.header-scroll.sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #ecf9ff;
  transition: 0.4s ease;
}

/* #scoller.sticky .navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
  color: var(--black-color) !important;
}

#scoller.sticky .navbar-nav .nav-link.active::before {
  content: "•";
  color: var(--black-color);

} */
#scoller.sticky .navbar-nav .nav-link {
  color: var(--black-color);
}

#scoller.sticky .company-logo .img-2 {
  display: block !important;
}

#scoller.sticky .company-logo .img-1 {
  display: none !important;
}

#scoller.sticky header {
  background: #ecf9ff;
  /* filter: blur(0.5px); */
}

.navbar-nav .nav-link {
  color: var(--white-color);
  font-weight: 700;
  font-size: 16px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
  color: var(--primary-color) !important;
}

#scoller.sticky .navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: -6px;
  top: 6px;
}

.navbar-nav {
  gap: 30px;
}
.slide-logo img.img-fluid:hover {
    transform: translateY(-2%) scale(1.1);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    cursor: pointer;
    filter: none;
}
@media (max-width: 1340px) {
  .px-120 {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  header .px-120 {
    padding-inline: 0;
  }
}

@media (min-width: 992px) and (max-width: 1050px) {
  .company-logo img {
    width: 140px;
  }

  .navbar-nav {
    gap: 24px;
  }
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.9s;
  transition-duration: 0.9s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 30px;
  height: 21px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: var(--black-color);
  border-radius: 10px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -9px;
}

.hamburger-inner::after {
  bottom: -9px;
}

.ham-home,
.ham-home::after,
.ham-home::before {
  background-color: var(--black-color);
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 9;
}

/* loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  top: 0;
  z-index: 999999;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.loader {
  position: absolute;
  z-index: 999;
  --w: 10ch;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  line-height: 1.4em;
  letter-spacing: var(--w);
  width: var(--w);
  overflow: hidden;
  white-space: nowrap;
  color: #0000;
  text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
    calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
    calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
    calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
    calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  animation: l20 2s infinite linear;
}

.loader:before {
  content: "Loading...";
}

@keyframes l20 {
  9.09% {
    text-shadow: calc(0 * var(--w)) -10px #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  }

  18.18% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) -10px #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  }

  27.27% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) -10px #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  }

  36.36% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) -10px #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  }

  45.45% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) -10px #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  }

  54.54% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) -10px #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  }

  63.63% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) -10px #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  }

  72.72% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) -10px #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) 0 #000;
  }

  81.81% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) -10px #000, calc(-9 * var(--w)) 0 #000;
  }

  90.90% {
    text-shadow: calc(0 * var(--w)) 0 #000, calc(-1 * var(--w)) 0 #000,
      calc(-2 * var(--w)) 0 #000, calc(-3 * var(--w)) 0 #000,
      calc(-4 * var(--w)) 0 #000, calc(-5 * var(--w)) 0 #000,
      calc(-6 * var(--w)) 0 #000, calc(-7 * var(--w)) 0 #000,
      calc(-8 * var(--w)) 0 #000, calc(-9 * var(--w)) -10px #000;
  }
}

/* loader */

/* hero section  */
.hero-section {
  background-image: url("../images/hero-bg.webp");
  height: 100vh;
  width: 100%;
  /* padding-block: 280px; */
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-img img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 2px solid #ffffff;
  background: #d9d9d9;
  object-fit: cover;
  margin-left: -25px;
  overflow: hidden;
  overflow-clip-margin: padding-box;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  cursor: pointer;
}

.user-img img:hover {
  position: relative;
  z-index: 9;
}

.hero-details h1 {
  font-size: 45px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 70px;
}

.hero-details h1 span {
  color: var(--primary-color);
}

.hero-details p {
  font-size: 18px;
  font-weight: 500;
  color: var(--fade-white);
}

.user-img img:first-child {
  margin-left: 0;
}

.user-list p {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-35 {
  margin-bottom: 35px;
}

@media (max-width: 992px) {
  .hero-details h1 {
    font-size: 38px;
  }

  .hero-btn {
    justify-content: center;
    display: flex;
  }

  /* .py-120 {
    padding-block: 60px;
  } */

  .hero-details h1 span {
    font-size: 36px;
  }

  .hero-details p {
    font-size: 18px;
    font-weight: 500;
    color: var(--fade-white);
  }

  .user-list {
    justify-content: center;
    flex-direction: column;
  }

  .hero-details {
    text-align: center;
  }

  .hero-section {
    padding-block: 130px;
    /* height: 100%; */
  }

  .navbar-nav .nav-link {
    color: var(--black-color);
  }

  .navbar-nav {
    gap: 6px;
  }

  .navbar-nav .nav-link.active::before {
    content: "•";
    display: none;
  }
}

.text-20 {
  font-size: 23px;
}

/* hero section  */

/* about section  */
.aboutimg img {
  /* border-radius: 0px 150px 0px 0px;
    -webkit-border-radius: 0px 150px 0px 0px;
    -moz-border-radius: 0px 150px 0px 0px;
    -ms-border-radius: 0px 150px 0px 0px;
    -o-border-radius: 0px 150px 0px 0px; */
  width: 100%;
  /* aspect-ratio: 16/9; */
  object-fit: cover;
  overflow: hidden;
  overflow-clip-margin: padding-box;
}

.about-details h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.about-details p {
  font-size: 20px;
  font-weight: 500;
  line-height: 37px;
  text-align: left;
  color: var(--fade-black);
  margin-bottom: 35px;
}

.pe-120 {
  padding-right: 120px;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .pe-120 {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .about-details h2 {
    font-size: 26px;
  }

  .about-details p {
    font-size: 18px;
  }

  .about-us .col-lg-6.ps-0 {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .aboutimg img {
    /* border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px; */
    margin-bottom: 20px;
  }
}

/* about section  */

/* client section  */
.py-50 {
  padding-block: 50px;
}

.clients {
  background: linear-gradient(180deg, #4982f0 0%, #6498d5 73.6%);
  ;
}

.client-heading h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  display: inline-block;
}

.client-heading h4::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 50%;
  height: 5px;
  background-color: var(--white-color);
  left: 50%;
  transform: translateX(-50%);
}

.client-heading p {
  font-size: 18px;
  font-weight: 500;
  color: var(--fade-white);
}

.client-heading .underline {
  margin: 10px auto 20px auto;
}

#project-logo img,
#project-logo2 img {
  width: 68px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.slide-logo img {
  margin: auto;
  width: 75px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

@media (max-width: 768px) {
  .client-heading h4 {
    font-size: 26px;
  }

  .client-heading p {
    font-size: 17px;
  }
}

/* client section  */

/* together  */
.together {
  background: var(--secondary-gradient);
}

.custom-badge {
  padding: 13px 30px 13px 30px;
  border-radius: 31px;
  -webkit-border-radius: 31px;
  -moz-border-radius: 31px;
  -ms-border-radius: 31px;
  -o-border-radius: 31px;
  background-color: var(--white-color) !important;
  width: fit-content;
}

.custom-badge h4 {
  font-size: 16px;
  font-weight: 600;
  background: var(--btn-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.together-details p {
  font-size: 40px;
  font-weight: 700;
  color: var(--white-color);
  width: 850px;
}

/* together  */

/* offices  */
.offices-heading h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black-color);
  margin: 0;
}

.custom-card {
  background: var(--white-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0px 0px 20px 0px #6f9eea40;
  padding: 25px;
}

.offices-heading .underline {
  margin: 10px auto 20px auto;
}

.country img {
  width: 72px;
}

.country h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black-color);
}

.location h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: var(--fade-black);
}

.location img,
.phone img {
  max-height: 35px;
  width: fit-content;
}

.phone h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: var(--fade-black);
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-50 {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .together-details p {
    font-size: 32px;
  }

  .offices-heading h4 {
    font-size: 28px;
  }

  .location h5 {
    font-size: 15px;
  }

  .phone h5 {
    font-size: 15px;
  }

  .location img {
    max-height: 32px;
  }

  .phone img {
    max-width: 32px;
  }

  .country h4 {
    font-size: 26px;
  }

  .country img {
    width: 60px;
    height: 60px;
  }
}

/* offices  */

/* footer  */
footer {
  background: var(--secondary-gradient);
}

.footer-logo p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  line-height: 33px;
}

.Useful-Links h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
}

.Useful-Links {
  width: fit-content;
  margin: auto;
}

.Useful-Links ul {
  list-style-type: none;
  padding-left: 0;
}

.Useful-Links ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--fade-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-ul-icon img {
  /* width: 40px;
    height: 40px; */
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.contact-footer h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
}

.contact-footer p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
}

/* footer  */

/* review  */
.review {
  background: url("../images/customer-review.png");
  background-size: cover;
  background-position: top;
  height: 720px;
}

.review-header .underline {
  margin: 10px auto 20px auto;
}

.review-header h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0;
}

.reviewer-img {
  width: 70px !important;
  height: 70px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  object-fit: cover;
  overflow: hidden;
  overflow-clip-margin: padding-box;
  background: #5795dd;
}

.reviewer-img {
  position: absolute;
  top: -40px;
}

.stars {
  display: flex !important;
  gap: 4px;
  justify-content: end;
}

.stars img {
  width: 24px !important;
  margin-bottom: 14px;
}

.review-card {
  background: var(--white-color);
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  padding: 25px;
  width: 100%;
  height: 245px;
}

@media (min-width:992px) and (max-width: 1200px) {
  .review-card {
    height: 290px;
  }
}

@media (min-width:1340px) and (max-width: 1422px) {
  .review-card {
    height: 275px;
  }
}

.paragraph p {
  font-size: 18px;
  font-weight: 500;
  color: var(--fade-black);
  margin-bottom: 40px;
}

.paragraph h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--black-color);
}

.paragraph h6 {
  font-size: 16px;
  font-weight: 500;
  color: var(--fade-black);
  margin: 0;
}

@media (max-width: 768px) {
  .paragraph p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.review .owl-carousel .owl-stage-outer {
  padding-top: 57px;
}

.owl-nav {
  justify-content: center;
  display: flex;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .review-header h4 {
    font-size: 26px;
  }

  .owl-nav img {
    width: 50px;
  }
}

/* review  */

/* advertisement  */
.advertisement-counter {
  padding: 26px 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: var(--btn-gradient);
  width: fit-content;
  margin: auto;
}

.advertisement-counter ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  gap: 35px;
}

.advertisement-counter li h4 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--white-color);
}

.advertisement-counter li p {
  font-size: 15px;
  font-weight: 500;
  color: var(--fade-white);
  margin-bottom: 0;
}

.advertisement-details h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.yellow-star img {
  width: 24px !important;
}

.advertise-logo img {
  width: 130px;
}

.advertise-logo p {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color);
}

#fiver {
  background: #d7fbe0;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#google {
  background: #ffe8e4;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#freelancer {
  background: #d9effc;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#upwork {
  background: #d7e5ff;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  .advertisement-details h3 {
    font-size: 26px;
  }
}

/* advertisement  */

/* service  */
.service {
  background: var(--secondary-gradient);
}

.badge-style {
  padding: 8px 20px;
  border-radius: 31px;
  font-size: 16px;
  font-weight: 600;
  -webkit-border-radius: 31px;
  -moz-border-radius: 31px;
  -ms-border-radius: 31px;
  -o-border-radius: 31px;
  border: 2px solid var(--fade-white);
  width: fit-content;
  color: var(--fade-white);
}

.service-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
}

.service-left p {
  font-size: 18px;
  font-weight: 500;
  color: var(--fade-white);
  line-height: 31px;
}

.service-names ul li h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
}

.service-names ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.service-names ul li p {
  font-size: 16px;
  font-weight: 500;
  color: var(--fade-white);
  margin-bottom: 0;
  padding-right: 16px;
}

.divider {
  border: 1.5px solid var(--fade-white);
  margin-block: 25px;
}

.service-icon div {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-width: 2px;
  border-style: solid;
  border-color: var(--fade-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon div span {
  font-size: 30px;
  color: var(--fade-white);
}

/* service  */

/* project  */
.project-header h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black-color);
  margin: 0;
  display: inline-block;
  position: relative;
}

.project-header .underline {
  margin: 10px auto 20px auto;
}

.project-header h4::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 50%;
  height: 5px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
}

.project-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  overflow: hidden;
  overflow-clip-margin: padding-box;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  /* cursor: pointer; */
}

.overlay {
  position: absolute;
  bottom: -100%;
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.bage-tags {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* bottom: 30px;
    left: 25px; */
  bottom: -300px;
  left: 25px;
  opacity: 0;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.badge-project {
  padding: 9px 16px;
  width: fit-content;
  border: 2px solid var(--white-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-color);
  border-radius: 47px;
  -webkit-border-radius: 47px;
  -moz-border-radius: 47px;
  -ms-border-radius: 47px;
  -o-border-radius: 47px;
  margin-bottom: 0;
}

.project-details {
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  overflow: hidden;
  border-radius: 16px;
}

.project-details:hover .overlay {
  opacity: 1;
  bottom: 0%;
  border-radius: 16px;
}

.project-details:hover .bage-tags {
  opacity: 1;
  bottom: 20px;
  left: 20px;
}

@media (max-width: 768px) {
  .project-header h4 {
    font-size: 26px;
  }
}

/* project  */

/* collaborate  */
.collab-card {
  background-color: var(--primary-color);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 15px 15px;
}

.collab-card span {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
}

.collab-card p {
  font-size: 16px !important;
  font-weight: 500;
  color: var(--fade-white) !important;
}

.collaborate-content h4 {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 15px;
}

.collaborate-content p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--fade-black);
}

.collaborate-content h4 span {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .collaborate-content h4 {
    font-size: 32px;
  }

  .collab-card {
    margin-bottom: 12px;
  }
}

/* collaborate  */

/* about us page  */
#about-us {
  background: url("../images/about-page.png");
  background-repeat: no-repeat;
  height: calc(850px - 85px);
  background-position: center;
}

#aboutpage .navbar-nav .nav-link {
  color: var(--black-color);
}

#about-us .advertisement-details h5 {
  font-size: 35px;
  font-weight: 700;
  color: var(--black-color);
}

#about-us .advertisement-details h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--fade-black);
  line-height: 30px;
}

#about-us .advertisement-counter {
  padding: 20px;
  /* width: 100%; */
  margin: 0;
}

@media (max-width: 768px) {
  #about-us {
    height: 100%;
    /* background-position: top; */
  }
}

#aboutpage {
  position: static;
  background: url("../images/nav.png");
}

.about-header-img img {
  width: 500px;
}

/* about us page  */

/* choose us  */
.project-header p {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--fade-black);
  width: 950px;
  margin: 0;
}

.chose-card {
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  overflow: hidden;
  cursor: pointer;
}

.chose-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  overflow: hidden;
  overflow-clip-margin: padding-box;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.overlay-choose {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: rgba(27, 29, 32, 80%);
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  position: absolute;
  top: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 1s ease-in-out;
  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -ms-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
}

.chose-details h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black-color);
  text-align: center;
}

.chose-card p {
  font-size: 18px;
  font-weight: 500;
  /* line-height: 29px; */
  color: var(--fade-white);
  position: absolute;
  bottom: -55%;
  padding-inline: 16px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  margin: 0;
}

.chose-card:hover img {
  filter: blur(2px);
  -webkit-filter: blur(2px);
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.chose-card:hover .overlay-choose {
  opacity: 1;
  visibility: visible;
}

.chose-card:hover p {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}

/* choose us  */

/* career  */
.career-card {
  background: var(--primary-color);
  width: 100%;
  padding: 25px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  cursor: pointer;
}

.career-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}

.req-job {
  gap: 12px;
}

.text-req {
  font-size: 15px;
  font-weight: 500;
  line-height: 22.68px;
  color: var(--white-color);
}

.dot {
  width: 6px;
  height: 6px;
  background-color: var(--fade-white);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  margin-bottom: 0;
  display: block;
}

.solid-hr {
  border: 1px solid var(--fade-white);
}

.career-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
}

.emailcll {
  width: fit-content;
  margin: auto;
}

/* career  */

/* dropdown  */

.drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  list-style: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.drop-down li {
  min-width: 200px;
  /* margin-bottom: 8px; */
  position: relative;
}

.drop-down ul li a.active {
  color: var(--primary-color);
}

.drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2c4964;
  font-weight: 600;
  white-space: nowrap;
  display: block;
}

.drop-down ul a:hover,
.drop-down ul .active>a,
.drop-down ul li:hover>a {
  color: var(--primary-color);
}

/* 
.drop-down>a:after {
    content: "\e313";
    font-family: IcoFont;
    padding-left: 5px;
} */

.drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.drop-down .drop-down>a {
  padding-right: 35px;
}

/* .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
} */

@media (max-width: 1366px) {
  .drop-down .drop-down ul {
    left: -90%;
  }

  .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* dropdown  */

/* service  */
#service {
  background: url("../images/servicebg.png");
  background-repeat: no-repeat;
  height: 850px;
}

/* #servicepage {
   position: static; 
   background: url('../images/nav.png'); 
} */

#servicepage .navbar-nav .nav-link {
  color: var(--black-color);
}

#service .advertisement-details h5 {
  font-size: 35px;
  font-weight: 700;
  color: var(--black-color);
}

#service .advertisement-details h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--fade-black);
  line-height: 30px;
}

#service .advertisement-counter {
  padding: 26px 56px 26px 56px;
  width: 100%;
}

@media (max-width: 768px) {
  #service {
    height: 100%;
    /* background-position: top; */
  }
}

/* #service .row {
  padding-block: 120px;
} */

.tech-logo {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.tech-logo img {
  width: 110px;
}

.step-bg {
  background-color: #f8f8f8;
}

.step-tutorials h1 {
  font-size: 35px;
  font-weight: 700;
  color: var(--primary-color);
}

.step-tutorials p {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--fade-black);
}

.mb-25 {
  margin-bottom: 25px;
}

#serv .reviewer-img {
  position: static !important;
  /* top: -40px; */
}

#serv .review-header p {
  font-size: 18px;
  font-weight: 500;
  line-height: 27.72px;
  color: var(--fade-white);
}

#serv .paragraph h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-color);
}

.mobile-develop-ul {
  padding-left: 0;
  list-style: none;
}

.mobile-develop-ul img {
  /* width: 15px; */
  width: 21px;
}

.mobile-develop-ul li {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-color);
}

.mobile-develop-ul li h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
}

/* .mobile-develop .step-tutorials p {
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
} */

/* service  */

/* blog hero section  */

.blog-hero-section {
  background-image: url("../images/blog/blog-bg.webp");
  height: 800px;
  width: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-heading p {
  width: 900px;
  text-align: center;
}

/* blog hero section  */

/* blog content */

.button-group .button {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 30px;
  background: #f5f5f5;
  font-weight: 600;
  cursor: pointer;
  margin-inline: 15px;
  border: none;
  color: var(--fade-black);
  /* transition: background 0.3s; */
}

.button:active,
.button.is-checked {
  background-color: var(--primary-color);
  outline: none;
  color: var(--white-color);
}

.button-group {
  text-align: center;
  margin-top: 0;
}

.button-group:after {
  content: "";
  display: block;
  clear: both;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.grid article {
  background-color: var(--white-color);
  display: block;
  float: right;
  margin: 1%;
  width: 31.3%;
}

@media (max-width: 1024px) {
  .grid article {
    width: 31.3%;
  }

  .blog-heading p {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .blog-detail h3 {
    font-size: 20px !important;
  }

  .blog-detail p {
    font-size: 16px !important;
  }

  .blog-btn a {
    font-size: 16px !important;
  }

  .blog-btn span {
    font-size: 24px !important;
  }
}

@media (max-width: 768px) {
  .grid article {
    width: 48%;
  }

  .blog-tag p {
    font-size: 14px !important;
  }

  .blog-hero-section {
    height: 600px;
  }
}

@media (max-width: 480px) {
  .grid article {
    margin: 2% 0;
    width: 100%;
  }
}

.blog-tag p {
  font-size: 15px;
  font-weight: 600;
  color: var(--fade-black);
}

.date i {
  color: var(--fade-black);
}

.blog-detail p {
  font-size: 16px;
  font-weight: 500;
  color: var(--fade-black);
}

.blog-detail h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 22px;
}

.blog-btn {
  padding: 10px 12px;
  background: var(--primary-color);
  width: fit-content;
}

.blog-btn a {
  font-weight: 600;
}

.blog-btn span {
  font-size: 24px;
  color: var(--white-color);
}

/* blog content */

/* blog details page */

.blog-details-heading h1 {
  width: 900px;
  text-align: center;
}

/* .blog-text {
  gap: 30px;
} */

.details-content p {
  font-size: 18px;
  color: var(--fade-black);
  margin: 0;
  font-weight: 500;
}

.details-content h3 {
  font-size: 24px;
  color: var(--black-color);
  font-weight: 600;
}

.owl-next img,
.owl-prev img {
  width: 65px;
}

/* contact us page */
.contact-hero {
  background-image: url("../images/contact-bg.webp");
  height: 800px;
  width: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-form {
  padding: 50px;
  box-shadow: 0px 0px 20px 0px rgba(111, 158, 234, 0.2);
  border-radius: 8px;
  gap: 15px;
}

.chat-heading h2 {
  font-size: 30px;
  color: var(--black-color);
}

.chat-heading p {
  font-size: 16px;
  color: var(--fade-black);
  font-weight: 500;
}

form label {
  font-size: 16px;
  color: var(--black-color);
  font-weight: 600;
}


#contact-form .error {
    color: red;
    font-size: 14px;
}

.form-control {
  padding-block: 12px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(27, 29, 32, 0.6);
  background-color: #fafafa;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: #fafafa;
  border: 2px solid #f0f0f0;
  outline: 0;
  box-shadow: none;
}

textarea#message {
  padding-block: 12px;
  padding-left: 20px;
  height: 200px;
  border-radius: 8px;
  color: rgba(27, 29, 32, 0.6);
  background-color: #fafafa;
  border: 2px solid #f0f0f0;
  font-weight: 500;
  outline: 0;
}

.form-btn {
  padding: 10px 20px;
  color: var(--white-color);
  background: var(--btn-gradient);
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
}

.btn:hover {
  color: var(--white-color);
  background: var(--btn-gradient);
  border-color: none;
}

.map {
  padding: 22px;
  box-shadow: 0px 0px 20px 0px rgba(111, 158, 234, 0.2);
  border-radius: 8px;
  height: 500px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.address {
  padding: 30px;
  box-shadow: 0px 0px 20px 0px rgba(111, 158, 234, 0.2);
  border-radius: 8px;
  /* margin-top: 40px; */
  gap: 16px;
  /* height: 40%; */
}

.contact-location {
  gap: 30px;
  padding: 15px 25px;
  background: #fafafa;
  border-radius: 8px;
}

.contact-location img {
  width: 45px;
  height: 45px;
}

.contact-location p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--fade-black);
}

.contact-location a {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--fade-black);
}

@media (max-width: 576px) {
  #img-fluid {
    width: 50px;
  }

  .chat-heading h2 {
    font-size: 30px;
  }
}

/* contact us page */

/* marketing  */
.marketing {
  background-color: var(--primary-color);
}

.marketing-card {
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 15px;
  background-color: var(--white-color);
}

.marketing-card img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  aspect-ratio: 4/3;
}

.marketing-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-color);
}

.marketing-card p:first-child {
  font-size: 16px;
  font-weight: 500;
  line-height: 22.68px;
  color: var(--fade-black);
  margin-bottom: 0;
}

.marketing-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--fade-black);
  margin-bottom: 0;
}

/* marketing  */

/* ai  */
#ai-id h4,
#ar-id h4 {
  font-size: 35px;
  font-weight: 700;
  color: var(--primary-color);
}

#ai-id p,
#ar-id p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--fade-black);
}

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

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

.bg-mine .col-lg-6 {
  padding-left: 0;
}

/* ai  */
/* portfolio page */

.project-details:hover .bage-title {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bage-title {
  position: absolute;
  top: 0%;
  left: 50%;
  opacity: 0;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transform: translateX(-50%);
  width: max-content;
}

.badge-name {
  font-size: 25px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0;
}

.overlay-portfolio {
  position: absolute;
  bottom: -100%;
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%);
  opacity: 0;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

.project-details:hover .overlay-portfolio {
  opacity: 1;
  bottom: 0%;
  border-radius: 16px;
}

/* portfolio page */

.ui-img img {
  width: 490px;
  height: auto;
}

.header-scroll.sticky #servicepage {
  background: url("../images/nav.png");
}

.about-header-img .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.ui-img .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.aboutimg .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.owl-dots {
  display: none;
}

.carousel {
  margin: 0 auto;
  padding: 0 0 20px;
  overflow: hidden;
  display: flex;

  >* {
    flex: 0 0 100%;
  }

  &:hover .group {
    animation-play-state: paused;
  }
}

.group {
  display: flex;
  justify-content: space-around;
  will-change: transform;
  align-items: center;
  animation: scrolling 15s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.carousel1 {
  margin: 0 auto;
  padding: 20px 0 0;
  overflow: hidden;
  display: flex;

  >* {
    flex: 0 0 100%;
  }

  &:hover .group1 {
    animation-play-state: paused;
  }
}

.group1 {
  display: flex;
  justify-content: space-around;
  will-change: transform;
  align-items: center;
  animation: scrolling2 15s linear infinite;
}

@keyframes scrolling2 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

.slide-logo img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.slide-logo img:hover {
  filter: none;
  -webkit-filter: none;
}

.web-card {
  height: 100%;
}

@media (min-width: 1461px) and (max-width: 1685px) {
  .web-card {
    height: 280px;
  }
}

@media (min-width: 1375px) and (max-width: 1461px) {
  .web-card {
    height: 307px;
  }
}

@media (min-width: 1340px) and (max-width: 1375px) {
  .web-card {
    height: 333px;
  }

  .review .owl-carousel .owl-stage-outer {
    padding-top: 40px;
  }
}

@media (max-width: 992px) {
  .web-card {
    height: 307px;
  }

  .web-card .paragraph h5 {
    font-size: 19px !important;
  }
}

