/* variables and functions*/
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}
/* reset */
:root {
  --rotate: 90deg;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.2;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  background-color: hsl(223, 100%, 99%);
}
button,
input,
label {
  line-height: 1.1;
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
a {
  text-decoration-skip-ink: auto;
  text-decoration: none;
  display: inline-block;
  color: currentColor;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}
:root {
  --btn-radius: 14px;
  --border-thickness: 6px;
  /* visible ring thickness */
  --glow-blur: 8px;
  /* softness of the glow */
  --spin-duration: 4s;
  /* rotation speed */
  --btn-padding: 14px 28px;
  --accent-a: #ff6b6b;
  --accent-b: #ffd166;
  --accent-c: #6bffd1;
  --accent-d: #7a5cff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 3rem;
  border-radius: 100vw;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 3rem;
  border-radius: 100vw;
  color: hsl(223, 100%, 99%);
  background: linear-gradient(90deg, #2386ff 0%, #00aee3 100%);
  border: 0;
  transition: box-shadow 0.3s ease;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 6px 15px #00000040;
  outline: none;
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 3rem;
  border-radius: 100vw;
  background: radial-gradient(140% 140% at 80% 80%, #185ad4 0%, #0d2f6e 89%, transparent 80%), linear-gradient(112deg, #185ad4 0%, #0d2f6e 89%);
  position: relative;
}
.btn--secondary::before {
  content: "";
  position: absolute;
  border-radius: 100vw;
  background-image: linear-gradient(var(--rotate), #4B82DC 0%, #8870D3 50%, #B766BD 75%, #CC7296 88%, #F6AE00 100%);
  z-index: -1;
  animation: spin 2.5s linear infinite;
}
.btn--secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.8);
  filter: blur(10px);
  background-image: linear-gradient(var(--rotate), #4B82DC 0%, #8870D3 50%, #B766BD 75%, #CC7296 88%, #F6AE00 100%);
  opacity: 1;
  transition: opacity 0.5s;
  animation: spin 2.5s linear infinite;
}
@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}
.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex-gap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.container {
  padding: 0 2rem;
}
@media (min-width: 1536px) {
  .container {
    padding: 0;
    max-inline-size: 102.4rem;
  }
}
body:not(.logged-in) {
  overflow: hidden;
}
.under-maintence-block {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  place-content: center;
  background: linear-gradient(to bottom, #02cd9e, #2236f0 77.604%);
  z-index: 10000;
  color: #fff;
  overflow: hidden;
}
.under-maintence-block h2 {
  text-align: center;
  font-size: clamp(4rem, 4.2vw, 7rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.under-maintence-block p {
  text-align: center;
  font-size: clamp(1rem, 4.2vw, 2rem);
}
.right-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 3rem;
  border-radius: 100vw;
  background: linear-gradient(90deg, #2386ff 0%, #00aee3 100%);
  border: 0;
  transition: box-shadow 0.3s ease;
  font-size: 1.4rem;
  color: hsl(223, 100%, 99%);
  padding: 0.8rem 2rem;
}
.eglobe-world a,
.sales-team-content a,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 3rem;
  border-radius: 100vw;
  color: hsl(223, 100%, 99%);
  background: linear-gradient(90deg, #2386ff 0%, #00aee3 100%);
  border: 0;
  transition: box-shadow 0.3s ease;
  font-size: 1.4rem;
  padding: 0.8rem 2rem;
}
#eg-header .container-fluid nav ul {
  justify-content: center;
}
#eg-header .container-fluid nav ul li.has-megamenu > ul {
  font-weight: 500;
  border-radius: 2rem;
}
@media (min-width: 1280px) {
  #eg-header .container-fluid nav ul li.has-megamenu > ul {
    padding-block: 3rem;
  }
}
@media (min-width: 1280px) {
  #eg-header .container-fluid nav ul li:not(.has-megamenu) a {
    font-weight: 500;
    padding-inline: 2rem;
  }
}
#eg-header .container-fluid nav ul li a {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
@media (min-width: 1280px) {
  #eg-header .container-fluid nav ul li a {
    font-weight: 500;
    padding-inline: 2rem;
    font-size: 1.5rem;
  }
}
#eg-header .container-fluid nav ul li a span {
  display: none;
}
#eg-header .container-fluid nav > ul > li > a {
  height: 52px;
  display: inline-flex;
  align-items: center;
}
.page-template-new-home .container {
  padding: 0 2rem;
}
@media (min-width: 1536px) {
  .page-template-new-home .container {
    padding: 0;
    max-inline-size: 102.4rem;
  }
}
.page-template-new-home .hero-container {
  width: 90%;
  max-width: 1920px;
  margin-inline: auto;
}
.page-template-new-home .page-positioning {
  position: relative;
}
@media (max-width: 1279px) {
  .page-template-new-home .page-positioning {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
}
.page-template-new-home #eg-header {
  position: fixed;
  border: 0;
  top: calc(1.5rem + (100vh - 100vh));
  border-radius: 100px;
  height: 5.2rem;
  width: 95%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: hsl(223, 100%, 99%);
  box-shadow: rgba(0, 0, 0, 0.4) 0 0.602187px 0.602187px -1.25px, rgba(0, 0, 0, 0.36) 0 2.28853px 2.28853px -2.5px, rgba(0, 0, 0, 0.14) 0 10px 10px -3.75px;
}
@media (min-width: 1280px) {
  .page-template-new-home #eg-header {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 90rem;
  }
}
.page-template-new-home #eg-header .container-fluid {
  padding: 0 2rem;
}
.page-template-new-home #eg-header .container-fluid .eglobe-logo img {
  height: 3rem;
}
.page-template-new-home #eg-header .container-fluid nav {
  flex: 1;
  padding-inline: 2rem;
}
.page-template-new-home #eg-header .container-fluid nav .nav-mobile-close {
  border: 1px solid hsl(219, 79%, 24%);
  border-radius: 100vw;
  display: flex;
  padding: 0.5rem;
  margin-left: auto;
  background: none;
}
.page-template-new-home #eg-header .container-fluid nav .nav-mobile-close:focus-visible,
.page-template-new-home #eg-header .container-fluid nav .nav-mobile-close:hover {
  cursor: pointer;
}
@media (max-width: 1199px) {
  .page-template-new-home #eg-header .container-fluid nav {
    width: calc(100% - 80px);
  }
}
@media (min-width: 1200px) {
  .page-template-new-home #eg-header .container-fluid nav .nav-mobile-close {
    display: none;
  }
}
.page-template-new-home .hero-block {
  display: grid;
  overflow: hidden;
  background: url('../img/hero-image.png'), radial-gradient(140% 140% at 80% 80%, #185ad4 0%, #0d2f6e 89%, transparent 80%), linear-gradient(112deg, #185ad4 0%, #0d2f6e 89%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 15rem;
  padding-bottom: 5rem;
  position: relative;
}
.page-template-new-home .hero-block .hero__glow-cone {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, 20%) scale(0.55);
  width: 160%;
  height: 120%;
  pointer-events: none;
  z-index: 2;
  background: conic-gradient(from 180deg at 50% 90%, rgba(0, 200, 255, 0.9) 0deg, rgba(0, 150, 255, 0.45) 20deg, rgba(0, 100, 200, 0.18) 40deg, rgba(0, 60, 160, 0.06) 60deg, rgba(0, 0, 0, 0) 90deg);
  filter: blur(80px);
  opacity: 0;
  mix-blend-mode: screen;
  animation: glowIntro 2.8s ease-out 0.7s forwards, glowFlash 0.6s ease-in-out 3.5s forwards, corePulse 6s ease-in-out 4.1s infinite alternate;
}
@keyframes glowIntro {
  0% {
    opacity: 0;
    transform: translate(-50%, 20%) scale(0.55);
    filter: blur(110px);
  }
  100% {
    opacity: 0.85;
    transform: translate(-50%, 0%) scale(1);
    filter: blur(70px);
  }
}
@keyframes glowFlash {
  0% {
    opacity: 0.85;
    filter: blur(70px) brightness(1);
  }
  50% {
    opacity: 1;
    filter: blur(50px) brightness(1.6);
  }
  100% {
    opacity: 0.9;
    filter: blur(65px) brightness(1);
  }
}
@keyframes corePulse {
  0% {
    transform: translate(-50%, 0%) scale(1);
    opacity: 0.85;
  }
  100% {
    transform: translate(-50%, -3%) scale(1.12);
    opacity: 1;
  }
}
.page-template-new-home .hero-block .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  mix-blend-mode: lighten;
  opacity: 0.25;
}
@media (min-width: 480px) {
  .page-template-new-home .hero-block {
    padding-block: 20rem;
  }
}
@media (min-width: 1600px) {
  .page-template-new-home .hero-block {
    padding-top: 25rem;
    padding-bottom: 40rem;
  }
}
.page-template-new-home .hero-block .hero__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  color: hsl(223, 100%, 99%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .page-template-new-home .hero-block .hero__content {
    text-align: center;
  }
}
@media (min-width: 1199px) {
  .page-template-new-home .hero-block .hero__content {
    max-width: 80rem;
  }
}
.page-template-new-home .hero-block .hero__content h1 {
  background: linear-gradient(90deg, #FFFFFF 0%, #AEAEAE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(4.5rem, 4.2vw, 5rem);
  font-weight: 600;
}
.page-template-new-home .hero-block .hero__content p {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 50ch;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .page-template-new-home .hero-block .hero__content p {
    font-size: 1.8rem;
  }
}
.page-template-new-home .hero-block .hero__content .hero__actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.4rem;
}
.page-template-new-home .hero-block .hero__content .hero__actions .btn--secondary::before {
  width: 102%;
  height: 110%;
  top: -4%;
  left: -1%;
}
.page-template-new-home .hero-block .hero__content .hero__actions a {
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 480px) {
  .page-template-new-home .hero-block .hero__content .hero__actions a {
    text-align: start;
  }
}
@media (min-width: 640px) {
  .page-template-new-home .hero-block .hero__content .hero__actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 1.8rem;
  }
}
.page-template-new-home .hero-block .stat-block {
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex-wrap: wrap;
  gap: 2rem;
  inset: 0;
  z-index: 1;
}
@media (min-width: 640px) {
  .page-template-new-home .hero-block .stat-block {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1279px) {
  .page-template-new-home .hero-block .stat-block {
    position: absolute;
    gap: 1rem;
  }
}
.page-template-new-home .hero-block .stat-block .stat-card {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 1.4rem;
  gap: 1.6rem;
  padding: 1rem 2rem;
  overflow: hidden;
  color: hsl(223, 100%, 99%);
  border: 1px solid #5B70A8;
  border-radius: 2rem;
  box-shadow: 0 12px 20px 5px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.page-template-new-home .hero-block .stat-block .stat-card::before {
  content: "";
  width: 200px;
  height: 200px;
  background-color: #00aee3;
  border-radius: 100%;
  position: absolute;
  right: -20%;
  bottom: -125%;
  opacity: 0.2;
  filter: blur(20px);
}
.page-template-new-home .hero-block .stat-block .stat-card__icon {
  display: flex;
  border-radius: 2rem;
  padding: 1.2rem;
  background-color: #2861A4;
}
.page-template-new-home .hero-block .stat-block .stat-card__value {
  font-size: 2.5rem;
  font-weight: 300;
}
@media (min-width: 640px) {
  .page-template-new-home .hero-block .stat-block .stat-card {
    padding: 1.7rem 3rem;
    font-size: 4rem;
    min-width: 46%;
    max-width: 46%;
  }
}
@media (min-width: 1279px) {
  .page-template-new-home .hero-block .stat-block .stat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    min-width: 36rem;
    padding: 1.7rem 2rem;
  }
  .page-template-new-home .hero-block .stat-block .stat-card__value {
    font-size: 3rem;
  }
  .page-template-new-home .hero-block .stat-block .stat-card:nth-of-type(1) {
    top: 15rem;
    left: 0;
  }
  .page-template-new-home .hero-block .stat-block .stat-card:nth-of-type(2) {
    top: 35rem;
    left: 5rem;
  }
  .page-template-new-home .hero-block .stat-block .stat-card:nth-of-type(3) {
    top: 15rem;
    right: 0;
  }
  .page-template-new-home .hero-block .stat-block .stat-card:nth-of-type(4) {
    top: 35rem;
    right: 5rem;
  }
}
.page-template-new-home .section {
  padding-block: 5rem;
}
@media (min-width: 1024px) {
  .page-template-new-home .section {
    padding-block: 10rem;
  }
}
.page-template-new-home .section .section-block {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.page-template-new-home .section .section-block.ai-block h3 svg {
  margin-inline: 1rem;
}
@media (max-width: 1023px) {
  .page-template-new-home .section .section-block.ai-block h3 svg {
    margin-inline: 0.3rem;
    display: inline-block;
    height: 3rem;
  }
}
.page-template-new-home .section .section__header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.6rem;
}
.page-template-new-home .section .section__header-content h5 {
  font-size: 1.6rem;
  padding: 0.5rem 2rem;
  border-radius: 100vw;
  color: #185ad4;
  width: fit-content;
  background-color: rgba(78, 140, 255, 0.3);
}
.page-template-new-home .section .section__header-content.small-header h2 {
  font-size: 2.8rem;
}
.page-template-new-home .section .section__header-content h3 {
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  line-height: 1.1;
}
.page-template-new-home .section .section__header-content h3,
.page-template-new-home .section .section__header-content h2 {
  font-weight: 600;
  color: hsl(219, 79%, 24%);
  max-width: 54rem;
  text-transform: capitalize;
  text-align: center;
}
.page-template-new-home .section .section__header-content p {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  max-width: 50ch;
  text-align: center;
  font-weight: 400;
}
.page-template-new-home .section .section__header-content strong {
  font-weight: 600;
  background: linear-gradient(var(--rotate), #4B82DC 0%, #8870D3 50%, #B766BD 75%, #CC7296 88%, #F6AE00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 1024px) {
  .page-template-new-home .section .section__header-content {
    gap: 2.8rem;
  }
}
.page-template-new-home .section .small-header h2 {
  font-size: 2.8rem;
}
.page-template-new-home .section.full-bleed {
  background-color: hsla(220, 100%, 93%, 0.2);
  box-shadow: 0 0 0 100vmax hsla(220, 100%, 93%, 0.2);
  clip-path: inset(0 -100vmax);
}
.page-template-new-home .section.rounded-bleed {
  border-radius: 2rem;
  background-color: hsla(220, 100%, 93%, 0.2);
  box-shadow: 0 0 0 90vmax hsla(220, 100%, 93%, 0.2);
  clip-path: inset(0 -90vmax);
}
.page-template-new-home .section .section-content .scroller {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 4rem;
  align-items: center;
  justify-items: center;
  padding: 2.4rem 0;
}
@media (min-width: 768px) {
  .page-template-new-home .section .section-content .scroller {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.page-template-new-home .section .section-content .scroller img {
  max-width: 100%;
  height: 4rem;
  object-fit: contain;
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.page-template-new-home .section .section-content .scroller img:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .page-template-new-home .section .section-content .scroller img {
    height: 5rem;
  }
}
.page-template-new-home .section .section-content .challenges-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}
.page-template-new-home .section .section-content .challenges-block .challenge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding-block: 2rem;
}
.page-template-new-home .section .section-content .challenges-block .challenge .icon {
  padding: 1rem 1.2rem;
  width: fit-content;
  border: 1px solid hsl(219, 79%, 24%);
  border-radius: 1rem;
}
.page-template-new-home .section .section-content .challenges-block .challenge .description {
  text-align: center;
  font-size: 1.4rem;
}
.page-template-new-home .section .section-content .features__cards {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  place-content: center;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
}
.page-template-new-home .section .section-content .features__cards .card {
  position: relative;
  border-radius: 1.5rem;
  background-color: hsl(220, 100%, 93%);
  padding: 3rem;
  overflow: hidden;
}
.page-template-new-home .section .section-content .features__cards .card__icon {
  display: none;
}
@media (min-width: 480px) {
  .page-template-new-home .section .section-content .features__cards .card__icon {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .page-template-new-home .section .section-content .features__cards .card__icon {
    align-self: self-end;
  }
}
.page-template-new-home .section .section-content .features__cards .card__icon.right-bottom svg {
  position: absolute;
  right: 20px;
  bottom: -10px;
}
.page-template-new-home .section .section-content .features__cards .card__icon.watermark svg {
  position: absolute;
  bottom: -20px;
  right: 0;
}
.page-template-new-home .section .section-content .features__cards .card p {
  font-size: 2.3rem;
  line-height: 1.4;
  font-weight: 500;
  color: hsl(219, 79%, 24%);
}
.page-template-new-home .section .section-content .features__cards .card .card__logos {
  position: relative;
  height: 17rem;
}
@media (min-width: 768px) {
  .page-template-new-home .section .section-content .features__cards .card .card__logos {
    height: 20rem;
  }
}
.page-template-new-home .section .section-content .features__cards .card .card__logos img {
  position: absolute;
  height: 4rem;
}
.page-template-new-home .section .section-content .features__cards .card .card__logos img:nth-child(1) {
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-template-new-home .section .section-content .features__cards .card .card__logos img:nth-child(2) {
  top: 30%;
  left: 3%;
  transform: rotate(-10deg);
}
@media (min-width: 480px) and (max-width: 1023px) {
  .page-template-new-home .section .section-content .features__cards .card .card__logos img:nth-child(2) {
    top: 40%;
  }
}
.page-template-new-home .section .section-content .features__cards .card .card__logos img:nth-child(3) {
  top: 60%;
  right: 3%;
  transform: rotate(5deg);
}
@media (min-width: 480px) and (max-width: 1023px) {
  .page-template-new-home .section .section-content .features__cards .card .card__logos img {
    height: 5.5rem;
  }
}
.page-template-new-home .section .section-content .features__cards .card--left {
  grid-column: 1 / -1;
}
.page-template-new-home .section .section-content .features__cards .card--mid-top {
  grid-column: 1 / 2;
}
.page-template-new-home .section .section-content .features__cards .card--mid-bottom {
  display: flex;
  align-items: center;
  grid-column: 2 / 3;
}
.page-template-new-home .section .section-content .features__cards .card--right {
  grid-column: 1 / -1;
}
@media (max-width: 480px) {
  .page-template-new-home .section .section-content .features__cards {
    grid-template-columns: 1fr;
  }
  .page-template-new-home .section .section-content .features__cards .card--left,
  .page-template-new-home .section .section-content .features__cards .card--mid-top,
  .page-template-new-home .section .section-content .features__cards .card--mid-bottom,
  .page-template-new-home .section .section-content .features__cards .card--right {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .page-template-new-home .section .section-content .features__cards {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }
  .page-template-new-home .section .section-content .features__cards .card--left {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .page-template-new-home .section .section-content .features__cards .card--mid-top {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  .page-template-new-home .section .section-content .features__cards .card--mid-bottom {
    flex-direction: column;
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
  .page-template-new-home .section .section-content .features__cards .card--right {
    grid-column: 1 / 4;
  }
}
@media (min-width: 1024px) {
  .page-template-new-home .section .section-content .features__cards {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }
  .page-template-new-home .section .section-content .features__cards .card--left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .page-template-new-home .section .section-content .features__cards .card--mid-top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .page-template-new-home .section .section-content .features__cards .card--mid-bottom {
    display: flex;
    align-items: center;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .page-template-new-home .section .section-content .features__cards .card--right {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }
}
.page-template-new-home .section .section-content .testimonials__cards {
  display: grid;
  gap: 2rem;
  font-size: 1.3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .page-template-new-home .section .section-content .testimonials__cards {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}
@media (min-width: 1024px) {
  .page-template-new-home .section .section-content .testimonials__cards {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
  .page-template-new-home .section .section-content .testimonials__cards:nth-of-type(3) {
    display: block;
  }
}
.page-template-new-home .section .section-content .testimonials__cards .testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  padding: 3rem 2.5rem;
  box-shadow: 0px 8px 47px -10px rgba(0, 0, 0, 0.1);
  border: 5px solid rgba(24, 90, 212, 0.2);
  border-radius: 2rem;
}
.page-template-new-home .section .section-content .testimonials__cards .testimonial:nth-of-type(3) {
  display: none;
}
@media (min-width: 1024px) {
  .page-template-new-home .section .section-content .testimonials__cards .testimonial:nth-of-type(3) {
    display: flex;
  }
}
.page-template-new-home .section .section-content .testimonials__cards .testimonial img {
  width: 7.8rem;
  height: 7.8rem;
  border: 2px solid #000;
  border-radius: 100vw;
  object-fit: cover;
}
.page-template-new-home .section .section-content .testimonials__cards .testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.page-template-new-home .section .section-content .testimonials__cards .testimonial__name {
  font-weight: 600;
  font-size: 2rem;
}
.page-template-new-home .section .section-content .testimonials__cards .testimonial__designation {
  font-size: 1.3rem;
}
.page-template-new-home .section .section-content .testimonials__cards .testimonial__statement {
  color: #666;
  font-size: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 479px) {
  .page-template-new-home .section .section-content .testimonials__cards .testimonial {
    padding: 2rem;
    gap: 0.75rem;
  }
  .page-template-new-home .section .section-content .testimonials__cards .testimonial img {
    width: 6.4rem;
    height: 6.4rem;
  }
  .page-template-new-home .section .section-content .testimonials__cards .testimonial__name {
    font-size: 1.6rem;
  }
  .page-template-new-home .section .section-content .testimonials__cards .testimonial__statement {
    font-size: 1.2rem;
  }
}
.page-template-new-home .section .section-content .ai-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 200px));
  gap: 1rem;
}
@media (min-width: 640px) {
  .page-template-new-home .section .section-content .ai-blocks {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }
}
@media (min-width: 1024px) {
  .page-template-new-home .section .section-content .ai-blocks {
    gap: 2rem;
  }
}
.page-template-new-home .section .section-content .ai-blocks .ai {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  text-align: center;
  font-size: 1.3rem;
  color: hsl(223, 100%, 99%);
  border-radius: 2rem;
  box-shadow: 0px 8px 47px -10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(-79deg, #2386FF 0%, #155099 100%);
  padding: 2.2rem 1.2rem;
}
@media (min-width: 1024px) {
  .page-template-new-home .section .section-content .ai-blocks .ai {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
}
.page-template-new-home .section .section-content .ai-blocks .ai__icon {
  background-color: hsl(223, 100%, 99%);
  border-radius: 100vw;
  display: flex;
  padding: 1rem;
}
.page-template-new-home .section .section-content .ai-blocks .ai__description p {
  font-size: 1.3rem;
}
.page-template-new-home .section .section-content .blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.page-template-new-home .section .section-content .blog-cards .blog {
  border-radius: 2rem;
  box-shadow: 0px 8px 47px -10px rgba(0, 0, 0, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid #e4e4e4;
  padding: 2rem;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .page-template-new-home .section .section-content .blog-cards .blog:nth-of-type(1) {
    grid-column: 1/3;
  }
}
.page-template-new-home .section .section-content .blog-cards .blog__image {
  border-radius: 1.5rem;
  overflow: hidden;
  height: 15rem;
}
.page-template-new-home .section .section-content .blog-cards .blog__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-template-new-home .section .section-content .blog-cards .blog__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.2rem;
  gap: 1rem;
}
.page-template-new-home .section .section-content .blog-cards .blog__content .blog-date {
  background-color: rgba(24, 90, 212, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
.page-template-new-home .section .section-content .blog-cards .blog__content .blog-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
.page-template-new-home .section .section-content .blog-cards .blog__content .blog-excerpt {
  font-size: 1.4rem;
  color: #666;
}
.page-template-new-home .section .section-content .blog-cards .blog__content .blog-read-more {
  display: inline-flex;
  gap: 0.5rem;
}
.page-template-new-home .section .section-content .blog-cards .blog__content .blog-read-more svg {
  opacity: 0.5;
}
.page-template-new-home .section .testimonial__more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  font-size: 1.6rem;
}
.footer-block {
  background: radial-gradient(140% 140% at 80% 80%, #185ad4 0%, #0d2f6e 89%, transparent 80%), linear-gradient(112deg, #185ad4 0%, #0d2f6e 89%);
  color: hsl(223, 100%, 99%);
}
.footer-block .content {
  gap: 2rem;
  padding-bottom: 30px;
  border: 0;
}
@media (max-width: 1023px) {
  .footer-block .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .footer-block .content {
    display: grid;
    grid-template-columns: 40% 1fr 1fr 1fr;
  }
}
.footer-block .content .footer-column {
  width: auto;
  padding-right: 0;
  color: inherit;
}
.footer-block .content .footer-column h6,
.footer-block .content .footer-column p,
.footer-block .content .footer-column li a {
  color: inherit;
}
.footer-block .content .footer-description {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: inherit;
}
@media (max-width: 1023px) {
  .footer-block .content .footer-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.footer-block .content .footer-description h3 {
  font-weight: 600;
  font-size: 3rem;
}
.footer-block .content .footer-description p {
  max-width: 30ch;
}
@media (max-width: 1023px) {
  .footer-block .content .footer-description p {
    max-width: 50ch;
  }
}
.footer-block .content .footer-description .footer-cta-block {
  display: flex;
  position: relative;
  z-index: 2;
  gap: 1rem;
}
.footer-block .content .footer-description .footer-cta-block .btn--secondary::before {
  width: 103%;
  height: 110%;
  top: -5%;
  left: -1%;
}
@media (max-width: 479px) {
  .footer-block .content .footer-description .footer-cta-block {
    flex-direction: column;
  }
}
.footer-block .content .footer-description .footer-cta-block a {
  font-size: 1.4rem;
}
.footer-block .copyright {
  padding-block: 2rem;
  color: inherit;
}
