@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Londrina+Outline&family=Londrina+Shadow&family=Londrina+Sketch&family=Londrina+Solid:wght@100;300;400;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a,
button,
.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 100%;
  display: inline-block;
}

.py-btn {
  background: linear-gradient(to bottom, #e74bde 0%, #c803be 70% 100%);
  color: #f2f4fa;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  border: none;
  outline: none;
  transition: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .py-btn {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}
.py-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 75, 222, 0.3);
}

.primary-btn {
  background: #F8F9FA;
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .primary-btn {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}
.primary-btn:hover {
  background: #fff;
  color: #1A1A1A;
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
}

.purple-text {
  background: linear-gradient(90deg, #9030ed, #e71b7c, #9030ed) 0 0/400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: animate-bg 16s linear infinite;
}

.boujee-text {
  background: linear-gradient(90deg, #f45925, #f9b11f, #f45925) 0 0/400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: animate-bg 12s linear infinite;
}

@keyframes animate-bg {
  to {
    background-position: 400% 0;
  }
}
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #navbar {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  #navbar .humburger-menu-logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #navbar #logo {
    margin-bottom: 1.5rem;
  }
}
#navbar .icon {
  display: none;
  color: #242925;
  /* Hides by default for desktop */
}
@media screen and (max-width: 1024px) {
  #navbar .icon {
    display: block;
    font-size: 14px;
    margin-top: 9px;
    transform: scale(1.5);
    cursor: pointer;
    height: 100%;
  }
}
#navbar #nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links {
    display: none;
    flex-direction: column;
    display: flex;
    /* Ensure the nav is still visible in mobile view */
    align-items: flex-start;
    /* Align items to the left */
    width: 100%;
    /* Ensure it takes up the full width */
    display: none;
  }
}
#navbar #nav-links .link {
  display: inline-block;
  text-decoration: none;
  color: #242925;
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: 0.3s;
  border-bottom: transparent 1px solid;
  line-height: 2rem;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .link {
    font-size: 1rem;
    margin-left: 0;
    margin-bottom: 0.8rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  #navbar #nav-links .link:last-child {
    margin-bottom: 1rem;
  }
}
#navbar #nav-links .dropdown {
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .dropdown {
    margin-left: 0;
  }
}
#navbar #nav-links .dropdown::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 100%;
  top: 100%;
  left: 0;
}
#navbar #nav-links .dropdown .dropbtn {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: #242925;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 2rem;
  border-bottom: transparent 1px solid;
  transition: 0.3s;
}
#navbar #nav-links .dropdown .dropbtn:hover {
  color: #00205f;
  border-bottom: #00205f 1px solid;
}
#navbar #nav-links .dropdown .dropbtn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .dropdown .dropbtn {
    font-size: 1rem;
    margin-left: 0;
    width: 100%;
    text-align: left;
  }
}
#navbar #nav-links .dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: -20px;
  min-width: 400px;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1;
  border-radius: 8px;
  padding: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .dropdown .dropdown-content {
    min-width: 100%;
    position: relative;
    left: 0;
    box-shadow: none;
    margin-top: 1rem;
    background-color: #f9f9f9;
  }
}
#navbar #nav-links .dropdown .dropdown-content .service-card {
  padding: 1rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 4px 0;
  color: #242925;
  max-width: calc(100% - 8px);
}
#navbar #nav-links .dropdown .dropdown-content .service-card:hover {
  background-color: #f0f7ff;
  transform: translateX(5px);
  color: #00205f;
}
#navbar #nav-links .dropdown .dropdown-content .service-card:hover i {
  transform: scale(1.1);
}
#navbar #nav-links .dropdown .dropdown-content .service-card i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
#navbar #nav-links .dropdown .dropdown-content .service-card .service-card-content {
  flex-grow: 1;
}
#navbar #nav-links .dropdown .dropdown-content .service-card .service-card-content p {
  margin: 0;
  font-weight: 500;
}
#navbar #nav-links .dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
#navbar #nav-links .dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}
#navbar #nav-links .nav-contact {
  margin-left: 1.5rem;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .nav-contact {
    margin-left: 0;
    margin-top: 1rem;
  }
}

#footer {
  background: linear-gradient(180deg, #13111e 0%, #1e0238 100%);
  color: white;
}
#footer .container {
  max-width: 1400px;
  margin: auto;
  padding: 7rem 2rem 2rem;
}
@media screen and (max-width: 1024px) {
  #footer .container {
    padding: 3rem 2rem 1rem 2rem;
  }
}
#footer .container .footer__row {
  display: grid;
  grid-template-columns: 2.6fr 1fr 1fr 1fr 1fr;
  grid-gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  #footer .container .footer__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row {
    grid-template-columns: 1fr;
  }
}
#footer .container .footer__row .footer__contact .logo {
  width: 150px;
  margin-bottom: 1.6rem;
  opacity: 0.9;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row .footer__contact .logo {
    width: 120px;
  }
}
#footer .container .footer__row .footer__contact p {
  font-weight: 300;
  margin-bottom: 15px;
  opacity: 0.9;
  line-height: 160%;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row .footer__contact p {
    font-size: 1rem;
  }
}
#footer .container .footer__row .footer__contact .footer__contact__mail {
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
  color: #c8c8c8;
  cursor: pointer;
  border-bottom: 1px solid #707070;
  transition: 0.3s;
  color: white;
  border-bottom: 1px solid white;
  transition: all 0.3s;
}
#footer .container .footer__row .footer__contact .footer__contact__mail:hover {
  color: #09e884;
  border-bottom: 1px solid #09e884;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn {
  display: flex;
  justify-content: start;
  align-items: center;
  color: #fff;
  cursor: pointer;
  width: 140px;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn:hover svg {
  width: 1.5rem;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn:hover a {
  color: #fde51c;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn svg {
  transition: 0.3s;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn svg path {
  stroke: #fde51c;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn a {
  margin-left: 0.5rem;
  color: #e6e6e6;
  transition: 0.3s;
}
#footer .container .footer__row .footer__links h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row .footer__links h3 {
    font-size: 1rem;
  }
}
#footer .container .footer__row .footer__links a {
  color: #c8c8c8;
  margin-bottom: 0.6rem;
  font-weight: 300;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row .footer__links a {
    font-size: 1rem;
  }
}
#footer .container .footer__row .footer__links a:hover {
  color: white;
  border-bottom: 1px solid white;
}
#footer .container .locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 30px;
  width: 100%;
}
#footer .container .locations .location {
  width: 90%;
  max-width: 500px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 2rem;
  align-items: center;
}
#footer .container .locations .location img {
  height: 80px;
  width: auto;
  filter: invert(1);
}
#footer .container .locations .location h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
}
#footer .container .locations .location p {
  margin: 5px 0;
  font-size: 0.8rem;
  color: #e6e6e6;
}
#footer .container .locations .location .phone {
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  margin-top: 5px;
}
#footer .container hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0.1px solid rgba(255, 255, 255, 0.1);
}
#footer .container .footer__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .container .footer__social .copyright {
  font-size: 0.9rem;
  font-weight: 100;
  color: white;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__social .copyright {
    font-size: 0.8rem;
  }
}
#footer .container .footer__social #footer__social__links {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#footer .container .footer__social #footer__social__links .social-link {
  display: inline-block;
  width: 3vw;
  height: 3vw;
  border-radius: 30%;
  color: white;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#footer .container .footer__social #footer__social__links .social-link i {
  font-size: 1.3vw;
  transition: 0.2s linear;
}
#footer .container .footer__social #footer__social__links .social-link::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: white;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
#footer .container .footer__social #footer__social__links .social-link:hover i {
  transform: scale(1.3);
  color: black;
}
#footer .container .footer__social #footer__social__links .social-link:hover::before {
  animation: sakarIn 0.7s 1;
  top: -10%;
  left: -10%;
}
@keyframes sakarIn {
  0% {
    left: -110%;
    top: 90%;
  }
  50% {
    left: 10%;
    top: -30%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}

#work {
  position: relative;
  background: linear-gradient(to bottom, #FFFFFF, rgba(231, 75, 222, 0.03) 50%, #FFFFFF);
}
#work::before, #work::after {
  content: "";
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  #work::before, #work::after {
    width: 100%;
    height: 100%;
  }
}
#work::before {
  background: radial-gradient(circle, rgba(231, 75, 222, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
}
#work::after {
  background: radial-gradient(circle, rgba(200, 3, 190, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
}
#work .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
#work .section-header {
  text-align: center;
  margin-bottom: 80px;
}
#work .section-header .title {
  font-size: 48px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  #work .section-header .title {
    font-size: 36px;
  }
}
#work .section-header .subtitle {
  font-size: 20px;
  color: #666;
}
@media (max-width: 768px) {
  #work .section-header .subtitle {
    font-size: 18px;
  }
}
#work .projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  min-height: auto;
  overflow: visible;
}
#work .projects .project {
  opacity: 1;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  #work .projects {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
#work .project {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.03), 0 1px 8px -1px rgba(0, 0, 0, 0.04);
}
#work .project:hover {
  box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.08), 0 1px 8px -1px rgba(0, 0, 0, 0.05);
}
#work .project .project-content {
  padding: 32px;
}
#work .project .project-header {
  margin-bottom: 24px;
}
#work .project .project-header .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}
#work .project .project-header .tags span {
  padding: 6px 12px;
  background: rgba(240, 101, 233, 0.316);
  border-radius: 100px;
  font-size: 14px;
  color: #C803BE;
  font-weight: 500;
}
#work .project .project-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}
#work .project .project-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}
#work .project .project-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid rgba(234, 129, 255, 0.135);
  border-radius: 16px;
}
#work .project .project-image::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
#work .project .project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#work .project .project-image:hover img {
  transform: scale(1.03);
}
#work .project .project-actions {
  display: flex;
  gap: 16px;
}
#work .project .project-actions .btn-primary,
#work .project .project-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  #work .project .project-actions .btn-primary,
  #work .project .project-actions .btn-secondary {
    font-size: 14px;
    padding: 10px 18px;
  }
}
#work .project .project-actions .btn-primary {
  background: linear-gradient(135deg, #E74BDE 0%, #C803BE 100%);
  color: white;
  white-space: nowrap;
}
#work .project .project-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(200, 3, 190, 0.3);
}
#work .project .project-actions .btn-primary svg {
  transition: transform 0.3s ease;
}
#work .project .project-actions .btn-primary:hover svg {
  transform: translate(2px, -2px);
}
#work .project .project-actions .btn-secondary {
  white-space: nowrap;
  background: #F8F9FA;
  color: #666;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
#work .project .project-actions .btn-secondary:hover {
  background: #fff;
  color: #1A1A1A;
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
}

#contact {
  background: #e9f2ff;
}
#contact .container {
  max-width: 1000px;
  margin: auto;
  padding: 6rem 2rem 8rem 2rem;
}
@media screen and (max-width: 1024px) {
  #contact .container {
    padding: 4rem 1.5rem 9rem 1.5rem;
  }
}
#contact .container h1 {
  font-size: 5rem;
  line-height: 106%;
  max-width: 800px;
  margin-bottom: 2rem;
  font-weight: 800;
  color: #343434;
}
@media screen and (max-width: 1024px) {
  #contact .container h1 {
    margin-top: 3rem;
    font-size: 2rem;
    text-align: center;
    line-height: 120%;
  }
}
#contact .container .contact__from__container form {
  position: relative;
}
#contact .container .contact__from__container form label {
  font-size: 1.5rem;
  color: #757575;
  margin-bottom: 1rem;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  #contact .container .contact__from__container form label {
    font-size: 1rem;
  }
}
#contact .container .contact__from__container form input {
  display: inline-block;
  width: 100%;
  height: 4rem;
  border: none;
  border-bottom: 1px solid #6e6e6e;
  background: transparent;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #505050;
  outline: none;
}
@media screen and (max-width: 1024px) {
  #contact .container .contact__from__container form input {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
#contact .container .contact__from__container form input:focus {
  border-bottom: 1px solid #000;
}
#contact .container .contact__from__container form .dauble__input {
  display: flex;
}
#contact .container .contact__from__container form .dauble__input #company__name {
  margin-right: 3rem;
}
#contact .container .contact__from__container form .service__budget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  margin-bottom: 3rem;
}
#contact .container .contact__from__container form .service__budget select {
  width: 100%;
  height: 4rem;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1.5rem;
  border: 1px solid #6e6e6e;
  outline: none;
  cursor: pointer;
  padding-left: 1rem;
}
@media screen and (max-width: 1024px) {
  #contact .container .contact__from__container form .service__budget select {
    font-size: 1rem;
  }
}
#contact .container .contact__from__container form .service__budget select:focus {
  border: 1px solid #000;
}
#contact .container .contact__from__container form textarea {
  width: 100%;
  background: 0 0;
  border: 1;
  border-bottom: 0.5px solid #505050;
  color: #505050;
  font-size: 1.5rem;
  outline: none;
  padding: 1.5rem;
}
@media screen and (max-width: 1024px) {
  #contact .container .contact__from__container form textarea {
    font-size: 1rem;
  }
}
#contact .container .contact__from__container .others {
  margin-top: 2rem;
  padding: 0.8rem 3.5rem;
}
#contact #contact__title {
  font-size: 4rem;
  line-height: 130%;
  color: #000000;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  #contact #contact__title {
    font-size: 3rem;
    line-height: 130%;
  }
}
#contact .contact__section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  #contact .contact__section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#contact .direct__contact {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
  height: -moz-fit-content;
  height: fit-content;
}
#contact .direct__contact .profile__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid #f0f0f0;
}
#contact .direct__contact h3 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
#contact .direct__contact p {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
#contact .direct__contact .contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#contact .direct__contact .contact__buttons a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 100px;
}
#contact .direct__contact .contact__buttons a img {
  width: 24px;
  height: 24px;
}
#contact .direct__contact .contact__buttons .whatsapp__btn {
  background: #25D366;
  color: white;
}
#contact .direct__contact .contact__buttons .whatsapp__btn:hover {
  background: #1fba58;
}
#contact .direct__contact .contact__buttons .meeting__btn {
  background: #000;
  color: white;
}
#contact .direct__contact .contact__buttons .meeting__btn:hover {
  background: rgb(1, 53, 0);
}
#contact .direct__contact .contact__buttons .ask__questions__btn {
  background: #eeffee;
  color: #4CAF50;
  border-radius: 100px;
  padding: 1rem 2rem;
  justify-content: center;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
#contact .direct__contact .contact__buttons .ask__questions__btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
#contact .direct__contact .contact__buttons .ask__questions__btn svg {
  width: 24px;
  height: 24px;
}

#faq {
  background: #ffffff;
  background: url("../img/bg-gradient.svg") center center/cover;
}
#faq .container {
  max-width: 1000px;
  margin: auto;
  padding: 9rem 2rem;
}
@media screen and (max-width: 1024px) {
  #faq .container {
    padding: 4rem 1.5rem 4rem 1.5rem;
  }
}
#faq #faq__title {
  font-size: 3.3rem;
  line-height: 100%;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  #faq #faq__title {
    font-size: 2rem;
  }
}
#faq #faq__title p {
  font-weight: 200;
  font-style: italic;
}
#faq #faq__item__container {
  margin-top: 4rem;
}
#faq #faq__item__container .faq__item {
  border-bottom: 1px solid #eaeaea;
}
#faq #faq__item__container .faq__question {
  width: 100%;
  text-align: left;
  padding: 15px;
  border: none;
  background: none;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #faq #faq__item__container .faq__question {
    font-size: 0.9rem;
  }
}
#faq #faq__item__container .faq__question::after {
  content: "▾";
  font-size: 1.4rem;
  transition: transform 0.3s;
  background-color: #e4ebee;
  height: 2.4rem;
  width: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  #faq #faq__item__container .faq__question::after {
    font-size: 1.1rem;
    background-color: unset;
  }
}
#faq #faq__item__container .faq__answer {
  margin-right: 3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-bottom: 1rem;
  opacity: 0.7;
  font-size: 1.3rem;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  #faq #faq__item__container .faq__answer {
    font-size: 1rem;
  }
}
#faq #faq__item__container .faq__answer p {
  margin: 0;
  padding: 0 15px 15px;
}
#faq #faq__item__container .faq__answer ul,
#faq #faq__item__container .faq__answer ol {
  margin: 0;
  padding: 0 15px 15px;
  padding-left: 2.5rem;
}
#faq #faq__item__container .faq__item.active .faq__question::after {
  transform: rotate(180deg);
}

#testimonials {
  background: url("../img/ab-bg.webp") center center/cover;
}
#testimonials .container {
  max-width: 1400px;
  margin: auto;
  padding: 5rem 2rem;
}
@media screen and (max-width: 1024px) {
  #testimonials .container {
    padding: 4rem 1.5rem 4rem 1.5rem;
  }
}
#testimonials #feedback__section__title h1 {
  font-size: 3.3rem;
  color: #292929;
  margin-bottom: 7rem;
}
@media screen and (max-width: 1024px) {
  #testimonials #feedback__section__title h1 {
    font-size: 2rem;
  }
}
#testimonials #feedback__from__all {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #testimonials #feedback__from__all {
    grid-template-columns: 1fr;
  }
}
#testimonials #feedback__from__all .feedback__count {
  position: absolute;
  font-size: 1rem;
  text-transform: uppercase;
  top: -6rem;
  right: 0rem;
  z-index: 1;
  padding: 0.8rem 1.4rem;
  background-color: #7800b8;
  border-radius: 15px;
  color: white;
  transform: rotate(5deg);
}
@media screen and (max-width: 1024px) {
  #testimonials #feedback__from__all .feedback__count {
    font-size: 0.9rem;
  }
}
#testimonials #feedback__from__all .feedback__count__users {
  background-color: #009cb1 !important;
}
#testimonials #feedback__from__all .feedback__from__all__title {
  position: absolute;
  font-size: 15rem;
  text-transform: uppercase;
  top: -11rem;
  font-weight: 900;
  -webkit-text-stroke: 0.1rem rgb(157, 101, 101);
  z-index: 1;
  color: transparent;
  font-family: "Poppins";
}
@media screen and (max-width: 1024px) {
  #testimonials #feedback__from__all .feedback__from__all__title {
    font-size: 2rem;
    top: -4.3rem;
  }
}
#testimonials #feedback__from__all #feedback__card.video-card {
  grid-column: span 2;
}
@media screen and (max-width: 1024px) {
  #testimonials #feedback__from__all #feedback__card.video-card {
    grid-column: span 1;
  }
}
#testimonials .users__feedback {
  margin-top: 10rem;
}
#testimonials .users__feedback .feedback__from__all__title {
  -webkit-text-stroke: 0.1rem rgb(101, 105, 157) !important;
}
#testimonials #feedback__card {
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  z-index: 3;
}
#testimonials #feedback__card .feedback__card__person {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
#testimonials #feedback__card .feedback__card__person__avatar {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background-color: #00dd79;
  margin-right: 0.7rem;
  overflow: hidden;
}
#testimonials #feedback__card .feedback__card__person__avatar img {
  width: 100%;
}
#testimonials #feedback__card .feedback__card__person__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 1024px) {
  #testimonials #feedback__card .feedback__card__person__name {
    font-size: 1rem;
  }
}
#testimonials #feedback__card .feedback__card__person__title {
  font-size: 1rem;
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  #testimonials #feedback__card .feedback__card__person__title {
    font-size: 0.9rem;
  }
}
#testimonials #feedback__card .feedback__card__info .line {
  height: 2px;
  width: 3rem;
  border-radius: 30px;
  background: #686868;
  display: inline-block;
  opacity: 1;
  animation: fadeAnimation 1s ease-in-out infinite;
}
#testimonials #feedback__card .feedback__card__info p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 140%;
  color: #2d2d2d;
}
@media screen and (max-width: 1024px) {
  #testimonials #feedback__card .feedback__card__info p {
    font-size: 1rem;
  }
}
@keyframes fadeAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#testimonials #feedback__card .feedback__card__comma {
  display: none;
}
#testimonials #feedback__card .feedback__card__comma svg {
  width: 4rem;
  opacity: 0.3;
  transform: rotateX(180deg) rotateY(180deg);
  margin-top: 1rem;
}

#home {
  height: 100vh;
  background: #ffffff;
  background: url("../img/bg-gradient.svg") center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #home {
    height: 100%;
  }
}
#home .home-container {
  max-width: 1400px;
  margin: auto;
  padding: 2rem;
  height: 100%;
}
#home .home-container #header {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #home .home-container #header {
    flex-direction: column;
  }
}
#home .home-container #header .header-container h1 {
  font-size: 5rem;
  line-height: 106%;
  max-width: 700px;
  margin-bottom: 2rem;
  font-weight: 800;
  color: #343434;
}
@media screen and (max-width: 1024px) {
  #home .home-container #header .header-container h1 {
    margin-top: 2rem;
    font-size: 2rem;
    text-align: center;
    line-height: 120%;
  }
}
#home .home-container #header .header-container h2 {
  color: #101010;
  max-width: 750px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  #home .home-container #header .header-container h2 {
    font-size: 1rem;
    text-align: center;
  }
}
#home .home-container #header .header-buttons {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  #home .home-container #header .header-buttons {
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  #home .home-container #header .header-visualizer {
    padding: 4rem 0;
  }
}
#home .home-container #header .header-visualizer .ellipses-container {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #home .home-container #header .header-visualizer .ellipses-container {
    width: 200px;
    height: 200px;
  }
}
#home .home-container #header .header-visualizer .ellipses {
  border-radius: 50%;
  position: absolute;
  top: 0;
  border-style: solid;
}
#home .home-container #header .header-visualizer .ellipses__outer--thin {
  width: 100%;
  height: 100%;
  border-width: 1px;
  border-color: rgba(9, 56, 62, 0.1);
  animation: ellipsesOrbit 15s ease-in-out infinite;
}
#home .home-container #header .header-visualizer .ellipses__outer--thin:after {
  content: "";
  background-image: url("https://s29.postimg.org/5h0r4ftkn/ellipses_dial.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #00dd79;
  position: absolute;
  opacity: 1;
  display: none;
}
#home .home-container #header .header-visualizer .ellipses__outer--thick {
  width: 100%;
  height: 100%;
  border-color: #09383e transparent;
  border-width: 2px;
  transform: rotate(-45deg);
  animation: ellipsesRotate 15s ease-in-out infinite;
}
#home .home-container #header .header-visualizer .ellipses__orbit {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 2px;
  border-color: #09383e;
  top: 0.7rem;
  right: 6.7rem;
}
@media screen and (max-width: 1024px) {
  #home .home-container #header .header-visualizer .ellipses__orbit {
    top: -1rem;
  }
}
#home .home-container #header .header-visualizer .ellipses__orbit:before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  display: inline-block;
  background-color: #09383e;
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes ellipsesRotate {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes linierRotate {
  0% {
    transform: translateX(-50%) translateY(-50%) rotate(0);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(-360deg);
  }
}
@keyframes ellipsesOrbit {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

#work {
  margin-top: 5rem;
}

#what__we__capable {
  background-image: url("../img/bg-grid.svg");
  background-color: #fcfefd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#what__we__capable .container {
  max-width: 1400px;
  padding: 9rem 2rem;
  height: 100%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  #what__we__capable .container {
    padding: 2rem 1rem;
  }
}
#what__we__capable .container h1 {
  font-size: 3.3rem;
  color: #282828;
  margin: auto;
  max-width: 900px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  #what__we__capable .container h1 {
    font-size: 1.8rem;
  }
}
#what__we__capable .container .secondary-title {
  margin-top: 3rem;
}
@media screen and (max-width: 600px) {
  #what__we__capable .container .secondary-title {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
#what__we__capable .container .what__we__capable__about {
  position: relative;
}
#what__we__capable .container .what__we__capable__about .main-title {
  margin-bottom: 5rem;
}
#what__we__capable .container .what__we__capable__about .main-title::after {
  content: "ABOUT US";
  position: absolute;
  left: -40%;
  top: -150%;
  transform: translateX(50%);
  font-size: 8rem;
  text-transform: uppercase;
  font-weight: 900;
  -webkit-text-stroke: 0.1rem rgb(215, 215, 215);
  z-index: -1;
  color: transparent;
  font-family: "Poppins";
}
@media screen and (max-width: 1024px) {
  #what__we__capable .container .what__we__capable__about .main-title::after {
    font-size: 2rem;
    position: unset;
  }
}
#what__we__capable .container .what__we__capable__about p {
  font-size: 1.5rem;
  max-width: 900px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 3rem;
  color: #393939;
}
@media screen and (max-width: 1024px) {
  #what__we__capable .container .what__we__capable__about p {
    font-size: 1rem;
  }
}
#what__we__capable .container .what__we__capable__about .p {
  margin: auto;
  position: relative;
  z-index: 9;
}
#what__we__capable .container .what__we__capable__about span {
  font-weight: 600;
}

#services {
  background: linear-gradient(180deg, #fff 0%, rgba(120, 0, 184, 0.03) 50%, #fff 100%);
  padding: 6rem 0;
}
#services .container {
  max-width: 1400px;
  padding: 0 2rem;
  margin: auto;
}
#services .container .section-title {
  font-size: 3.3rem;
  color: #343434;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
#services .container .section-title .services {
  position: relative;
}
#services .container .section-title .services::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7800b8, #00b8a9);
  border-radius: 2px;
}
@media screen and (max-width: 1024px) {
  #services .container .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
#services .container .services-grid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  #services .container .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #services .container .services-grid {
    grid-template-columns: 1fr;
  }
}
#services .container .service {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eee;
  overflow: hidden;
}
#services .container .service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
#services .container .service:hover .abstract-shape {
  transform: rotate(30deg) scale(1.1);
}
#services .container .service:hover .service-icon {
  transform: scale(1.05);
}
#services .container .service .service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
#services .container .service .service-icon {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
#services .container .service .service-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#services .container .service h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #282828;
  position: relative;
  padding-left: 1rem;
  font-weight: 700;
}
#services .container .service h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: #7800b8;
  border-radius: 2px;
}
@media screen and (max-width: 1024px) {
  #services .container .service h3 {
    font-size: 1.4rem;
  }
}
#services .container .service p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}
#services .container .service .service-features {
  list-style: none;
  padding: 0;
}
#services .container .service .service-features li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}
#services .container .service .service-features li:before {
  content: "•";
  color: #7800b8;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}
#services .container .service .abstract-shape {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -20px;
  right: -20px;
  transition: transform 0.3s ease;
  opacity: 0.1;
}
#services .container .service .shape-1 {
  background: radial-gradient(circle at 30% 30%, #7800b8 0%, transparent 70%);
}
#services .container .service .shape-2 {
  background: radial-gradient(circle at 70% 30%, #00b8a9 0%, transparent 70%);
}
#services .container .service .shape-3 {
  background: radial-gradient(circle at 30% 70%, #ff6b6b 0%, transparent 70%);
}
#services .container .service .shape-4 {
  background: radial-gradient(circle at 70% 70%, #ffd93d 0%, transparent 70%);
}
#services .container .service .shape-5 {
  background: radial-gradient(circle at 50% 50%, #4a90e2 0%, transparent 70%);
}
#services .container .service .shape-6 {
  background: radial-gradient(circle at 40% 60%, #50c878 0%, transparent 70%);
}
#services .container .see-all-wrapper {
  margin-top: 2rem;
  text-align: center;
}
#services .container .see-all-wrapper .see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #7800b8;
  border: 2px solid #7800b8;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(120, 0, 184, 0.1);
}
#services .container .see-all-wrapper .see-all-btn svg {
  transition: transform 0.3s ease;
}
#services .container .see-all-wrapper .see-all-btn:hover {
  background: #7800b8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(120, 0, 184, 0.2);
}
#services .container .see-all-wrapper .see-all-btn:hover svg {
  transform: translateX(4px);
}
#services .container .service {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eee;
  overflow: hidden;
}
#services .container .service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
#services .container .service:hover .abstract-shape {
  transform: rotate(30deg) scale(1.1);
}
#services .container .service:hover .service-icon {
  transform: scale(1.05);
}
#services .container .service .service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
#services .container .service .service-icon {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
#services .container .service .service-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#services .container .service h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #282828;
  position: relative;
  padding-left: 1rem;
  font-weight: 700;
}
#services .container .service h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: #7800b8;
  border-radius: 2px;
}
@media screen and (max-width: 1024px) {
  #services .container .service h3 {
    font-size: 1.4rem;
  }
}
#services .container .service p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}
#services .container .service .service-features {
  list-style: none;
  padding: 0;
}
#services .container .service .service-features li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}
#services .container .service .service-features li:before {
  content: "•";
  color: #7800b8;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}
#services .container .service .abstract-shape {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -20px;
  right: -20px;
  transition: transform 0.3s ease;
  opacity: 0.1;
}
#services .container .service .shape-1 {
  background: radial-gradient(circle at 30% 30%, #7800b8 0%, transparent 70%);
}
#services .container .service .shape-2 {
  background: radial-gradient(circle at 70% 30%, #00b8a9 0%, transparent 70%);
}
#services .container .service .shape-3 {
  background: radial-gradient(circle at 30% 70%, #ff6b6b 0%, transparent 70%);
}
#services .container .service .shape-4 {
  background: radial-gradient(circle at 70% 70%, #ffd93d 0%, transparent 70%);
}

.highlight__numbers {
  background-image: url("../img/bg-grid.svg");
  background-color: #fcfefd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.highlight__numbers .container {
  max-width: 1400px;
  padding: 4rem 2rem;
  height: 100%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .highlight__numbers .container {
    padding: 2rem 1rem;
  }
}
.highlight__numbers h1 {
  font-size: 3.3rem;
  color: #282828;
  margin: auto;
  max-width: 900px;
  position: relative;
  z-index: 5;
  padding-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .highlight__numbers h1 {
    font-size: 1.8rem;
  }
}
.highlight__numbers .what__we__capable__highlight__numbers {
  margin-bottom: 2rem;
  grid-gap: 2rem;
  max-width: 900px;
  margin: auto;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "one tow three" "four five three";
}
@media screen and (max-width: 1024px) {
  .highlight__numbers .what__we__capable__highlight__numbers {
    display: unset;
  }
}
.highlight__numbers .what__we__capable__highlight__numbers .one {
  grid-area: one;
  background: #f9eaf5;
}
.highlight__numbers .what__we__capable__highlight__numbers .tow {
  grid-area: tow;
  background: #e9f2ff;
}
.highlight__numbers .what__we__capable__highlight__numbers .four {
  grid-area: four;
  background: #ffffd6;
}
.highlight__numbers .what__we__capable__highlight__numbers .five {
  grid-area: five;
  background: #fff5e6;
}
.highlight__numbers .what__we__capable__highlight__numbers .three {
  grid-area: three;
  background: #e6fdff;
}
@media screen and (max-width: 1024px) {
  .highlight__numbers .what__we__capable__highlight__numbers .one,
  .highlight__numbers .what__we__capable__highlight__numbers .tow,
  .highlight__numbers .what__we__capable__highlight__numbers .three,
  .highlight__numbers .what__we__capable__highlight__numbers .four {
    margin-bottom: 1.5rem;
  }
}
.highlight__numbers .what__we__capable__highlight__numbers div {
  border-radius: 30px;
  border: #bbbbbb 1px solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 1.5rem 2rem;
}
.highlight__numbers .what__we__capable__highlight__numbers div h3 {
  font-size: 4rem;
  font-weight: 600;
  color: #282828;
  margin-top: 3rem;
}
@media screen and (max-width: 1024px) {
  .highlight__numbers .what__we__capable__highlight__numbers div h3 {
    font-size: 1.8rem;
  }
}
.highlight__numbers .what__we__capable__highlight__numbers div p {
  font-size: 1.1rem;
  color: #606060;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .highlight__numbers .what__we__capable__highlight__numbers div p {
    font-size: 1rem;
  }
}

.product-style {
  margin-bottom: 5rem;
}/*# sourceMappingURL=index.css.map */