@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
  text-decoration: none;
  list-style: none;
  letter-spacing: 0.03rem;
}

html {
  font-size: 62.5%;
  font-family: "Sen", sans-serif;
}
@media (max-width: 62em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 48em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 36em) {
  html {
    font-size: 37.5%;
  }
}

body {
  background-color: #000;
  color: #fff;
}

a {
  color: #fff;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flex {
  display: flex;
}

.overallPadding {
  padding: 0 5rem;
}

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

.margin-top-small {
  margin-top: 1rem;
}

.margin-top-medium {
  margin-top: 4rem;
}

.margin-top-large {
  margin-top: 8rem;
}

.margin-bottom-small {
  margin-bottom: 2.5rem;
}

.margin-bottom-medium {
  margin-bottom: 4rem;
}

.margin-bottom-large {
  margin-bottom: 8rem;
}

.btn-primary {
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 500;
  border: 2.5px solid #66fcf1;
  color: #66fcf1;
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
}
.btn-primary:hover {
  color: #000;
  background: #66fcf1;
  border: 2.5px solid #66fcf1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 75em) {
  .btn-primary {
    padding: 13px 23px;
  }
}

.btn-secondary {
  outline: 0;
  border: 0;
  padding: 1.7rem 2.5rem;
  background: #66fcf1;
  color: #000;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.07rem;
  cursor: pointer;
  font-family: "Sen", sans-serif;
}
.btn-secondary:hover {
  background: #f78550;
}

header {
  padding: 20px;
}
header .navigation {
  font-size: 16px;
  font-weight: 600;
  display: grid;
  grid-template-columns: 30% 70%;
  justify-content: space-between;
}
@media (max-width: 75em) {
  header .navigation {
    grid-template-columns: 100%;
  }
}
header .navigation__logo {
  display: flex;
  align-items: center;
  line-height: 60px;
}
header .navigation__logo--img {
  height: 37.5px;
  margin-right: 10px;
}
header .navigation__logo--title {
  font-size: 23px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
header .navigation__logo--title::before {
  content: "";
  position: absolute;
  bottom: 1.3rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #66fcf1;
  transition: width 0.35s ease-in-out;
}
header .navigation__logo--title:hover {
  opacity: 1;
  color: #66fcf1;
}
header .navigation__logo--title:hover::before {
  width: 100%;
}
header .navigation__bar {
  display: grid;
  grid-template-columns: 65% 32%;
  justify-content: space-between;
}
@media (max-width: 62em) {
  header .navigation__bar {
    grid-template-columns: 70%;
    gap: 34px;
  }
}
header .navigation__bar--mainlist {
  display: flex;
  align-items: center;
  line-height: 60px;
  justify-content: space-between;
}
@media (max-width: 62em) {
  header .navigation__bar--mainlist {
    gap: 34px;
    justify-content: flex-start;
  }
}
header .navigation__bar--mainlist-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
header .navigation__bar--mainlist .dropdown {
  position: relative;
}
header .navigation__bar--mainlist .dropdown:hover .sub-menu {
  display: block;
  transform: translateY(0);
}
header .navigation__bar--mainlist .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(128, 128, 128, 0.15);
  min-width: 20rem;
  z-index: 1;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}
header .navigation__bar--mainlist .dropdown-items {
  display: flex;
  justify-self: flex-start;
  padding-left: 1.5rem;
}
header .navigation__bar--mainlist .dropdown-items:not(:last-child) {
  border-bottom: 1px solid gray;
}
header .navigation__bar--secondlist {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 62em) {
  header .navigation__bar--secondlist {
    width: 60%;
    gap: 30px;
    justify-content: flex-start;
  }
}
header .navigation__bar--secondlist-item .user {
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all 0.5s ease;
}
header .navigation__bar--secondlist-item .user:hover {
  color: #66fcf1;
}
header .navigation__bar--secondlist-item .user .color-blue {
  color: #66fcf1;
}
header .navigation__bar--secondlist-item .cart {
  transition: all 0.3s ease;
}
header .navigation__bar--secondlist-item .cart:hover {
  opacity: 0.6;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__carousel {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s ease-in-out;
  position: relative;
}
.hero__carousel--item {
  min-width: 100%;
  position: relative;
}
.hero__carousel--item-text {
  position: absolute;
  top: 20%;
  color: white;
  width: 55%;
}
.hero__carousel--item-text .heading-paragraph {
  color: #66fcf1;
  font-size: 3rem;
  font-weight: 500;
  text-transform: capitalize;
}
.hero__carousel--item-text .text-paragraph {
  font-size: 1.76rem;
  font-weight: 500;
  line-height: 30px;
}
.hero__carousel--item-text .hero-btns {
  align-items: center;
}
.hero__carousel--item-text .hero-btns .btn-play {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.hero__carousel--item-text .hero-btns .btn-play__div {
  position: relative;
  margin-left: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
}
.hero__carousel--item-text .hero-btns .btn-play__div .icon-play {
  color: #66fcf1;
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Sen", sans-serif;
  outline: 4px;
  border: 1px solid #66fcf1;
  border-radius: 50%;
}
.hero__carousel--item-text .hero-btns .btn-play__div::before, .hero__carousel--item-text .hero-btns .btn-play__div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 50%;
}
.hero__carousel--item-text .hero-btns .btn-play__div::after {
  background: hsla(0, 0%, 100%, 0.749);
  z-index: 1;
  animation: pulseAnimation 1s infinite;
}
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}
.hero__carousel--item-text .hero-btns .watch-intro {
  margin-left: 3.5rem;
  font-size: 2rem;
  font-weight: 700;
}
.hero__carousel--item-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero .hero__prev__btn,
.hero .hero__next__btn {
  border: none;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 8;
  color: #66fcf1;
  top: 50%;
  background: transparent;
  border: 3px solid #66fcf1;
  padding: 1rem;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
}
.hero .hero__prev__btn:hover,
.hero .hero__next__btn:hover {
  background-color: #66fcf1;
  color: #000;
  transition: all 0.5s ease-in-out;
}
.hero .hero__prev__btn {
  left: -20rem;
  transform: rotate(180deg);
  transition: left 0.5s ease;
}
.hero .hero__next__btn {
  right: -20rem;
  transition: right 0.5s ease;
}
.hero:hover .hero__prev__btn {
  left: 10rem;
}
.hero:hover .hero__next__btn {
  right: 10rem;
}

.heading-primary {
  font-size: 7rem;
  opacity: 0.9;
}

.whyUs {
  height: 100%;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr;
  gap: 2rem;
  letter-spacing: normal;
  background-color: #0b0c10;
}
@media (max-width: 48em) {
  .whyUs {
    grid-template-columns: 100%;
  }
}
.whyUs__mainTopic {
  border: 2px solid #66fcf1;
  height: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whyUs__mainTopic--heading {
  text-transform: capitalize;
  font-size: 4rem;
  margin-bottom: 3rem;
}
.whyUs__mainTopic--text {
  text-transform: capitalize;
  font-size: 1.76rem;
  line-height: 2.5rem;
}
.whyUs__mainTopic--btn {
  display: inline-block;
  margin-top: 2.5rem;
  width: fit-content;
}
.whyUs__otherTopic {
  padding: 3rem 0 3rem 3rem;
  gap: 1.5rem;
}
.whyUs__otherTopic--cards {
  display: flex;
  gap: 1rem;
}
@media (max-width: 48em) {
  .whyUs__otherTopic--cards {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
  }
}
.whyUs__otherTopic--cards-item {
  padding: 1rem 0;
}
.whyUs__otherTopic--cards-item__icon {
  margin-right: 2.5em;
  margin-top: 3px;
}
.whyUs__otherTopic--cards-item__icon img {
  height: 35px;
}
@media (max-width: 48em) {
  .whyUs__otherTopic--cards-item__icon img {
    height: 50px;
  }
}
.whyUs__otherTopic--cards-item__info--heading {
  font-size: 2.8rem;
  margin-bottom: 1.4rem;
  position: relative;
  display: inline-block;
}
.whyUs__otherTopic--cards-item__info--heading::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #66fcf1;
  transition: width 0.35s ease-in-out;
}
.whyUs__otherTopic--cards-item__info--heading:hover {
  opacity: 1;
  color: #66fcf1;
}
.whyUs__otherTopic--cards-item__info--heading:hover::before {
  width: 100%;
}
.whyUs__otherTopic--cards-item__info--text {
  text-transform: capitalize;
  font-size: 1.76rem;
  line-height: 2.5rem;
}

.experience {
  padding-top: 10vh;
}
.experience__heading--fontSize {
  font-size: 6rem;
}
.experience__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 48em) {
  .experience__content {
    grid-template-columns: 100%;
  }
}
.experience__content__left__textTop {
  font-size: 1.76rem;
  line-height: 3rem;
}
.experience__content__left__imageCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 36em) {
  .experience__content__left__imageCards {
    grid-template-columns: 100%;
  }
}
.experience__content__left__imageCards__container {
  height: 23rem;
  overflow: hidden;
}
@media (max-width: 36em) {
  .experience__content__left__imageCards__container {
    height: 40rem;
  }
}
.experience__content__left__imageCards__container__image {
  height: 23rem;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 36em) {
  .experience__content__left__imageCards__container__image {
    height: 40rem;
  }
}
.experience__content__left__imageCards__container__image:hover {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
.experience__content__left__stats {
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 36em) {
  .experience__content__left__stats {
    grid-template-columns: 100%;
    row-gap: 8rem;
  }
}
.experience__content__left__stats__item__score {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.experience__content__left__stats__item__score span {
  color: #66fcf1;
}
.experience__content__left__stats__item__title {
  font-size: 1.76rem;
  font-weight: 500;
}
.experience__content__right {
  width: 100%;
  display: flex;
  justify-content: center;
}

.headerElement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.headerElement__title__small {
  position: relative;
  display: inline-block;
  padding-left: 6rem;
  color: #66fcf1;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1.76rem;
}
.headerElement__title__small::before {
  content: "";
  position: absolute;
  left: 0rem;
  top: 50%;
  width: 5rem;
  height: 3px;
  background-color: #66fcf1;
  transform: translateY(-50%);
}
.headerElement__title__big--fontSize {
  font-size: 4rem;
  text-transform: capitalize;
}
.headerElement__btn--inline {
  display: inline-block;
  box-sizing: border-box;
}

.services {
  background: #0b0c10;
  padding-top: 10vh;
  padding-bottom: 10vh;
  overflow: hidden;
}
.services__cardContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
@media (max-width: 62em) {
  .services__cardContainer {
    grid-template-columns: 100% 100% 100% 100%;
  }
}
.services__cardContainer:hover .previous__btn__secondary {
  left: 5rem;
}
.services__cardContainer:hover .next__btn__secondary {
  right: 5rem;
}
.services__cardContainer__card {
  position: relative;
  height: 43rem;
  overflow: hidden;
  transition: filter 0.3s ease-in-out;
}
.services__cardContainer__card:hover .services__cardContainer__card__image {
  transform: scale(1.1);
  filter: none;
  transition: all 0.5s ease-in-out;
}
.services__cardContainer__card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: brightness(100%) contrast(100%) saturate(0) blur(0) hue-rotate(0deg);
  transition: all 0.5s ease-in-out;
}
.services__cardContainer__card__info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  text-align: center;
}
.services__cardContainer__card__info__name {
  color: #66fcf1;
  font-size: 1.76rem;
  padding-bottom: 1rem;
  font-weight: 500;
}
.services__cardContainer__card__info__title {
  font-size: 2.8rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.services__cardContainer__card__info__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #66fcf1;
  transition: width 0.35s ease-in-out;
}
.services__cardContainer__card__info__title:hover {
  opacity: 1;
  color: #66fcf1;
}
.services__cardContainer__card__info__title:hover::before {
  width: 100%;
}

.previous__btn__secondary,
.next__btn__secondary {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 0;
  background-color: #66fcf1;
  cursor: pointer;
  top: 43%;
}

.previous__btn__secondary {
  transform: rotate(180deg);
  left: -20rem;
  transition: left 0.7s ease;
}

.next__btn__secondary {
  right: -20rem;
  transition: right 0.7s ease;
}

.testimonials__container {
  position: relative;
  overflow: hidden;
}
.testimonials__container:hover .btn__prev__testimonials {
  left: 5rem;
}
.testimonials__container:hover .btn__next__testimonials {
  right: 5rem;
}
.testimonials__container__item {
  display: grid;
  grid-template-columns: 20% 74%;
  justify-content: space-around;
  border: 1.5px gray solid;
  border-radius: 20px;
  padding: 8rem 3%;
}
@media (max-width: 48em) {
  .testimonials__container__item {
    grid-template-columns: 100%;
    padding-left: 5rem;
  }
}
.testimonials__container__item__userInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials__container__item__userInfo__image {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.testimonials__container__item__userInfo__name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.5rem;
}
.testimonials__container__item__userInfo__position {
  color: #66fcf1;
  font-size: 1.76rem;
  font-weight: 600;
}
.testimonials__container__item__review {
  position: relative;
  padding: 0 1rem;
}
.testimonials__container__item__review::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2.5rem;
  width: 1px;
  height: 100%;
  background-color: gray;
}
.testimonials__container__item__review__text {
  font-size: 2.8rem;
  line-height: 4.5rem;
  font-weight: 400;
}
.testimonials__container__item__review__text .quote {
  font-style: italic;
}
.testimonials__container .btn__prev__testimonials,
.testimonials__container .btn__next__testimonials {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 0;
  background-color: #66fcf1;
  cursor: pointer;
  top: 43%;
}
.testimonials__container .btn__prev__testimonials {
  transform: rotate(180deg);
  left: -20rem;
  transition: left 0.6s ease;
}
.testimonials__container .btn__next__testimonials {
  right: -20rem;
  transition: right 0.7s ease;
}

.articles {
  background-color: #0b0c10;
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.articles__content {
  display: grid;
  border: 1px gray solid;
  grid-template-columns: 63% 35%;
  padding: 3em;
  border-radius: 20px;
  justify-content: space-between;
}
@media (max-width: 48em) {
  .articles__content {
    grid-template-columns: 100%;
    row-gap: 4rem;
  }
}
.articles__content__featured {
  height: 70rem;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 48em) {
  .articles__content__featured {
    padding-bottom: 4rem;
  }
}
.articles__content__featured:hover .articles__content__featured__image {
  transform: scale(1.2);
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}
.articles__content__featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 9;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.articles__content__featured__image {
  border-radius: 20px;
  width: 100%;
  height: 70rem;
  object-fit: cover;
}
.articles__content__featured__info {
  padding: 4.5rem;
  bottom: 0;
  z-index: 10;
}
.articles__content__featured__info__date {
  font-size: 1.76rem;
}
.articles__content__featured__info__title .para-first {
  font-size: 4rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.articles__content__featured__info__title .para-first::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.35s ease-in-out;
}
.articles__content__featured__info__title:hover {
  opacity: 1;
}
.articles__content__featured__info__title:hover .para-first::before {
  width: 100%;
}
.articles__content__all {
  width: 100%;
  padding-left: 4rem;
}
@media (max-width: 36em) {
  .articles__content__all {
    padding-left: 0;
  }
}
.articles__content__all__item {
  margin-bottom: 2.5rem;
  gap: 2rem;
}
@media (max-width: 36em) {
  .articles__content__all__item {
    display: block;
    width: 100%;
  }
}
.articles__content__all__item__imageContainer {
  height: 15rem;
  border-radius: 15px;
}
@media (max-width: 36em) {
  .articles__content__all__item__imageContainer:hover .articles__content__all__item__imageContainer__image {
    transform: none;
  }
}
.articles__content__all__item__imageContainer:hover .articles__content__all__item__imageContainer__image {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.articles__content__all__item__imageContainer__image {
  height: 15rem;
  width: 12.5rem;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 36em) {
  .articles__content__all__item__imageContainer__image {
    width: 100%;
  }
}
.articles__content__all__item__info {
  font-size: 1.76rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.articles__content__all__item__info__title {
  font-weight: 500;
  padding-bottom: 1rem;
}
.articles__content__all__item__info__title:hover {
  color: #66fcf1;
  text-decoration: underline;
  font-size: 1.76rem;
}
.articles__content__all__item__info__date {
  align-items: center;
  font-weight: 600;
}

.pricing {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background-color: rgba(128, 128, 128, 0.15);
}
.pricing__header {
  text-align: center;
}
.pricing__header__small {
  color: #66fcf1;
  font-size: 1.76rem;
  letter-spacing: 3px;
  padding-bottom: 2rem;
}
.pricing__header__big {
  font-size: 4rem;
}
.pricing__container {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  gap: 2%;
}
@media (max-width: 48em) {
  .pricing__container {
    grid-template-columns: 100%;
  }
}
.pricing__container__content {
  background-color: #0b0c10;
  padding: 5rem;
}
.pricing__container__content__price {
  font-size: 6rem;
  font-weight: 700;
}
.pricing__container__content__price span {
  font-style: italic;
  font-size: 1.76rem;
  font-weight: 500;
  margin-left: 2rem;
}
.pricing__container__content__price span span {
  color: #f78550;
  margin: 0;
}
.pricing__container__content__title {
  color: #66fcf1;
  font-size: 2rem;
  font-weight: 700;
  padding: 3.8rem 0;
}
.pricing__container__content__description {
  font-size: 1.76rem;
  line-height: 2.8rem;
  padding-bottom: 1rem;
}
.pricing__container__content__features__item {
  font-size: 1.76rem;
  padding-bottom: 1.5rem;
}
.pricing__container__content__features__item::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2366fcf1' d='M437.3 30L202.7 339.3L64 200.7l-64 64L213.3 478L512 94z'/%3E%3C/svg%3E");
}
.pricing__container__content__btn--padding {
  margin-top: 1rem;
  padding: 1.3rem;
  text-align: center;
  display: block;
}
.pricing__container__content__btn--active {
  background-color: #66fcf1;
  color: #000;
}
.pricing__container__content__btn--active:hover {
  background-color: #f78550;
  border-color: #f78550;
}
.pricing__container__content--active {
  transform: translateY(-4%);
  height: 108%;
  align-items: center;
  border: 2px solid #66fcf1;
}
.pricing__container__content--active * {
  transform: scale(1.05);
}

.clientService__cardContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 48em) {
  .clientService__cardContainer {
    grid-template-columns: 100%;
  }
}
.clientService__cardContainer__card {
  background: #0b0c10;
  padding: 6rem;
  border-bottom: 2px solid #66fcf1;
}
.clientService__cardContainer__card__image {
  margin-bottom: 2.5rem;
  display: block;
}
.clientService__cardContainer__card__title {
  text-transform: capitalize;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}
.clientService__cardContainer__card__title::before {
  position: absolute;
  content: "";
  height: 2px;
  bottom: -4px;
  left: 0;
  width: 0%;
  background-color: #66fcf1;
  transition: width 0.35s ease-in-out;
}
.clientService__cardContainer__card__title:hover {
  opacity: 1;
  color: #66fcf1;
}
.clientService__cardContainer__card__title:hover::before {
  width: 100%;
}
.clientService__cardContainer__card__description {
  font-size: 1.76rem;
  line-height: 3rem;
  opacity: 0.8;
}
.clientService__cardContainer__card__btn {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 1.76rem;
  color: #66fcf1;
  font-weight: 600;
}
.clientService__btn {
  justify-content: center;
}

.clients {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background-color: rgba(128, 128, 128, 0.15);
}
.clients__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 48em) {
  .clients__container {
    grid-template-columns: 100%;
    justify-content: center;
  }
}
@media (max-width: 36em) {
  .clients__container {
    grid-template-columns: 100%;
    justify-content: center;
  }
}
.clients__container__image {
  display: flex;
  justify-content: center;
  filter: brightness(1000%);
}
.clients__container__image img {
  height: 9.5rem;
}
@media (max-width: 75em) {
  .clients__container__image img {
    height: 7rem;
  }
}
@media (max-width: 62em) {
  .clients__container__image img {
    height: 5rem;
  }
}
@media (max-width: 48em) {
  .clients__container__image img {
    height: auto;
  }
}
@media (max-width: 36em) {
  .clients__container__image img {
    height: auto;
  }
}

.heading__footer__primary {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.ul__listItem__footer {
  font-size: 1.76rem;
  font-weight: 500;
  padding-bottom: 2rem;
}

.heading__footer__secondary {
  font-weight: 500;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.footer__primary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 5rem;
}
@media (max-width: 48em) {
  .footer__primary {
    grid-template-columns: 100%;
    row-gap: 4rem;
  }
}
.footer__primary__info__logoSection {
  margin-bottom: 2.5rem;
  align-items: center;
}
.footer__primary__info__logoSection__image {
  height: 50px;
  margin-right: 10px;
}
.footer__primary__info__logoSection__title {
  font-size: 27.8px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
.footer__primary__info__logoSection__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #66fcf1;
  transition: width 0.35s ease-in-out;
}
.footer__primary__info__logoSection__title:hover {
  opacity: 1;
  color: #66fcf1;
}
.footer__primary__info__logoSection__title:hover::before {
  width: 100%;
}
.footer__primary__info__description {
  font-size: 1.76rem;
  line-height: 2.8rem;
}
.footer__primary__quickContainer__list__item--greenTick::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2366fcf1' d='M437.3 30L202.7 339.3L64 200.7l-64 64L213.3 478L512 94z'/%3E%3C/svg%3E");
}
.footer__primary__recentNews__list {
  display: inline-block;
}
.footer__primary__recentNews__list__item--center {
  display: flex;
  align-items: center;
}
.footer__primary__recentNews__list__item--center .bracket::before {
  content: "(";
}
.footer__primary__recentNews__list__item--center .bracket::after {
  content: ")";
}
.footer__secondary {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 48em) {
  .footer__secondary {
    grid-template-columns: 100%;
    row-gap: 5rem;
  }
}
.footer__secondary__social__links {
  gap: 2rem;
}
.footer__secondary__social__links__element {
  transition: all 0.35s ease-in-out;
}
.footer__secondary__social__links__element:hover {
  transform: scale(1.2);
}
.footer__secondary__formContainer__form .email-input {
  height: 4.5rem;
  outline: 0;
  border: 1px;
  width: 90%;
  border-radius: 3px;
  background-color: rgba(128, 128, 128, 0.18);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: #e7e7e7;
  padding: 1rem;
}
.footer__secondary__formContainer__form .email-input::placeholder {
  color: #e7e7e7;
  font-size: 1.6rem;
}
.footer__secondary__formContainer__form .btn-subscribe {
  background-color: #66fcf1;
  font-size: 1.6rem;
  padding: 1.2rem 2.5rem;
  border: 0;
}
.footer__copyright {
  background-color: #0b0c10;
  padding: 2.5rem 0;
}
.footer__copyright h4 {
  font-size: 1.76rem;
  font-weight: 400;
}