@font-face {
  font-family: Kodaro;
  src: url('./fonts/KODARO.ttf') format('truetype');
}

:root {
  --white: #fff;
  --black: #000;
  --blue: #185ee0;
  --light-blue: #e6eef9;

  --color-primary-dark: #3446e1;
}

/* ========================= CHANGES ON 17 FEB ========================= */
/* .nav-tabs {
  border: 3px solid red;
  display: flex;
  background: white;
  gap: 7px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.5rem;
  border-radius: 99px;
  left: 50%;
}

.nav-tabs * {
  z-index: 2;
}

.tab {
  border: 1px solid green;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0px 10px;
  width: 65px;
  font-size: 0.8rem;
  color: black;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
}

.tab.active {
  overflow: hidden;
  color: var(--white);
} */

/* Styling for the active tab */
/* .tab.active-tab {
  overflow: hidden;
  color: #185ee0;
  background-color: #e6eef9;
} */

/* Styling for the glider */
/* .glider {
  position: absolute;
  display: flex;
  height: 30px;
  padding: 0px 10px;
  width: 65px;
  background-color: #e6eef9;
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
  overflow: hidden;
}

.glider2 {
  position: absolute;
  display: flex;
  height: 30px;
  width: 70px;
  background-color: var(--color-primary-dark);
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
  overflow: hidden;
} */

/* Header */
.hero-bottom > img {
  position: absolute;
  object-position: 60%;
  bottom: -255px;
  left: 0;
  width: 100%;
}

/* Header */
.logo {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 29%;
  left: -63px;
}

.text-anim {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}

.circle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4356ea;
  margin: 0 5px;
}

.text-anim {
  color: var(--white);
  margin-top: 10px;
}

.text-carousel {
  position: relative;
  overflow: hidden;
  width: 150px;
  height: 1.5rem;
  color: var(--white);
}

@media screen and (max-width: 767px) {
  .text-carousel {
    width: 125px;
  }
}

.text-carousel > .inner {
  position: absolute;
  top: 30px;
}

.text-carousel > .inner.item-first {
  position: absolute;
  top: 30px;
}

.about-paragraph-hero {
  color: var(--white);
  margin-left: 110px;
  font-size: 1.2em;
  text-align: start;
}

.about-paragraph-hero > p {
  text-align: center;
  letter-spacing: 7px;
}

.nav-container {
  position: relative;
}

@media screen and (min-width: 991px) {
  /* .nav-menu.fixed {
    position: fixed;
    top: 20px;
    margin-left: 33%;
    margin-right: 0px;
    animation: slide-down 0.5s forwards;
    border: 4px solid green;
  } */

  .nav-menu.fixed {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: slide-down 0.5s forwards;
  }
}

@keyframes slide-down {
  0% {
    top: -100px;
  }
  100% {
    top: 20px;
  }
}

/* Drop down menu */
.menu-dropdown {
  position: absolute;
  width: 307px;
  top: 15px;
  left: 0;
  width: 341px;
  height: 0px;
  background: white;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  z-index: -2;
  overflow: hidden;
}

@media screen and (max-width: 998px) {
  .menu-dropdown {
    top: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
  .column {
    padding-bottom: 2rem !important;
  }
}

/* Column */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Column */
.column {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 10px;
}

.column:nth-child(1) {
  padding-left: 1.5rem;
}

.column.second {
  padding-right: 1.2rem;
}

.column > h5 {
  color: var(--black);
  font-weight: 800;
  margin-bottom: 0px !important;
  margin-top: 10px !important;
  font-size: 1rem;
  align-self: center;
}

.column > a {
  color: var(--black);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px;
  padding-left: 10px;
  border: 1px solid white;
}

.column > a:hover {
  background-color: #ecffe3;
  border-radius: 8px;
  color: #12032a;
  border: 1px solid #4356ea;
}

.column > .menu-dropdown-link.active {
  background-color: #ecffe3;
  border-radius: 8px;
  color: #12032a;
  border: 1px solid #4356ea;
}
.column > p {
  color: var(--black);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px;
  padding-left: 10px;
  border: 1px solid white;
}

.column > p:hover {
  background-color: #ecffe3;
  border-radius: 8px;
  color: #12032a;
  border: 1px solid #4356ea;
}

.column.second .menu-dropdown-link:nth-child(2):hover {
  background-color: #ecffe3;
  border-radius: 8px;
  color: #12032a;
  border: 1px solid #4356ea;
}
.column.second .menu-dropdown-link:nth-child(3):hover {
  background-color: #ffe5ee;
  border-radius: 8px;
  color: #12032a;
  border: 1px solid #9f878f;
}
.column.second .menu-dropdown-link:nth-child(4):hover {
  background-color: #e6ffe4;
  border-radius: 8px;
  color: #12032a;
  border: 1px solid #7d897c;
}
.column.second .menu-dropdown-link:nth-child(5):hover {
  background-color: #fff5d3;
  border-radius: 8px;
  color: #12032a;
  border: 1px solid #ccc4a9;
}

.menu-dropdown.dropdown {
  display: flex;
}

.menu-dropdown.hidden {
  display: none;
}

table {
  width: 90%;
  min-width: 300px;
  border-collapse: collapse;
}

th {
  background-color: transparent;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  font-size: medium;
  border: 1px solid var(--black);
}

th:hover {
  background-color: none;
}

td {
  padding: 1rem;
  text-align: center;
  font-size: medium;
  color: #ccc;
}

.diff-content1 {
  background-color: #0f1012;
}

.diff-content2 {
  background-color: var(--black);
}

.diff-row:hover td {
  background-color: #16181f;
  color: var(--white);
}

.diff-row:hover .diff-content1 > i {
  background-color: #16181f;
  color: var(--white) !important;
}

tr td {
  border-top: 1px solid #454545;
  border-bottom: 1px solid #454545;
}

/* GROWTH GRAPH */
.section.is--graph {
  justify-content: flex-start;
}
.section.is--graph.is--relative {
  max-width: 100vw;
  position: relative;
  overflow: visible;
}

.is--graph-container {
  margin: 0 auto;
}

.capabilities-graph {
  width: 100%;
  height: 50vh;
  max-width: 100dvw;
  min-height: 50vh;
  min-width: 80vw;
  background-color: var(--yellowish-white);
  border-radius: 22px;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 45vh;
  overflow: hidden;
}

.container.is--vertical.is--relative {
  min-height: 600vh;
  justify-content: flex-start;
  position: relative;
}

.capabilities-head {
  height: auto;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 52px;
  display: flex;
}

.capabilities-header {
  width: 65%;
}
.capabilities-subheader {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}
.capabilities-subheader.is--max-width {
  justify-content: flex-end;
}
.capabilities-subheader__img {
  transform: rotate(3.5deg);
}

.graph {
  max-width: none;
  min-height: 100%;
  min-width: 100%;
  display: none;
  position: relative;
  top: 0;
}

.capabilities-head-copy,
.capabilities-head-copy-copy {
  flex-direction: column;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 52px;
  display: flex;
}
.banner-image {
  min-height: 100%;
}

.graph-indicator {
  z-index: 20;
  width: 0.25vw;
  height: 13.5%;
  background-color: rgb(248, 79, 57);
  position: absolute;
  bottom: 0;
  left: 8vw;
}
.capabilities-wrapper {
  position: -webkit-sticky;
  position: sticky;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 70vh;
  display: flex;
  top: 0;
}

.graph-image {
  z-index: 10;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: fill;
  display: block;
  position: relative;
}
.capabilities-graph__bg-red {
  z-index: 0;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  opacity: 1;
  filter: blur(5px);
  background-image: linear-gradient(#552621, #1e1e1e);
  position: absolute;
}
.capabilities-graph__bg-green {
  z-index: 0;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  filter: blur(5px);
  background-image: linear-gradient(#163c13, #1e1e1e);
  position: absolute;
}
.graph-dot {
  width: 0.5vh;
  height: 0.5vw;
  max-height: 0.5vw;
  max-width: 0.5vw;
  min-height: 0.5vw;
  min-width: 0.5vw;
  background-color: rgb(248, 79, 57);
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: -0.125vw;
}

.graph-dot__glow {
  width: 1vh;
  height: 1vw;
  max-height: 1vw;
  max-width: 1vw;
  min-height: 1vw;
  min-width: 1vw;
  background-color: rgb(248, 79, 57);
  filter: blur(5px);
  border-radius: 100px;
  position: absolute;
  top: -0.5vh;
  left: -0.4vw;
}
.capabilities-graph__bg-img {
  z-index: 5;
  max-height: 100%;
  min-height: 100%;
  object-fit: contain;
  background-image: url(https://assets-global.website-files.com/642ac36c89e40068e23a1e52/642ac36c89e400113b3a1e5f_graphLine.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  display: none;
  position: absolute;
}
.capabilities-cash {
  z-index: 15;
  background-color: rgb(248, 79, 57);
  color: var(--dark-grey);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 0.25vw 0.5vw;
  font-size: 2dvw;
  font-weight: 600;
  line-height: 2dvw;
  display: flex;
  position: absolute;
  top: 60%;
  left: 6%;
}
.capabilities-text {
  opacity: 0;
  color: var(--white);
  font-size: 2vw;
  font-weight: 500;
  line-height: 2.2vw;
  position: absolute;
  top: 10vh;
  left: 5vw;
}
.capabilities-text__start {
  position: absolute;
}
.capabilities-text__number {
  min-width: 6ch;
  text-align: center;
  color: white;
}
.capabilities-text2 {
  opacity: 0;
  color: var(--white);
  font-size: 2vw;
  font-weight: 500;
  line-height: 2.2vw;
  position: absolute;
  top: 10vh;
  left: 5vw;
}
.capabilities-text2__start {
  position: absolute;
}
.capabilities-text2__number {
  min-width: 6ch;
  text-align: center;
}

.service-image__rotating-button {
  max-width: 50%;
  min-width: 120px;
  position: relative;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.service-image__rotating {
  position: absolute;
  top: -37px;
  left: -75px;
}
.service-image__rotating.is--keep-scrolling {
  justify-content: center;
  align-items: center;
  display: flex;
  top: 10vh;
  left: 45vw;
  transform: scale(1.3);
}

.service-image__rotating-laptop {
  max-width: 80px;
  position: absolute;
  top: 19%;
  bottom: 0%;
  left: 19%;
  right: 0%;
}
.service-image__rotating-laptop.is--aligned {
  max-width: 50px;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.graph-indicator {
  will-change: transform, width, height, background-color, position;
  z-index: 20;
  width: 0.25vw;
  height: 11.5%;
  background-color: rgb(248, 79, 57);
  position: absolute;
  bottom: 0;
  left: 8vw;
}

@media screen and (max-width: 991px) {
  .capabilities-head {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
  }
}

/* Between 820px and 1024px */
@media (max-width: 400px) {
  .capabilities-wrapper {
    margin-bottom: 60vh !important;
  }
}

.leading-brands {
  letter-spacing: 10px !important;
}

@media screen and (max-width: 767px) {
  .capabilities-graph {
    top: 50vh;
  }
  .capabilities-header {
    padding-bottom: 20px;
  }
  .capabilities-subheader {
    width: 80%;
    text-align: center;
    align-self: flex-end;
    align-items: center;
  }
  .capabilities-subheader__img {
    align-self: flex-end;
  }
  .capabilities-text {
    top: 20vh;
    left: 5vw;
    font-size: 3vw;
    line-height: 3.2vw;
  }
  .capabilities-text2 {
    top: 20vh;
    left: 5vw;
    font-size: 3vw;
    line-height: 3.2vw;
  }
  .leading-brands {
    letter-spacing: 2px !important;
  }
  .images-chips {
    padding: 12px;
  }
}

/* We Made these brand grow */
.grow-section {
  background-color: #7fd136;
}

.wrapper > h2 {
  color: var(--white) !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  letter-spacing: normal;
}

.wrapper > h2 > span {
  color: var(--blue);
}

.grow-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 3rem;
  margin-bottom: 32px;
}

.diff-image {
  display: none;
}

/* Media query for screens smaller than a certain width */
@media screen and (max-width: 998px) {
  .grow-cards {
    grid-template-columns: repeat(1, 1fr); /* Change to a single column layout */
    padding: 2rem; /* Adjust padding as needed */
  }

  table {
    display: none;
  }

  .diff-image {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 550px) {
  .grow-cards {
    grid-template-columns: repeat(1, 1fr);
    padding: 0rem;
  }
}

.grow-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-radius: 10px;
  background-color: #6ab02d;
  border-radius: 2px solid #6ab02d;
  box-shadow: 58px 23px 87px 0px rgba(17, 96, 8, 0.98);
  transition: background-color 0.3s, border 50s, border-radius 50s, box-shadow 50s;
}

.grow-cards .grow-card .brand-logo {
  width: 200px;
  margin-left: 3rem;
}

.grow-card > h2 {
  color: white;
  padding-left: 3rem;
  font-size: 64px;
}

.grow-card > h4 {
  color: whte;
  padding-left: 3rem;
  font-weight: 600;
  margin: 10px;
  font-size: 30px;
}

.grow-card > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  margin-left: 3rem;
  padding: 8px;
  border-radius: 20px;
  color: white;
  background-color: #3446e1;
}

/* Clients Section */
.w-layout-client {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .w-layout-client {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 550px) {
  .w-layout-client {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* @media screen and (max-width: 400px) {
  .w-layout-client {
    grid-template-columns: repeat(1, 1fr);
  }
} */

.client-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1/1;
  gap: 1rem;
  padding: 1rem;
  border-radius: 30px;
  background-color: #e0ecf1;
}

.client-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s, scale 0.3s;
}

.client-card img:hover {
  transition: filter 0.3s, scale 0.3s;
  filter: grayscale(0%);
  scale: 1.1;
}

/* TEAM MEMBERS */
/* Clients Section */
.w-layout-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 32px;
}

.team-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
  text-align: center;
  border-radius: 30px;
  background-color: #e0ecf1;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
}
/* 
.team-card-text {
  position: absolute;
  width: 95%;
  bottom: 0px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  margin-bottom: 20px;
  border-radius: 50px;
  background-color: #7fd136;
}

.team-title {
  color: white;
  text-align: center;
  font-size: clamp(0.9375rem, 0.9920634921vw, 1.5rem);
  font-family: 'Futura Pt Cond', sans-serif;
  text-transform: capitalize;
  padding: 8px 20px;
  border-radius: 50px;
  background-color: #070035;
} */

.team-card-text > p {
  color: #163c13;
  font-weight: bolder;
  font-size: 15px;
  margin-bottom: 1rem;
}

.team-title {
  color: #070035;
  font-family: 'Futura Pt Cond', sans-serif;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 5px;
}

@media screen and (max-width: 1120px) {
  .w-layout-team {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .w-layout-team {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 550px) {
  .w-layout-team {
    grid-template-columns: repeat(1, 1fr);
  }
}

.subscribe-to-newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 48px;
  padding-top: 20px;
  border-radius: 28px;
  background-color: #e0ecf1;
}

.subscribe-to-newsletter h4 {
  color: #1e1e1e;
  /* font-size: 1.5rem; */
}

.subscribe-to-newsletter h5 {
  color: #1e1e1e;
  font-size: 1rem;
}

.news-letter-form {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px;
}

.news-letter-form input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #3446e1;
}

.news-letter-form input::placeholder {
  font-size: 12px;
}

.news-letter-form button {
  padding: 10px;
  border-radius: 5px;
  background-color: #3446e1;
  color: white;
  position: relative;
  overflow: hidden;
  -webkit-transform: translateY(0px);
  -khtml-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.news-letter-form button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  -webkit-transform: skewX(-20deg);
  -khtml-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
  background-image: linear-gradient(to right, transparent, #7fd136, transparent);
  z-index: -2;
  animation: shine 1s linear infinite;
}

@keyframes shine {
  0% {
    left: -200px;
  }
  100% {
    left: 200px;
  }
}

.footer-logo-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.socials-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 20px;
}

.footer-bottom-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  border-top: 1px solid var(--accent-opacity-10);
}

.footer-bottom-text h1 {
  font-size: 20vw;
  /* font-style: italic; */
  letter-spacing: -20px;
}

.contact-details-footer {
  display: flex;
}

.contact-details-footer i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #7fd136;
  border-radius: 50%;
}

.footer-bottom-text h1:nth-child(1) {
  font-style: italic;
}

.footer-bottom-text h1:nth-child(2) {
  font-style: italic;
  margin-right: 35px;
}

.footer-bottom-text h1:nth-child(9) {
  font-style: italic;
  margin-right: 28px;
}

.footer-bottom-text h1:last-child {
  margin-right: 28px;
}

@media screen and (max-width: 900px) {
  .footer-bottom-text h1 {
    font-size: 15vw;
    letter-spacing: -2px;
  }
  .footer-bottom-text h1:nth-child(1) {
    font-style: normal;
  }

  .footer-bottom-text h1:nth-child(2) {
    font-style: normal;
    margin-right: 0px;
  }

  .footer-bottom-text h1:nth-child(9) {
    font-style: normal;
    margin-right: 0px;
  }
}

.growth-graph-heading h1 {
  font-size: 8vw;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

.marquee {
  width: 100%;
  grid-column-gap: 1rem;
  background-color: var(--coral);
  margin-bottom: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  overflow: hidden;
}

.marquee-content {
  /* min-width: 100%; */
  grid-column-gap: 1rem;
  flex: none;
  justify-content: space-around;
  display: flex;
}

.text-block {
  color: #000;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 9vw;
  font-weight: 900;
  line-height: 1;
}

.scroll {
  animation: scroll 10s linear infinite;
}

.reverse {
  animation-direction: reverse;
}

.progress-loader {
  top: 50%;
  left: 50%;
  width: 100%;
  background: gray;
  height: 20px;
  border-radius: 7px;
  margin-bottom: 30px;
}

.progress {
  width: 0%;
  height: 20px;
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
  background: red;
  transition: 0.5s;
}

.progress.playAnimation {
  width: 100%;
  animation: loading_44 10s cubic-bezier(0.06, 0.81, 0, 0.98);
  animation-play-state: running;
}

@keyframes loading_44 {
  0% {
    width: 0%;
    animation-timing-function: cubic-bezier(0.06, 0.81, 0, 0.98);
  }
  50% {
    width: 50%;
    animation-timing-function: cubic-bezier(0.06, 0.81, 0, 0.98);
  }
  60% {
    width: 60%;
    animation-timing-function: cubic-bezier(0.06, 0.81, 0, 0.98);
    animation-duration: 60s;
  }
  70% {
    width: 70%;
    animation-timing-function: cubic-bezier(0.06, 0.81, 0, 0.98);
    animation-duration: 60s;
  }
  80% {
    width: 80%;
    animation-timing-function: cubic-bezier(0.06, 0.81, 0, 0.98);
    animation-duration: 60s;
  }
  90% {
    width: 90%;
    animation-timing-function: cubic-bezier(0.06, 0.81, 0, 0.98);
    animation-duration: 60s;
  }
  100% {
    width: 100%;
    animation-timing-function: linear;
    animation-duration: 60s;
  }
}

.news-letter-wrapper {
  position: relative;
}

.news-letter-wrapper > p {
  font-size: 1.5rem;
  position: absolute;
  color: red;
  transform: rotate(-18deg);
  top: -13px;
  left: -163px;
  background: beige;
  padding: 2px;
  border-radius: 2px;
  font-weight: bolder;
}

.bottom-sticky-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  width: 100%;
  background: #3446e1;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 20px;
  transform: translateY(100%);
}

.bottom-sticky-contact.sticky > h4 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: capitalize;
}

.contact-details-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
/* 
.contact-details-sticky {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 25px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.contact-details-sticky:hover {
  transition: all 0.3s ease-in-out;
  background-color: #7fd136;
} */

.contact-details-sticky {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 25px;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}

.contact-details-sticky::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #7fd136;
  z-index: -1;
  animation: flowingBackground 2s infinite alternate;
  opacity: 0;
}

@keyframes flowingBackground {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.contact-details-sticky:hover::after {
  opacity: 1;
}

.contact-details-sticky i {
  color: white;
  font-size: 1.2rem;
  padding: 0.7rem;
  background-color: #7fd136;
  border-radius: 50%;
}

.news-letter-button > i {
  animation: shakeIcon3D 2s ease-in-out infinite;
}

@keyframes shakeIcon3D {
  /* Shake 3D Animation */
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  10% {
    transform: rotateX(0deg) rotateY(-10deg) rotateZ(10deg);
  }
  20% {
    transform: rotateX(0deg) rotateY(10deg) rotateZ(-10deg);
  }
  30% {
    transform: rotateX(0deg) rotateY(-10deg) rotateZ(10deg);
  }
  40% {
    transform: rotateX(0deg) rotateY(10deg) rotateZ(-10deg);
  }
  50% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
}

@media screen and (max-width: 991px) {
  .bottom-sticky-contact.sticky {
    display: none;
  }
  .news-letter-wrapper > p {
    transform: rotate(0deg);
    top: -40px;
    left: 0%;
  }

  .footer-logo-right {
    align-self: center;
  }
  .container.is--vertical.is--relative {
    display: none;
  }
}

.contact-details-sticky-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.w-button.sticky {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.w-button.sticky:hover {
  animation: shake3D 3s ease-in-out;
  background-color: #7fd136;
  transition: all 0.3s ease-in-out;
}

/* Animation */
@keyframes shake3D {
  /* Shake 3D Animation */
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  10% {
    transform: rotateX(0deg) rotateY(-5deg) rotateZ(5deg);
  }
  20% {
    transform: rotateX(0deg) rotateY(5deg) rotateZ(-5deg);
  }
  30% {
    transform: rotateX(0deg) rotateY(-5deg) rotateZ(5deg);
  }
  40% {
    transform: rotateX(0deg) rotateY(5deg) rotateZ(-5deg);
  }
  50% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
}

.container.is-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 30, 43, 0.6);
  /* background: url(../assets/images/2.png); */
  background-position: 50% 50%;
  background-size: cover;
  z-index: 1;
}
/* 
.container.is-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/header-text.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  animation: fadeUp 1s linear;
  transition: all 0.3s ease-in-out;
} */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-behind-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-behind-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.text-behind-image h1 {
  position: absolute;
  top: 10%;
  font-family: 'Kodaro';
  font-size: 20vw;
  letter-spacing: 50px;
  text-shadow: 2px 2px 2px #000;
}

.text-behind-image h1:nth-child(1) {
  top: 35%;
  color: #7fd136;
}

.text-behind-image h1:nth-child(2) {
  top: 60%;
  outline-width: 2px;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #7fd136;
}

.text-behind-image h1:nth-child(3) {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #7fd136;
}

/* TALK button */

.talk-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 110px;
  background-color: #7fd136;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  border: 0.125rem solid #7fd136;
  border-radius: 4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  transition: color 0.3s, border-color 0.3s;
  z-index: 999999999;
}

@media screen and (max-width: 991px) {
  .talk-button {
    top: 10px;
    right: 2%;
  }
}

.talk-button .avatar img {
  width: 100%;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.talk-button .dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-primary-dark);
  border-radius: 50%;
  margin-left: 0.5rem;
  position: absolute;
  top: -5px;
  right: 5px;
}

.black-text {
  color: black;
  margin-top: 7px;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/* POPUP FORM */
.form {
  width: 60%;
}
.form-popup {
  display: none;
  position: fixed;
  overflow-y: scroll;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  z-index: 2147483647 !important;
}

.form-popup-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: black;
  cursor: pointer;
  z-index: 10000;
}

.form-response-success > h3 {
  color: #7fd136;
  text-align: center;
}
.form-popup.submit {
  background-image: url(/assets/images/confetti.gif);
}

.form-response-success {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-popup-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-content form {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* FORM */
.req-form {
  min-height: 100vh;
  /* overflow: scroll; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 5px 5px;
  background: #ffffff;
}
.req-form.-fixed {
  position: fixed;
  height: 100vh;
  width: 100%;
  overflow-y: auto;
  top: 0;
  left: 0;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  justify-content: flex-start;
  padding: 100px 30px;
  scrollbar-color: #c2c2c2 #ffffff;
  scrollbar-width: thin;
}
.req-form.-fixed::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.req-form.-fixed::-webkit-scrollbar-track {
  background-color: #ffffff;
  transition: background-color 1s;
}
.req-form.-fixed::-webkit-scrollbar-thumb {
  background-color: #a6a6a6;
  transition: background-color 1s;
}
.req-form.-fixed.-active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.req-form.-fixed.-success {
  pointer-events: none;
}
.req-form__cross {
  --size: 32px;
  position: absolute;
  right: 59px;
  top: 59px;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
}
.req-form__cross::before,
.req-form__cross::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000000;
  top: 0;
  left: 0;
  transform-origin: center center;
}
.req-form__cross::before {
  transform: translateY(calc(var(--size) / 2)) rotate(45deg);
}
.req-form__cross::after {
  transform: translateY(calc(var(--size) / 2)) rotate(-45deg);
}
.req-form h3,
.req-form h4,
.req-form .title {
  font-family: 'Plus Jakarta Display Medium', sans-serif;
}
.req-form .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.req-form .title .letter {
  margin: 0 3px;
}
.req-form .title .title_video {
  position: relative;
  width: 75px;
  height: 75px;
  margin: 0 8px;
  border-radius: 100%;
  overflow: hidden;
}
.req-form .title .title_video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}
.req-form__content {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}
@media screen and (max-width: 1080px) {
  .req-form__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .form {
    width: 100%;
  }
  .form-popup {
    overflow-y: scroll;
  }
}
.req-form__text {
  margin-bottom: 65px;
}
.req-form__text .title,
.req-form__text h3 {
  margin-bottom: 5px;
  font-size: 44px;
}
.req-form__text p,
.req-form__text h3 {
  font-size: 44px;
}
.req-form__clutch {
  margin-bottom: 50px;
}
.req-form__clutch.-ui {
  margin-top: 20px;
}
.req-form__socials,
.req-form__contacts,
.req-form__clutch {
  h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #cccccc;
  }
}
.req-form__socials {
  margin-bottom: 40px;
}
.req-form__socials > div {
  display: flex;
  gap: 10px;
  margin: 0 -5px;
}
.req-form__socials > div > :nth-child(n) {
  margin: 0 5px;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 170px;
  font-size: 16px;
}
footer.address {
  width: 200px;
  color: #cccccc;
  margin-bottom: 35px;
}
footer > :last-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  color: #cccccc;
}
footer > :last-child a {
  padding: 5px 10px;
  border-radius: 50px;
  background-color: #e8e8e8;
  color: #000000;
  font-size: 17px;
  letter-spacing: -0.03em;
  transition: 0.3s opacity ease;
}
footer > :last-child a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .req-form {
    padding: 0px 20px 27px;
  }
  .req-form.-fixed {
    padding-bottom: 50px !important;
  }
  .req-form__cross {
    right: 20px;
    top: 20px;
  }
  .req-form__text {
    margin-bottom: 46px;
  }
  .req-form__text .title,
  .req-form__text h3 {
    margin-bottom: 7px;
  }
  .req-form__text .title,
  .req-form__text p,
  .req-form__text h3 {
    font-size: 24px;
  }
  .form-modal-footer {
    display: flex;
    align-items: flex-start;
    margin-top: 65px;
    margin-bottom: 80px;
  }
  .form-modal-footer .menu__text {
    justify-content: space-between;
    width: 100%;
  }
  .req-form__clutch.-ui {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .req-form__socials,
  .req-form__contacts,
  .req-form__clutch {
    display: none;
  }
  footer {
    margin-top: 89px;
    padding: 48px 0 0;
  }
}
@media (min-width: 1024px) {
  .req-form {
    padding: 5px 5px 5px;
  }
}

.tr-3 {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.tr-5 {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.tr-3 > a > i {
  color: #7fd136;
  font-size: 2rem;
}

/* INPUTS */
.text-input {
  width: 100%;
}

.text-input.invalid label {
  color: rgb(212, 64, 64);
}

.text-input label,
.text-input input {
  display: block;
}

.text-input label {
  font-family: 'Plus Jakarta Display Medium', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
}

.text-input input {
  font-family: 'Plus Jakarta Display Regular', sans-serif;
  width: 100%;
  font-size: 14px;
  padding: 21px 21px;
  border: none;
  border-bottom: 1px solid black;
  transition: 0.4s;
  background: transparent;
}

@media (min-width: 768px) {
  .text-input input {
    padding: 12px 12px;
    font-size: 16px;
  }
}

.text-input input::placeholder {
  color: #f2f2f2;
}

.text-input input[aria-invalid='true'] {
  border-color: rgb(212, 64, 64);
}

/* FORM OTHER */
.form__inputs.tr-1 {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .form__inputs.tr-1 {
    flex-direction: column;
  }
}

/*  */
.choice-input {
  width: fit-content;
  position: relative;
  cursor: pointer;
}

.choice-input .tr-y > * {
  transition: transform 0.5s ease;
}

.choice-input .tr-y > :first-child {
  transform: none;
}

.choice-input .tr-y > :last-child {
  transform: translateY(80%) rotate(5deg);
}

.choice-input:hover .tr-y > :first-child {
  transform: translateY(-180%) rotate(5deg);
}

.choice-input:hover .tr-y > :last-child {
  transform: translateY(-100%) rotate(0deg);
}

.choice-input .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.choice-input input {
  display: none;
}

.choice-input label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.choice-input .content {
  position: relative;
  width: max-content;
  display: inline-block;
  padding: 21px 42px;
  background: #ffffff;
  border: 1.5px solid #e6e6e6;
  border-radius: 60px;
  font-size: 14px;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

@media (max-width: 767px) {
  .choice-input .content {
    padding: 12px 24px;
    font-size: 12px;
  }
}

.choice-input .content:hover {
  border-color: #cccccc;
}

.choice-input input[type='checkbox']:checked ~ .form__check > .form__check_active {
  opacity: 1;
}

.choice-input input[type]:checked + .content {
  border: 1px solid #000000;
}

.button-pulse.tr-7.sbmt-btn > button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #7fd136;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}

@media screen and (max-width: 361px) {
  .nav-menu {
    /* border: 3px solid red; */
    left: 3%;
  }
  .medium-s {
    font-size: 14px;
  }
}

@media (max-width: 376px) and (min-width: 361px) {
  .nav-menu {
    left: 5%;
  }
}

@media (max-width: 400px) and (min-width: 376px) {
  .nav-menu {
    left: 7%;
  }
}

.w-layout-game {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 32px;
}

@media screen and (max-width: 1024px) {
  .w-layout-game {
    grid-template-columns: 1fr;
  }
  .w-layout-game > .section-game {
    display: none;
  }
}

/* TAG */

.section-game {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tag-wrapper {
  width: 100%;
  height: 100%;
  background-color: #15181d;
  background-image: url('https://assets-global.website-files.com/64f41ea3b31af27272713c03/654515641ecb2799ebd8c6a1_content-bg-shape.svg');
  background-position: 50% 18%;
  background-repeat: no-repeat;
  background-size: 799px;
  padding: 10px;
  position: relative;
}

.tag-element {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(82, 89, 99, 0.3);
  position: relative;
  overflow: visible;
}

.tag-vector-1 {
  position: absolute;
  top: -17px;
  bottom: auto;
  left: -17px;
  right: auto;
}

.tag-vector-2 {
  position: absolute;
  top: -17px;
  bottom: auto;
  left: auto;
  right: -17px;
}

.tag-vector-3 {
  position: absolute;
  top: auto;
  bottom: -22px;
  left: -17px;
  right: auto;
}

.tag-vector-4 {
  position: absolute;
  top: auto;
  bottom: -22px;
  left: auto;
  right: -17px;
}

.tag-line-1 {
  width: 97px;
  height: 97px;
  border-bottom: 1px solid rgba(82, 89, 99, 0.3);
  border-right: 1px solid rgba(82, 89, 99, 0.3);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.tag-line-2 {
  width: 97px;
  height: 97px;
  border-bottom: 1px solid rgba(82, 89, 99, 0.3);
  border-left: 1px solid rgba(82, 89, 99, 0.3);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.tag-line-3 {
  width: 97px;
  height: 97px;
  border-top: 1px solid rgba(82, 89, 99, 0.3);
  border-right: 1px solid rgba(82, 89, 99, 0.3);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.tag-line-4 {
  width: 97px;
  height: 97px;
  border-top: 1px solid rgba(82, 89, 99, 0.3);
  border-left: 1px solid rgba(82, 89, 99, 0.3);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.tag-canvas {
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  overflow: hidden;
  transform: scale(1);
}

.tag-content-wrapper {
  width: 100%;
  max-width: 1100px;
  position: absolute;
  top: 130px;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%);
}

.tag-content-text-1 {
  z-index: 2;
  color: #ced1dc;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Clashdisplay, sans-serif;
  font-size: 66px;
  font-weight: 600;
  line-height: 110%;
  position: relative;
}

.tag-content-shape {
  z-index: 1;
  width: 800px;
  display: none;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.tag-content-text-2 {
  z-index: 2;
  color: #ced1dc;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Clashdisplay, sans-serif;
  font-size: 66px;
  font-weight: 600;
  line-height: 110%;
  position: relative;
}

.tag-content-text-wrap {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .tag-line-1,
  .tag-line-2,
  .tag-line-3,
  .tag-line-4 {
    width: 66px;
    height: 66px;
  }

  .tag-content-text-1 {
    font-size: 40px;
    font-weight: 600;
  }

  .tag-content-shape {
    width: 451px;
  }

  .tag-content-text-2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .tag-canvas {
    width: 125%;
    height: 125%;
    transform: scale(0.8);
  }

  .tag-content-text-1,
  .tag-content-text-2 {
    font-size: 20px;
  }

  .h1.is-center {
    font-size: 50px;
  }
  .footer-logo-wrapper {
    gap: 0px;
  }
}

@media screen and (max-width: 479px) {
  .tag-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .tag-line-1,
  .tag-line-2,
  .tag-line-3,
  .tag-line-4 {
    width: 26px;
  }

  .tag-content-wrapper {
    top: 50px;
  }

  .tag-content-text-1 {
    font-size: 20px;
  }

  .tag-content-shape {
    width: 200px;
  }

  .tag-content-text-2 {
    font-size: 20px;
  }
}

@font-face {
  font-family: 'Clashdisplay';
  src: url('https://assets.website-files.com/64f41ea3b31af27272713c03/64f579636e20f190be6f9c34_ClashDisplay-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.footer-bottom-text.about {
  border-top: none;
}

.footer-bottom-text.about h2 {
  margin-right: 10px;
}

.footer-bottom-text.about > .italic {
  transform: rotate(5deg);
}

.footer-bottom-text.about > .italic-opposite {
  transform: rotate(-5deg);
}

@media screen and (max-width: 767px) {
  .marquee.about {
    display: none;
  }

  .client-card {
    align-items: center;
  }

  .client-card img {
    width: 80%;
    height: 80%;
  }

  .w-layout-client {
    padding-right: 0.5rem !important;
    padding: 0;
  }
}

.four-blocks-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.four-blocks-grid h4 {
  font-size: 32px;
}

@media screen and (max-width: 1150px) {
  .four-blocks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.error-text {
  display: none;
  color: red;
  font-size: 1rem;
  font-weight: 600;
}

.contact-error {
  display: none;
  color: red;
  font-size: 1rem;
  font-weight: 600;
}

.contact-error.success {
  color: green;
}

.congratulation-text {
  display: none;
}

.congratulation-text h4 {
  color: #7fd136;
}
