@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic);
@import url(https://fonts.googleapis.com/css?family=Overlock:regular,italic,700,700italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Khand:300,regular,500,600,700);
:root {
  --primary-color: #271035;
  --secondary-color: #7437a0;
  --dark-bg-color: #1a0028;
  --text-light-color: #9e9e9e;
  --box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  --linear-gradient: rgba(0, 0, 0, 0.4);
  --title-font: "Josefin Sans", sans-serif;
  --desc-font: "Poppins", sans-serif;
  --exp-font: "Overlock", sans-serif;
  --banner-title-font: "Khand", sans-serif;
  --cubic-bezier: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes fadeEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes stickyMenuAnimation {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

* a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
ul {
  margin-bottom: 0;
}

.custom-container {
  max-width: 1700px;
  margin: 0 auto;
}
@media (max-width: 1700px) {
  .custom-container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

.dark__background {
  background: var(--dark-bg-color);
}

.light__background {
  background: #e2e3e4;
}

.hero__img svg {
  min-width: 700px;
  position: relative;
}
@media (max-width: 1536px) {
  .hero__img svg {
    min-width: 650px;
  }
}
@media (max-width: 1336px) {
  .hero__img svg {
    min-width: 550px;
  }
}
@media (max-width: 1200px) {
  .hero__img svg {
    min-width: 450px;
  }
}
@media (max-width: 450px) {
  .hero__img svg {
    min-width: 300px;
  }
}

.scrollReveal {
  overflow-x: hidden;
}

.header__section {
  width: 100%;
  background: white;
}
.header__section .header__nav {
  width: 100%;
}
.header__section .header__nav-top {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.header__section .header__nav-top .custom-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 550px) {
  .header__section .header__nav-top .custom-container {
    justify-content: flex-start;
  }
}
.header__section .header__nav-top .top__menu {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
}
.header__section .header__nav-top .top__menu li a {
  font-size: 12px;
  color: black;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
.header__section .header__nav-top .top__menu li a:hover {
  color: var(--secondary-color);
}
.header__section .header__nav-top .top__menu li a span {
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
}
.header__section .header__nav-top .top__menu li a span svg {
  color: var(--primary-color);
}
.header__section .header__nav-bottom {
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .header__section .header__nav-bottom {
    padding: 0;
  }
}
.header__section .header__nav-bottom .custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 1rem;
}
@media (max-width: 768px) {
  .header__section .header__nav-bottom .custom-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
    max-width: 100%;
    padding: 1rem 0 0 0;
  }
}
@media (max-width: 768px) {
  .header__section .header__nav-bottom .header__logo {
    grid-column: 1/2;
    padding-left: 1rem;
    padding-bottom: 1rem;
  }
}
.header__section .header__nav-bottom .header__logo a img {
  max-width: 90px;
}
.header__section .header__nav-bottom .nav__menu {
  display: flex;
  align-items: center;
  grid-gap: 3rem;
}
@media (max-width: 992px) {
  .header__section .header__nav-bottom .nav__menu {
    grid-gap: 2rem;
  }
}
@media (max-width: 768px) {
  .header__section .header__nav-bottom .nav__menu {
    display: none;
    grid-column: span 2;
    grid-row: 2;
    padding: 3rem 1rem;
    transform-origin: top;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header__section .header__nav-bottom .nav__menu.active {
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header__section .header__nav-bottom .nav__menu li .nav__link {
  font-size: 18px;
  color: black;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
@media (max-width: 1024px) {
  .header__section .header__nav-bottom .nav__menu li .nav__link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header__section .header__nav-bottom .nav__menu li .nav__link {
    color: white;
  }
}
.header__section .header__nav-bottom .nav__menu li .nav__link:hover {
  color: var(--secondary-color);
}
.header__section .header__nav-bottom .nav__menu li .nav__link.signup__btn {
  background: var(--secondary-color);
  min-width: 5rem;
  padding: 0 1.5rem;
  height: 2.5rem;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__section .header__nav-bottom .hamburger {
  display: none;
}
@media (max-width: 768px) {
  .header__section .header__nav-bottom .hamburger {
    display: flex;
    grid-column: 2/3;
    justify-content: flex-end;
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
}
.header__section .header__nav-bottom .hamburger__icon {
  min-width: 3rem;
  height: 3rem;
  background: var(--secondary-color);
  border: 0;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__section .header__nav-bottom .hamburger__icon i,
.header__section .header__nav-bottom .hamburger__icon svg {
  display: flex;
  color: white;
  font-size: 18px;
}

.hero__section {
  width: 100%;
  padding: 3rem 0;
  overflow-x: hidden;
}
.hero__section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 5rem;
}
@media (max-width: 768px) {
  .hero__section-content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero__section-content .hero__text {
    text-align: center;
  }
}
.hero__section-content .hero__text .ting__top span {
  color: white;
  font-weight: 500;
  font-size: 20px;
}
.hero__section-content .hero__text .hero__title {
  font-weight: bold;
  line-height: 1.2;
  color: white;
  font-size: 52px;
  letter-spacing: 0.5px;
}
@media (max-width: 1536px) {
  .hero__section-content .hero__text .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .hero__section-content .hero__text .hero__title {
    font-size: 32px;
  }
}
.hero__section-content .hero__text .hero__desc {
  color: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}
.hero__section-content .hero__text .hero__cta {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
@media (max-width: 1336px) {
  .hero__section-content .hero__text .hero__cta {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .hero__section-content .hero__text .hero__cta {
    align-items: center;
  }
}
.hero__section-content .hero__text .hero__cta .cta__title {
  color: white;
  font-weight: 600;
  font-size: 24px;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn {
  width: fit-content;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn:hover .text {
  color: white !important;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn:hover .text::before {
  width: 100%;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn:hover .icon {
  background: white;
  transition-delay: 300ms;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn:hover .icon svg,
.hero__section-content .hero__text .hero__cta .hero__cta-btn:hover .icon i {
  color: var(--secondary-color);
  transition-delay: 300ms;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn .text {
  position: relative;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  padding: 0 2rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 1;
  transition: all 300ms ease-in-out;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn .text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--secondary-color);
  width: 0;
  height: 100%;
  z-index: -1;
  transition: all 300ms ease-in-out;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn .icon {
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  height: 3rem;
  position: relative;
  transition: all 300ms ease-in-out;
}
.hero__section-content .hero__text .hero__cta .hero__cta-btn .icon svg,
.hero__section-content .hero__text .hero__cta .hero__cta-btn .icon i {
  display: flex;
  font-size: 18px;
  color: white;
  transition: all 300ms ease-in-out;
}
.hero__section-content .hero__text .ting__cta {
  margin-top: 2rem;
  display: flex;
}
.hero__section-content .hero__text .ting__cta-btn {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  color: white;
  font-size: 22px;
  position: relative;
}
.hero__section-content .hero__text .ting__cta-btn:hover::before {
  width: 100%;
}
.hero__section-content .hero__text .ting__cta-btn:hover svg,
.hero__section-content .hero__text .ting__cta-btn:hover i {
  transform: translateX(-5px);
}
.hero__section-content .hero__text .ting__cta-btn::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  width: 0;
  height: 0.2rem;
  background: white;
  transition: all 500ms var(--cubic-bezier);
}
.hero__section-content .hero__text .ting__cta-btn svg,
.hero__section-content .hero__text .ting__cta-btn i {
  font-size: 22px;
  display: flex;
  transition: all 500ms var(--cubic-bezier);
}
.company__slider {
  width: 100%;
  padding: 3rem 0;
  background: white;
  overflow-y: hidden;
}
.company__slider.scrollReveal--active .slider__controls {
  transform: translateY(0);
  opacity: 1;
}
.company__slider.scrollReveal--active .slider__item {
  opacity: 1 !important;
}
.company__slider-content {
  width: 100%;
}
.company__slider-content .section__title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-light-color);
  font-size: 32px;
  font-weight: 600;
}
.company__slider-content .section__title span {
  font-size: 52px;
  font-weight: bold;
  color: var(--primary-color);
}
.company__slider-content .companies__slider .slider__item {
  padding: 0 1rem;
  opacity: 0;
  transition: all 1s ease-in-out;
}
.company__slider-content .companies__slider .slider__item a img {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}
.company__slider-content .slider__controls {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  grid-gap: 2rem;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease-in-out;
}
.company__slider-content .slider__controls .arrow_vertical {
  border: 0;
  min-width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  background: transparent;
}
.company__slider-content .slider__controls .arrow_vertical::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50px;
  background: var(--secondary-color);
  transform: translate(-50%, -50%);
  transition: all 300ms var(--cubic-bezier);
}
.company__slider-content .slider__controls .arrow_vertical:hover::before {
  width: 100%;
  height: 100%;
}
.company__slider-content .slider__controls .arrow_vertical:hover svg,
.company__slider-content .slider__controls .arrow_vertical:hover i {
  color: white;
}
.company__slider-content .slider__controls .arrow_vertical svg,
.company__slider-content .slider__controls .arrow_vertical i {
  position: relative;
  display: flex;
  font-size: 22px;
  color: var(--text-light-color);
  transition: all 300ms ease-in-out;
}

.ting__section {
  width: 100%;
  padding: 3rem 0;
}
.ting__section.scrollReveal--active .hero__text,
.ting__section.scrollReveal--active .hero__img {
  transform: translateX(0);
  opacity: 1;
}
.ting__section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 5rem;
}
@media (max-width: 768px) {
  .ting__section-content {
    flex-direction: column-reverse;
  }
}
.ting__section-content .hero__text {
  transform: translateX(100px);
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
}
@media (max-width: 768px) {
  .ting__section-content .hero__text {
    text-align: center;
  }
}
.ting__section-content .hero__text .ting__top span {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 22px;
}
.ting__section-content .hero__text .hero__title {
  font-weight: bold;
  line-height: 1.2;
  color: black;
  font-size: 52px;
  letter-spacing: 0.5px;
}
@media (max-width: 1536px) {
  .ting__section-content .hero__text .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .ting__section-content .hero__text .hero__title {
    font-size: 32px;
  }
}
.ting__section-content .hero__text .hero__desc {
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .ting__section-content .hero__text .hero__desc {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
  }
}
.ting__section-content .hero__text .ting__cta {
  margin-top: 2rem;
  display: flex;
}
@media (max-width: 768px) {
  .ting__section-content .hero__text .ting__cta {
    justify-content: center;
  }
}
.ting__section-content .hero__text .ting__cta-btn {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  color: var(--secondary-color);
  font-size: 22px;
  position: relative;
}
.ting__section-content .hero__text .ting__cta-btn:hover::before {
  width: 100%;
}
.ting__section-content .hero__text .ting__cta-btn:hover svg,
.ting__section-content .hero__text .ting__cta-btn:hover i {
  transform: translateX(-5px);
}
.ting__section-content .hero__text .ting__cta-btn::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  width: 0;
  height: 0.2rem;
  background: var(--secondary-color);
  transition: all 500ms var(--cubic-bezier);
}
.ting__section-content .hero__text .ting__cta-btn svg,
.ting__section-content .hero__text .ting__cta-btn i {
  font-size: 22px;
  display: flex;
  transition: all 500ms var(--cubic-bezier);
}
.ting__section-content .hero__img {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
}

.hero__video {
  width: 100%;
  padding: 3rem 0;
}
.hero__video.scrollReveal--active .hero__text,
.hero__video.scrollReveal--active .hero__vid {
  transform: translateX(0);
  opacity: 1;
}
.hero__video-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  grid-gap: 2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .hero__video-content {
    grid-gap: 1rem;
    flex-direction: column-reverse;
  }
}

.hero__video-content.fluid .hero__text {
  opacity: 0;
}
.hero__video-content.fluid .hero__vid {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  flex: unset;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  display: block;
  transition: unset;
}
.hero__video-content.fluid .hero__vid:hover .button__play {
  opacity: 1;
}
.hero__video-content.fluid .hero__vid .button__play {
  top: 2rem;
  right: 2rem;
  opacity: 0;
}

.hero__video-content .hero__text {
  position: relative;
  flex: 1;
  transform: translateX(100px);
  opacity: 0;
  transition: all 300ms ease-in-out;
}
@media (max-width: 768px) {
  .hero__video-content .hero__text {
    text-align: center;
  }
}
.hero__video-content .hero__text .quote {
  font-size: 52px;
  margin-bottom: 5rem;
  color: var(--secondary-color);
}
.hero__video-content .hero__text .overlay__content {
  padding: 4rem;
  background: white;
  margin-left: -20rem;
}
@media (max-width: 1024px) {
  .hero__video-content .hero__text .overlay__content {
    margin-left: 0;
    padding: 0;
  }
}
.hero__video-content .hero__text .hero__title {
  font-weight: bold;
  line-height: 1.2;
  color: black;
  font-size: 52px;
  letter-spacing: 0.5px;
}
@media (max-width: 1536px) {
  .hero__video-content .hero__text .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .hero__video-content .hero__text .hero__title {
    font-size: 32px;
  }
}
.hero__video-content .hero__text .hero__desc {
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .hero__video-content .hero__text .hero__desc {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
  }
}
.hero__video-content .hero__vid {
  flex: 2;
  max-width: 70%;
  transform: translateX(-100px);
  opacity: 0;
  position: relative;
  transition: all 1s var(--cubic-bezier);
}
@media (max-width: 1024px) {
  .hero__video-content .hero__vid {
    max-width: 100%;
    flex: 1;
  }
}
.hero__video-content .hero__vid .button__play {
  position: absolute;
  top: 3rem;
  right: -2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  outline: none;
  z-index: 5;
}
@media (max-width: 1336px) {
  .hero__video-content .hero__vid .button__play {
    top: 1rem;
    left: 1rem;
  }
}
@media (max-width: 550px) {
  .hero__video-content .hero__vid .button__play {
    width: 3rem;
    height: 3rem;
  }
}
.hero__video-content .hero__vid .button__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 1.5rem;
  background: var(--secondary-color);
  border-radius: 50px;
  z-index: 5;
  opacity: 0;
  transition: all 300ms ease-in-out;
  transition-delay: 100ms;
}
.hero__video-content .hero__vid .button__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 57%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 1.5rem;
  background: var(--secondary-color);
  border-radius: 50px;
  z-index: 5;
  opacity: 0;
  transition: all 300ms ease-in-out;
  transition-delay: 100ms;
}
.hero__video-content .hero__vid .button__play.playing svg {
  opacity: 0;
}
.hero__video-content .hero__vid .button__play.playing::before, .hero__video-content .hero__vid .button__play.playing::after {
  opacity: 1;
}
.hero__video-content .hero__vid .button__play svg {
  font-size: 24px;
  color: var(--secondary-color);
  display: flex;
  transition: all 300ms ease-in-out;
}
@media (max-width: 550px) {
  .hero__video-content .hero__vid .button__play svg {
    font-size: 16px;
  }
}
.hero__video-content .hero__vid video {
  width: 100%;
}

.our__values {
  width: 100%;
  padding: 5rem 0;
  padding-bottom: 7rem;
}
.our__values.scrollReveal--active span {
  opacity: 1;
}
.our__values.scrollReveal--active .values__title {
  opacity: 1;
}
.our__values-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our__values-content span {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 22px;
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
}
.our__values-content .values__title {
  font-weight: bold;
  line-height: 1.2;
  color: black;
  font-size: 52px;
  letter-spacing: 0.5px;
  text-align: center;
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
  transition-delay: 500ms;
}
@media (max-width: 1536px) {
  .our__values-content .values__title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .our__values-content .values__title {
    font-size: 32px;
  }
}

.call__service {
  width: 100%;
  padding: 5rem 0;
}
.call__service.scrollReveal--active .hero__text,
.call__service.scrollReveal--active .hero__img {
  transform: translateX(0);
  opacity: 1;
}
.call__service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 5rem;
}
@media (max-width: 768px) {
  .call__service-content {
    flex-direction: column;
  }
}
.call__service-content .hero__text {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s var(--cubic-bezier);
}
@media (max-width: 768px) {
  .call__service-content .hero__text {
    text-align: center;
  }
}
.call__service-content .hero__text .ting__top span {
  color: white;
  font-weight: 500;
  font-size: 20px;
}
.call__service-content .hero__text .hero__title {
  font-weight: bold;
  line-height: 1.2;
  color: white;
  font-size: 52px;
  letter-spacing: 0.5px;
}
@media (max-width: 1536px) {
  .call__service-content .hero__text .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .call__service-content .hero__text .hero__title {
    font-size: 32px;
  }
}
.call__service-content .hero__text .hero__desc {
  color: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .call__service-content .hero__text .hero__desc {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
  }
}
.call__service-content .hero__text .ting__cta {
  margin-top: 2rem;
  display: flex;
}
@media (max-width: 768px) {
  .call__service-content .hero__text .ting__cta {
    justify-content: center;
  }
}
.call__service-content .hero__text .ting__cta-btn {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  color: white;
  font-size: 22px;
  position: relative;
}
.call__service-content .hero__text .ting__cta-btn:hover::before {
  width: 100%;
}
.call__service-content .hero__text .ting__cta-btn:hover svg,
.call__service-content .hero__text .ting__cta-btn:hover i {
  transform: translateX(-5px);
}
.call__service-content .hero__text .ting__cta-btn::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  width: 0;
  height: 0.2rem;
  background: white;
  transition: all 500ms var(--cubic-bezier);
}
.call__service-content .hero__text .ting__cta-btn svg,
.call__service-content .hero__text .ting__cta-btn i {
  font-size: 22px;
  display: flex;
  transition: all 500ms var(--cubic-bezier);
}
.call__service-content .hero__img {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s var(--cubic-bezier);
}

.sms__service {
  width: 100%;
  padding: 5rem 0;
  padding-top: 10rem;
}
.sms__service.scrollReveal--active .hero__text,
.sms__service.scrollReveal--active .hero__img {
  transform: translateX(0);
  opacity: 1;
}
.sms__service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 5rem;
}
@media (max-width: 768px) {
  .sms__service-content {
    flex-direction: column-reverse;
  }
}
.sms__service-content .hero__text {
  transform: translateX(100px);
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
}
@media (max-width: 768px) {
  .sms__service-content .hero__text {
    text-align: center;
  }
}
.sms__service-content .hero__text .ting__top span {
  color: white;
  font-weight: 500;
  font-size: 20px;
}
.sms__service-content .hero__text .hero__title {
  font-weight: bold;
  line-height: 1.2;
  color: black;
  font-size: 52px;
  letter-spacing: 0.5px;
}
@media (max-width: 1536px) {
  .sms__service-content .hero__text .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .sms__service-content .hero__text .hero__title {
    font-size: 32px;
  }
}
.sms__service-content .hero__text .hero__desc {
  color: black;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .sms__service-content .hero__text .hero__desc {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
  }
}
.sms__service-content .hero__text .ting__cta {
  margin-top: 2rem;
  display: flex;
}
@media (max-width: 768px) {
  .sms__service-content .hero__text .ting__cta {
    justify-content: center;
  }
}
.sms__service-content .hero__text .ting__cta-btn {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  color: var(--secondary-color);
  font-size: 22px;
  position: relative;
}
.sms__service-content .hero__text .ting__cta-btn:hover::before {
  width: 100%;
}
.sms__service-content .hero__text .ting__cta-btn:hover svg,
.sms__service-content .hero__text .ting__cta-btn:hover i {
  transform: translateX(-5px);
}
.sms__service-content .hero__text .ting__cta-btn::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  width: 0;
  height: 0.2rem;
  background: var(--secondary-color);
  transition: all 500ms var(--cubic-bezier);
}
.sms__service-content .hero__text .ting__cta-btn svg,
.sms__service-content .hero__text .ting__cta-btn i {
  font-size: 22px;
  display: flex;
  transition: all 500ms var(--cubic-bezier);
}
.sms__service-content .hero__img {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
}

.api__service {
  width: 100%;
  padding: 10rem 0;
}
.api__service.scrollReveal--active .hero__text,
.api__service.scrollReveal--active .hero__img {
  transform: translateX(0);
  opacity: 1;
}
.api__service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 5rem;
}
@media (max-width: 768px) {
  .api__service-content {
    flex-direction: column;
  }
}
.api__service-content .hero__text {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s var(--cubic-bezier);
}
@media (max-width: 768px) {
  .api__service-content .hero__text {
    text-align: center;
  }
}
.api__service-content .hero__text .ting__top span {
  color: white;
  font-weight: 500;
  font-size: 20px;
}
.api__service-content .hero__text .hero__title {
  font-weight: bold;
  line-height: 1.2;
  color: black;
  font-size: 52px;
  letter-spacing: 0.5px;
}
@media (max-width: 1536px) {
  .api__service-content .hero__text .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .api__service-content .hero__text .hero__title {
    font-size: 32px;
  }
}
.api__service-content .hero__text .hero__desc {
  color: black;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .api__service-content .hero__text .hero__desc {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
  }
}
.api__service-content .hero__text .ting__cta {
  margin-top: 2rem;
  display: flex;
}
@media (max-width: 768px) {
  .api__service-content .hero__text .ting__cta {
    justify-content: center;
  }
}
.api__service-content .hero__text .ting__cta-btn {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  color: var(--secondary-color);
  font-size: 22px;
  position: relative;
}
.api__service-content .hero__text .ting__cta-btn:hover::before {
  width: 100%;
}
.api__service-content .hero__text .ting__cta-btn:hover svg,
.api__service-content .hero__text .ting__cta-btn:hover i {
  transform: translateX(-5px);
}
.api__service-content .hero__text .ting__cta-btn::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  width: 0;
  height: 0.2rem;
  background: var(--secondary-color);
  transition: all 500ms var(--cubic-bezier);
}
.api__service-content .hero__text .ting__cta-btn svg,
.api__service-content .hero__text .ting__cta-btn i {
  font-size: 22px;
  display: flex;
  transition: all 500ms var(--cubic-bezier);
}
.api__service-content .hero__img {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s var(--cubic-bezier);
}

.video__section {
  position: relative;
}
.video__section.scrollReveal--active .video__title,
.video__section.scrollReveal--active .video__desc,
.video__section.scrollReveal--active .call__btn {
  opacity: 1;
  transform: translateY(0);
}
.video__section .video__wrapper {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  overflow: hidden;
  min-height: 1rem;
  padding: 15rem 0;
}
.video__section .video__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
}
.video__section #contactVideo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.video__section-content {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15rem;
}
@media (max-width: 992px) {
  .video__section-content {
    padding: 0 1rem;
  }
}
.video__section-content .video__title {
  font-weight: bold;
  color: white;
  font-size: 52px;
  letter-spacing: 0.5px;
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
}
@media (max-width: 1536px) {
  .video__section-content .video__title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .video__section-content .video__title {
    font-size: 32px;
  }
}
.video__section-content .video__desc {
  color: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
  transition-delay: 500ms;
}
@media (max-width: 1336px) {
  .video__section-content .video__desc {
    font-size: 18px;
  }
}
.video__section-content .call__btn {
  margin-top: 4rem;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s var(--cubic-bezier);
  transition-delay: 1s;
}
.video__section-content .call__btn a {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 3rem;
  border-radius: 50px;
  transition: all 300ms ease-in-out;
}
.video__section-content .call__btn a span {
  position: relative;
  color: white;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 300ms ease-in-out;
}
.video__section-content .call__btn a:hover {
  background: white;
}
.video__section-content .call__btn a:hover span {
  color: var(--primary-color);
}

.footer__section {
  width: 100%;
}
.footer__section-nav {
  padding: 3rem 0;
  background: #eee;
}
.footer__section-nav .custom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 2rem;
}
.footer__section-nav .custom-container .footer__logo a img {
  max-width: 120px;
}
.footer__section-nav .custom-container .footer__desc {
  padding: 0 10rem;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 992px) {
  .footer__section-nav .custom-container .footer__desc {
    padding: 0 1rem;
  }
}
.footer__section-nav .custom-container .footer__menu {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  grid-gap: 2rem;
}
.footer__section-nav .custom-container .footer__menu li a {
  color: black;
  font-size: 18px;
  font-weight: 400;
  transition: all 300ms ease-in-out;
}
.footer__section-nav .custom-container .footer__menu li a:hover {
  color: var(--secondary-color);
}
.footer__section-nav .custom-container .social__media {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  align-items: center;
  justify-content: center;
}
.footer__section-nav .custom-container .social__media label {
  text-align: center;
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: bold;
}
.footer__section-nav .custom-container .social__media .footer__menu {
  grid-gap: 1rem;
}
.footer__section-nav .custom-container .social__media .footer__menu a {
  position: relative;
}
.footer__section-nav .custom-container .social__media .footer__menu a .footer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
.footer__section-nav .custom-container .social__media .footer__menu a .footer__icon:hover::before {
  width: 100%;
  height: 100%;
}
.footer__section-nav .custom-container .social__media .footer__menu a .footer__icon:hover svg,
.footer__section-nav .custom-container .social__media .footer__menu a .footer__icon:hover i {
  color: white;
}
.footer__section-nav .custom-container .social__media .footer__menu a .footer__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50px;
  background: var(--secondary-color);
  transition: all 300ms var(--cubic-bezier);
}
.footer__section-nav .custom-container .social__media .footer__menu a .footer__icon svg,
.footer__section-nav .custom-container .social__media .footer__menu a .footer__icon i {
  display: flex;
  position: relative;
  font-size: 16px;
  transition: all 300ms ease-in-out;
}
.footer__section .copyright {
  padding: 0.8rem 0;
  background: var(--primary-color);
}
.footer__section .copyright__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.5rem;
}
.footer__section .copyright__content .copyright__text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: white;
}
.footer__section .copyright__content .copyright__menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  grid-gap: 2rem;
  flex-wrap: wrap;
}
.footer__section .copyright__content .copyright__menu a {
  color: white;
  font-size: 16px;
  position: relative;
  transition: all 300ms ease-in-out;
}
.footer__section .copyright__content .copyright__menu a:hover {
  color: var(--secondary-color);
}

.about__section {
  width: 100%;
  padding-bottom: 5rem;
  position: relative;
}
.about__section .banner__title {
  position: relative;
  background: var(--dark-bg-color);
  padding: 4rem 0;
}
.about__section .banner__title .content__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 64px;
  font-weight: 600;
  color: white;
}
@media (max-width: 1280px) {
  .about__section .banner__title .content__title {
    font-size: 54px;
  }
}
@media (max-width: 992px) {
  .about__section .banner__title .content__title {
    font-size: 44px;
  }
}
@media (max-width: 600px) {
  .about__section .banner__title .content__title {
    font-size: 34px;
  }
}
.about__section .banner__title .content__title span {
  font-size: 32px;
  color: var(--secondary-color);
}
@media (max-width: 600px) {
  .about__section .banner__title .content__title span {
    font-size: 22px;
    line-height: 1.5;
  }
}
.about__section .banner__title .title__desc {
  color: white;
  margin-top: 1rem;
  font-size: 18px;
  font-weight: 300;
}
.about__section-content {
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
  padding-top: 5rem;
}
.about__section-content .content__details {
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
}
.about__section-content .content__details .content__desc {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  grid-gap: 2rem;
}
.about__section-content .content__details .content__desc .mockup {
  max-width: 500px;
}
.about__section-content .content__details .content__desc .descriptions {
  width: 100%;
}
.about__section-content .content__details .content__desc .descriptions h2 {
  margin-bottom: 1rem;
}
.about__section-content .content__details .content__desc .descriptions p {
  margin-bottom: 2rem;
  font-size: 18px;
  line-height: 1.5;
}
.about__section-content .content__details .content__desc .descriptions p a {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 500;
  transition: all 300ms ease-in-out;
}
.about__section-content .content__details .content__desc .descriptions p a:hover {
  transform: translateY(-2px);
}
.about__section-content .content__details .content__desc .descriptions .withMenu {
  display: flex;
  flex-direction: column;
  grid-gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 18px;
  line-height: 1.5;
}
.about__section-content .content__details .content__desc .descriptions .withMenu ul {
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
}
.about__section-content .content__details .content__desc .descriptions .withMenu ul li {
  font-style: italic;
  list-style-type: disc;
  font-size: 16px;
}
.about__section-content .content__details .content__desc .descriptions .withMenu ul li::marker {
  color: var(--secondary-color);
}
.about__section-content .content__grid {
  display: flex;
  grid-gap: 2rem;
}
@media (max-width: 1024px) {
  .about__section-content .content__grid {
    flex-direction: column;
  }
}
.about__section-content .content__grid .grid__card {
  background: #F1F1F1;
  border-radius: 50px;
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
@media (max-width: 1024px) {
  .about__section-content .content__grid .grid__card {
    flex: unset;
  }
}
@media (max-width: 650px) {
  .about__section-content .content__grid .grid__card {
    padding: 1rem;
  }
}
.about__section-content .content__grid .grid__card:nth-child(1) .card__icon svg .st6 {
  fill: #FFAAA8;
}
.about__section-content .content__grid .grid__card .card__top {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
}
.about__section-content .content__grid .grid__card .card__top .card__icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 550px) {
  .about__section-content .content__grid .grid__card .card__top .card__icon {
    width: 80px;
    height: 80px;
  }
}
.about__section-content .content__grid .grid__card .card__top .card__icon svg {
  width: 80px;
}
@media (max-width: 550px) {
  .about__section-content .content__grid .grid__card .card__top .card__icon svg {
    width: 60px;
    height: 60px;
  }
}
.about__section-content .content__grid .grid__card .card__top .card__title {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 32px;
}
@media (max-width: 550px) {
  .about__section-content .content__grid .grid__card .card__top .card__title {
    font-size: 24px;
  }
}
.about__section-content .content__grid .grid__card .card__bottom p {
  font-size: 18px;
  color: black;
  font-weight: 400;
  line-height: 1.5;
}

.pricing__section .banner__title {
  position: relative;
  background: var(--dark-bg-color);
  padding: 4rem 0;
}
.pricing__section .banner__title .content__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 64px;
  font-weight: 600;
  color: white;
}
@media (max-width: 1280px) {
  .pricing__section .banner__title .content__title {
    font-size: 54px;
  }
}
@media (max-width: 992px) {
  .pricing__section .banner__title .content__title {
    font-size: 44px;
  }
}
@media (max-width: 600px) {
  .pricing__section .banner__title .content__title {
    font-size: 34px;
  }
}
.pricing__section .banner__title .content__title span {
  font-size: 32px;
  color: var(--secondary-color);
}
@media (max-width: 600px) {
  .pricing__section .banner__title .content__title span {
    font-size: 22px;
    line-height: 1.5;
  }
}
.pricing__section .banner__title .title__desc {
  color: white;
  margin-top: 1rem;
  font-size: 18px;
  font-weight: 300;
}
.pricing__section .pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  padding: 5rem 0;
}
@media (max-width: 1280px) {
  .pricing__section .pricing__grid {
    grid-gap: 1rem;
  }
}
@media (max-width: 992px) {
  .pricing__section .pricing__grid {
    padding: 2rem 0;
  }
}
@media (max-width: 768px) {
  .pricing__section .pricing__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pricing__section .pricing__grid .pricing__card {
  background: #f6f6f6;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  transition: all 300ms ease-in-out;
}
@media (max-width: 1280px) {
  .pricing__section .pricing__grid .pricing__card {
    padding: 2rem 1rem;
  }
}
.pricing__section .pricing__grid .pricing__card:hover {
  box-shadow: 5px 5px 40px rgba(116, 55, 160, 0.1647058824);
  transform: translateY(-10px);
  background: white;
}
.pricing__section .pricing__grid .pricing__card .pricing__title {
  font-weight: bold;
  font-size: 24px;
  color: var(--secondary-color);
}

.feature__section .banner__title {
  position: relative;
  background: var(--dark-bg-color);
  padding: 4rem 0;
}
.feature__section .banner__title .content__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 64px;
  font-weight: 600;
  color: white;
}
@media (max-width: 1280px) {
  .feature__section .banner__title .content__title {
    font-size: 54px;
  }
}
@media (max-width: 992px) {
  .feature__section .banner__title .content__title {
    font-size: 44px;
  }
}
@media (max-width: 600px) {
  .feature__section .banner__title .content__title {
    font-size: 34px;
  }
}
.feature__section .banner__title .content__title span {
  font-size: 32px;
  color: var(--secondary-color);
}
@media (max-width: 600px) {
  .feature__section .banner__title .content__title span {
    font-size: 22px;
    line-height: 1.5;
  }
}
.feature__section .banner__title .title__desc {
  color: white;
  margin-top: 1rem;
  font-size: 18px;
  font-weight: 300;
}
.feature__section .features__grid {
  display: grid;
  padding: 5rem 0;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  grid-gap: 4rem;
}
@media (max-width: 1280px) {
  .feature__section .features__grid {
    grid-gap: 1rem;
  }
}
@media (max-width: 400px) {
  .feature__section .features__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.feature__section .features__grid .feature__card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  position: relative;
}
@media (max-width: 550px) {
  .feature__section .features__grid .feature__card {
    padding: 1rem;
  }
}
.feature__section .features__grid .feature__card:hover .overlay__fluid {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
}
.feature__section .features__grid .feature__card:hover .card__icon {
  transition-delay: 200ms;
  background: var(--secondary-color);
}
.feature__section .features__grid .feature__card:hover .card__icon svg {
  fill: white;
}
.feature__section .features__grid .feature__card:hover .card__icon svg .st1 {
  fill: var(--secondary-color);
}
.feature__section .features__grid .feature__card .card__icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease-in-out;
}
.feature__section .features__grid .feature__card .card__icon svg {
  width: 60px;
  fill: var(--secondary-color);
  display: flex;
  transition: all 500ms ease-in-out;
}
.feature__section .features__grid .feature__card .overlay__fluid {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: all 500ms ease-in-out;
}
@media (max-width: 550px) {
  .feature__section .features__grid .feature__card .overlay__fluid {
    top: 1rem;
    left: 1rem;
  }
}
.feature__section .features__grid .feature__card .card__details {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
.feature__section .features__grid .feature__card .card__details .card__title {
  font-size: 24px;
  font-weight: 600;
  color: black;
  line-height: 1.5;
}
.feature__section .features__grid .feature__card .card__details .card__desc {
  font-size: 16px;
  line-height: 1.5;
  color: black;
}

.contact__section {
  width: 100%;
  padding: 5rem 0;
  background: #f6f6f6;
}
@media (max-width: 1280px) {
  .contact__section {
    padding: 2rem 0;
  }
}
.contact__section-content {
  display: flex;
  align-items: center;
  grid-gap: 2rem;
}
@media (max-width: 1150px) {
  .contact__section-content {
    flex-direction: column;
  }
}
.contact__section-content .content__form {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 4rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
}
@media (max-width: 550px) {
  .contact__section-content .content__form {
    padding: 1rem;
  }
}
.contact__section-content .content__form .form__title {
  font-size: 48px;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact__section-content .content__form .form__title {
    font-size: 38px;
  }
}
@media (max-width: 450px) {
  .contact__section-content .content__form .form__title {
    font-size: 32px;
  }
}
.contact__section-content .content__form .form__title .colored-text {
  color: var(--secondary-color);
}
.contact__section-content .content__form .contact__form {
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
}
.contact__section-content .content__form .contact__form-input {
  width: 100%;
  height: 60px;
  position: relative;
  border: 1px solid #727272;
  border-radius: 8px;
  transition: all 300ms ease-in-out;
}
@media (max-width: 450px) {
  .contact__section-content .content__form .contact__form-input {
    height: 45px;
  }
}
.contact__section-content .content__form .contact__form-input label {
  position: absolute;
  top: -0.8rem;
  left: 1.5rem;
  background: white;
  padding: 0 1rem;
  text-transform: capitalize;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 700;
  z-index: 5;
  transition: all 300ms ease-in-out;
}
@media (max-width: 400px) {
  .contact__section-content .content__form .contact__form-input label {
    left: 0.5rem;
  }
}
.contact__section-content .content__form .contact__form-input input {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 0;
  outline: none;
  position: relative;
  padding: 0 1.5rem;
  color: #3B3B3B;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}
.contact__section-content .content__form .contact__form-input.textarea-field {
  min-height: 200px;
}
@media (max-width: 450px) {
  .contact__section-content .content__form .contact__form-input.textarea-field {
    min-height: 150px;
  }
}
.contact__section-content .content__form .contact__form-input.textarea-field textarea {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 0;
  outline: none;
  position: relative;
  padding: 1.5rem;
  color: #3B3B3B;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
  resize: none;
}
.contact__section-content .content__form .contact__form-input.active label {
  color: var(--secondary-color);
}
.contact__section-content .content__form .contact__form .form-send-btn .send__btn {
  min-width: 150px;
  height: 60px;
  border-radius: 8px;
  border: 2px solid var(--secondary-color);
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  transition: all 300ms ease-in-out;
}
.contact__section-content .content__form .contact__form .form-send-btn .send__btn:hover {
  background: white;
}
.contact__section-content .content__form .contact__form .form-send-btn .send__btn:hover span {
  color: var(--secondary-color);
}
.contact__section-content .content__form .contact__form .form-send-btn .send__btn span {
  text-transform: capitalize;
  color: white;
  letter-spacing: 0.5px;
  font-size: 18px;
  font-weight: 400;
  transition: all 300ms ease-in-out;
}
.contact__section-content .content__details {
  flex: 1;
  width: 100%;
}
.contact__section-content .content__details-grid {
  display: flex;
  flex-direction: column;
  grid-gap: 3rem;
  align-items: center;
}
.contact__section-content .content__details-grid .contact__img {
  width: 100%;
  max-width: 450px;
}
.contact__section-content .content__details-grid .contact__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact__section-content .content__details-grid .info__grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact__section-content .content__details-grid .info__grid {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .contact__section-content .content__details-grid .info__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact__section-content .content__details-grid .info__grid-list {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 1rem;
}
.contact__section-content .content__details-grid .info__grid-list svg {
  color: var(--secondary-color);
  font-size: 22px;
}
.contact__section-content .content__details-grid .social__icons {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 500px) {
  .contact__section-content .content__details-grid .social__icons {
    justify-content: space-between;
  }
}
.contact__section-content .content__details-grid .social__icons .icons {
  width: 100%;
  max-width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
}
.contact__section-content .content__details-grid .social__icons .icons:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.contact__section-content .content__details-grid .social__icons .icons:hover svg {
  color: white;
}
.contact__section-content .content__details-grid .social__icons .icons::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50px;
  background: var(--secondary-color);
  transition: all 200ms var(--cubic-bezier);
}
.contact__section-content .content__details-grid .social__icons .icons svg {
  position: relative;
  color: var(--secondary-color);
  font-size: 24px;
  transition: all 300ms ease-in-out;
}
@media (max-width: 500px) {
  .contact__section-content .content__details-grid .social__icons .icons svg {
    font-size: 20px;
  }
}
