:root {

  --primary: #0A6CFF;
  --secondary: #10243D;
  --dark: #07111D;
  --light: #F5F8FC;
  --white: #FFFFFF;
  --gray: #707A8A;

  --radius: 18px;

  --shadow: 0 15px 40px rgba(0, 0, 0, .08);

  --transition: .35s;

}

* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html {

  scroll-behavior: smooth;

}

body {

  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #162033;
  line-height: 1.6;

  align-items: center;
  min-height: 100vh;

}

#loader {
  position: fixed;
  inset: 0;
  background: #07111D;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: .7s;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo img {
  width: 210px;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0% {

    transform: scale(.92);

    opacity: .5;

  }

  50% {

    transform: scale(1);

    opacity: 1;

  }

  100% {

    transform: scale(.92);

    opacity: .5;

  }

}

.back-top {

  position: fixed;

  right: 30px;

  bottom: 30px;

  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #0A6CFF;

  color: white;

  font-size: 22px;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transition: .35s;

  box-shadow: 0 20px 45px rgba(0, 0, 0, .2);

  z-index: 999;

}

.back-top.visible {

  opacity: 1;

  visibility: visible;

}

.back-top:hover {

  transform: translateY(-6px);

}




img {

  display: block;
  max-width: 100%;

}

a {

  text-decoration: none;

}

.container {

  width: min(1320px, 92%);
  margin: auto;

}

header {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  backdrop-filter: blur(15px);

  background: rgba(255, 255, 255, .88);

  border-bottom: 1px solid rgba(0, 0, 0, .06);

}

.navbar {

  height: 86px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}

.logo img {
  height: 84px;
}

nav ul {

  display: flex;

  gap: 40px;

  list-style: none;

}

nav a {

  color: #1A2438;

  font-weight: 600;

  transition: .3s;

}

nav a:hover {

  color: var(--primary);

}

.btn-primary {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #167CFF, #0A5CF5);
  color: white;
  font-weight: 700;
  transition: .3s;
  box-shadow: 0 12px 35px rgba(0, 104, 255, .25);
  cursor: pointer;

}

.btn-primary:hover {

  transform: translateY(-3px);

}

.btn-outline {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 34px;

  border-radius: 50px;

  border: 2px solid var(--primary);

  color: var(--primary);

  font-weight: 700;

  transition: .3s;

}

.btn-outline:hover {

  background: var(--primary);

  color: white;

}

.hero {
  padding-top: 170px;
  /* padding-bottom: 120px; */
  padding-bottom: 60px;
  background:
    linear-gradient(180deg, #EEF5FF, #FFFFFF);
  overflow: hidden;
}

.hero-grid {

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 80px;

  align-items: center;

}

.tag {

  display: inline-flex;

  padding: 10px 18px;

  background: #EAF3FF;

  border-radius: 100px;

  color: #0A6CFF;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 28px;

}

.hero h1 {

  font-size: 68px;

  font-weight: 900;

  line-height: 1.05;

  margin-bottom: 28px;

  color: #10243D;

}

.hero h1 span {

  color: var(--primary);

}

.hero p {

  font-size: 20px;

  color: #5E6978;

  max-width: 640px;

  margin-bottom: 40px;

}

.hero-buttons {

  display: flex;

  gap: 18px;

  margin-bottom: 55px;

}

.hero-right {

  position: relative;

}

.hero-right img {

  width: 100%;

  border-radius: 25px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, .15);

}

.hero-numbers {

  display: flex;

  gap: 50px;

}

.hero-numbers h2 {

  font-size: 42px;

  color: var(--primary);

}

.hero-numbers p {

  font-size: 15px;

  margin-top: 6px;

}

section {
  /* padding: 110px 0; */
  padding: 20px 0;
}

.title {
  text-align: center;
  /* text-align:left; */
  margin-bottom: 50px;
}

.title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #13233E;
  margin-bottom: 10px;
}

.title p {
  font-size: 20px;
  color: #687589;
  max-width: 760px;
  /* margin: auto; */
}


.section-label {

  display: inline-block;
  padding: 9px 16px;
  /* background: #EAF3FF; */
  color: #0A6CFF;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase
}

.cards-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.card {
  background: white;
  border-radius: 22px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: .3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 34px;
  color: #0A6CFF;
  margin-bottom: 25px;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.card p {
  color: #6D7786;
  font-size: 15px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.service {
  background: #ffffff;
  /* padding: 45px; */
  padding: 35px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: .3s;
}

.service:hover {

  transform: translateY(-8px);

}

.service i {

  font-size: 40px;

  margin-bottom: 25px;

  color: #0A6CFF;

}

.service h3 {
  font-size: 21px;
  margin-bottom: 18px;
}

.service p {

  color: #667384;

}

.product {

  background: #07111D;
  color: #fff;

}

.product-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;

}

.product h2 {

  font-size: 64px;
  font-weight: 900;
  margin: 15px 0;

}

.product h3 {

  font-size: 32px;
  font-weight: 600;
  margin-bottom: 35px;

  color: #D7E8FF;

}

.product ul {

  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 45px;

}

.product li {

  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;

}

.product li::before {

  content: "✔";

  color: #2CC36B;
  font-weight: bold;

}

.product img {

  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);

}

.industries {

  background: #F7FAFD;

}

.industry-grid {

  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 28px;

}

.industry {
  padding: 35px 10px;
  text-align: center;
  transition: .3s;
  text-transform: uppercase
}

.industry:hover {
  transform: translateY(-8px);
  opacity: .55;
  filter: grayscale(100%);
}

.industry i {

  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;

}

.industry h3 {

  font-size: 14px;

}

.process {

  background: #F7FAFD;

}

.process .title {
  margin-bottom: 10px;
}

.process_ {

  display: flex;
  align-items: center;
  gap: 0px;
  justify-content: center;
  background: #F7FAFD;

}

.line {

  width: 35px;
  height: 2px;

  background:
    repeating-linear-gradient(to right,
      #d9e1ef 0,
      #d9e1ef 6px,
      transparent 6px,
      transparent 12px);
}

.text_ h3 {

  font-size: 1.0em;
  color: #18233d;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 12px;
  margin-left: 3px;
}

.text_ p {

  font-size: 18px;
  color: #18233d;
  font-weight: 500;
}



.timeline {

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;

}

.step {

  text-align: center;

  position: relative;

}

.card_ {

  width: 180px;
  height: 92px;

  background: #fff;

  border-radius: 12px;

  display: flex;
  align-items: center;

  padding: 10px;

  gap: 0px;

  border: 1px solid #edf0f5;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, .08);
}

.icon_demo {

  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 34px;
  color: #fFF;
      margin-left: 15px;
}

.icon_call {

  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 34px;
  color: #0A6CFF;
      margin-left: 15px;
}

.icon {

  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 34px;
  color: #0A6CFF;
}

/* .number {

  width: 72px;
  height: 72px;

  margin: auto;
  margin-bottom: 24px;

  border-radius: 50%;

  background: linear-gradient(135deg, #167CFF, #0A5CF5);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  font-weight: 700;

  color: #fff;

  box-shadow: 0 15px 35px rgba(16, 108, 255, .3);

} */

.number_ {

  position: absolute;

  top: -16px;
  left: 50%;

  transform: translateX(-50%);

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: #1565ff;

  color: #fff;

  font-weight: 700;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 15px;

  box-shadow: 0 5px 12px rgba(21, 101, 255, .35);
}

.why {

  background: #fff;

}

.why-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;

}

.why img {

  border-radius: 26px;
  box-shadow: var(--shadow);

}

.why h2 {

  font-size: 48px;
  margin: 20px 0;

}

.why p {

  font-size: 19px;
  color: #6D7786;
  margin-bottom: 35px;

}

.features {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

}

.features div {

  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 600;

}

.features i {

  color: #0A6CFF;

}

.cta {

  /* padding-top: 20px; */
  color: #C5D3E2;
  background-color: #000B27;
  text-align: center;
  color: #fff;

}

.cta h2 {

  font-size: 56px;
  margin-bottom: 25px;

}

.cta p {

  max-width: 820px;
  margin: auto;
  margin-bottom: 45px;

  font-size: 21px;

  opacity: .92;

}

.btn-white {

  display: inline-flex;

  padding: 18px 42px;

  border-radius: 60px;

  background: #fff;

  color: #0A6CFF;

  font-weight: 700;

}

.contact {

  background: #F7FAFD;

}

.contact-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

}

.contact h2 {

  font-size: 52px;
  margin: 20px 0;

}

.contact p {

  font-size: 20px;
  color: #6D7786;
  margin-bottom: 35px;

}

.contact-info {

  display: flex;
  flex-direction: column;
  gap: 22px;

}

.contact-info div {

  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;

}

.contact-info i {

  color: var(--primary);
  width: 26px;

}

form {

  background: #fff;

  padding: 45px;

  border-radius: 26px;

  box-shadow: var(--shadow);

}

form input,
form textarea {

  width: 100%;

  padding: 18px;

  margin-bottom: 22px;

  border: 1px solid #DCE5EF;

  border-radius: 14px;

  font-family: inherit;

  font-size: 16px;

}

textarea {

  height: 180px;
  resize: none;

}

button {

  width: 100%;

  padding: 18px;

  background: linear-gradient(135deg, #167CFF, #0A5CF5);

  border: none;

  border-radius: 14px;

  font-size: 18px;
  font-weight: 700;

  color: #fff;

  cursor: pointer;

}

footer {

  background: #07111D;
  color: #B8C4D4;

  padding: 0;

}

.footer {

  display: flex;
  justify-content: space-between;
  align-items: center;

}

.footer img {

  height: 42px;

}

.footer div {

  display: flex;
  gap: 18px;

}

.footer a {

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #122238;

  color: #fff;

  transition: .3s;

}

.footer a:hover {

  background: var(--primary);

}

@media(max-width:1100px) {

  .hero-grid,
  .product-grid,
  .contact-grid,
  .why-grid {

    grid-template-columns: 1fr;

  }

  .cards-6 {

    grid-template-columns: repeat(2, 1fr);

  }

  .grid-3 {

    grid-template-columns: 1fr;

  }

  .industry-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .timeline {

    grid-template-columns: repeat(2, 1fr);

  }

  .hero h1 {

    font-size: 50px;

  }

  .title h2 {

    font-size: 38px;

  }

  .cta h2 {

    font-size: 42px;

  }

}

@media(max-width:768px) {

  nav {

    display: none;

  }

  .cards-6,
  .industry-grid,
  .timeline,
  .features {

    grid-template-columns: 1fr;

  }

  .hero-buttons {

    flex-direction: column;

  }

  .hero-numbers {

    flex-direction: column;
    gap: 20px;

  }

  .hero {

    padding-top: 140px;

  }

  .hero h1 {

    font-size: 42px;

  }

  .title h2 {

    font-size: 32px;

  }

  .contact h2 {

    font-size: 36px;

  }

  .cta h2 {

    font-size: 34px;

  }

}

.sticky {

  background: rgba(255, 255, 255, .97);

  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

  transition: .35s;

}

.hidden {

  opacity: 0;

  transform: translateY(40px);

  transition: all .8s ease;

}

.show {

  opacity: 1;

  transform: translateY(0);

}

#particles {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: -1;

  pointer-events: none;

}

.dark-auto {

  background: #07111D;

  color: white;

}

.dark-auto section {

  background: #07111D;

}

.dark-auto .card,
.dark-auto .service,
.dark-auto form {

  background: #10243D;

  color: white;

}

.dark-auto p {

  color: #B7C4D8;

}

.use-cases {

  background: #fff;

}

.cases-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 35px;

}

.case {

  overflow: hidden;

  background: white;

  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

  transition: .35s;

}

.case:hover {

  transform: translateY(-12px);

}

.case img {

  width: 100%;

  height: 230px;

  object-fit: cover;

}

.case h3 {

  padding: 30px 30px 15px;

  font-size: 24px;

}

.case p {

  padding: 0 30px 35px;

  color: #697587;

}

@media(max-width:1100px) {

  .cases-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:650px) {

  .cases-grid {

    grid-template-columns: 1fr;

  }

}

.clients {

  background: #F7FAFD;

}

.client-logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 40px;
  align-items: center;
}

.client-logos img {

  height: 48px;

  opacity: .65;

  filter: grayscale(100%);

  transition: .35s;

  margin: auto;

}

.client-logos img:hover {

  opacity: 1;

  filter: none;

  transform: scale(1.08);

}

@media(max-width:1100px) {

  .client-logos {

    grid-template-columns: repeat(4, 1fr);

  }

}

@media(max-width:650px) {

  .client-logos {

    grid-template-columns: repeat(2, 1fr);

  }

}

.bottom-cta {
  /* padding: 120px 0; */
  background: #000B27;
}

.cta-box {

  /* background: linear-gradient(135deg, #0A6CFF, #004EE6);
  border-radius: 32px;
  padding: 70px; */

  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;

}

.cta-box span {

  font-weight: 700;
  color: #0A5CF5;
  opacity: .9;

}

.cta-box h2 {

  font-size: 52px;

  margin: 18px 0;

}

.cta-box p {

  font-size: 20px;

  max-width: 700px;

  opacity: .9;

}

@media(max-width:900px) {

  .cta-box {

    flex-direction: column;

    text-align: center;

    gap: 40px;

  }

  .cta-box h2 {

    font-size: 40px;

  }

}

.features-got {
  background: #000B27;
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  padding: 40px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  transition: .35s;
}

.feature-item:hover {
  transform: translateY(-10px);
  background: #0E223E;
}

.feature-item i {

  font-size: 36px;

  color: #28C6FF;

  margin-bottom: 25px;

}

.feature-item h3 {

  font-size: 22px;

  margin-bottom: 15px;

}

.feature-item p {

  color: #C7D5E6;

  line-height: 1.7;

}

@media(max-width:1200px) {

  .feature-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:700px) {

  .feature-grid {

    grid-template-columns: 1fr;

  }

}

.benefits-business {

  background: #F7FAFD;

}

.benefits-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 35px;

}

.benefits-grid div {

  padding: 45px;

  background: white;

  border-radius: 24px;

  text-align: center;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .07);

}

.benefits-grid h3 {

  font-size: 54px;

  font-weight: 900;

  color: #0A6CFF;

  margin-bottom: 15px;

}

.benefits-grid p {

  font-size: 18px;

  color: #6C7789;

}

@media(max-width:1000px) {

  .benefits-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:650px) {

  .benefits-grid {

    grid-template-columns: 1fr;

  }

}

.integrations {

  padding: 120px 0;

  background: #fff;

}

.integration-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 35px;

}

.integration-card {

  padding: 45px;

  border-radius: 24px;

  background: #fff;

  box-shadow: 0 20px 55px rgba(0, 0, 0, .08);

  transition: .35s;

  text-align: center;

}

.integration-card:hover {

  transform: translateY(-10px);

}

.integration-card img {

  width: 72px;

  margin: auto;

  margin-bottom: 25px;

}

.integration-card h3 {

  font-size: 24px;

  margin-bottom: 18px;

}

.integration-card p {

  color: #6D7786;

  line-height: 1.8;

}

@media(max-width:1100px) {

  .integration-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:650px) {

  .integration-grid {

    grid-template-columns: 1fr;

  }

}

.faq {

  background: #F8FAFD;

  padding: 120px 0;

}

.faq-list {

  max-width: 950px;

  margin: auto;

  display: flex;

  flex-direction: column;

  gap: 25px;

}

.faq-item {

  background: #fff;

  padding: 35px;

  border-radius: 22px;

  box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

}

.faq-item h3 {

  font-size: 24px;

  margin-bottom: 15px;

  color: #10243D;

}

.faq-item p {

  color: #697587;

  line-height: 1.8;

}

.footer-main {

  background: #071935;
  padding-top: 20px;
  color: #C5D3E2;

}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 6px;
}

.footer-logo {

  /* height: 48px; */

  margin-bottom: 3px;

}

.footer-main h4 {

  color: white;

  margin-bottom: 22px;

  font-size: 20px;

}

.footer-main ul {

  list-style: none;

}

.footer-main li {

  margin-bottom: 14px;

}

.footer-main a {
  color: #C5D3E2;
  transition: .3s;
}

.footer-main a:hover {
  color: white;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 10px;
  text-align: center;
  color: #8EA0B8;
  font-size: 15px;
}

@media(max-width:1000px) {

  .footer-grid {

    grid-template-columns: 1fr 1fr;

  }

}

@media(max-width:650px) {

  .footer-grid {

    grid-template-columns: 1fr;

    text-align: center;

  }
}

.testimonials {

  padding: 120px 0;

  background: #ffffff;

}

.testimonial-slider {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;

}

.testimonial {

  background: #fff;

  padding: 45px;

  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

  transition: .35s;

}

.testimonial:hover {

  transform: translateY(-8px);

}

.testimonial .stars {

  color: #FFC400;

  font-size: 20px;

  margin-bottom: 20px;

}

.testimonial p {

  font-size: 17px;

  line-height: 1.8;

  color: #66758A;

  margin-bottom: 30px;

}

.author {

  display: flex;

  align-items: center;

  gap: 18px;

}

.author img {

  width: 64px;

  height: 64px;

  border-radius: 50%;

  object-fit: cover;

}

.author h4 {

  margin-bottom: 4px;

  font-size: 18px;

}

.author span {

  font-size: 14px;

  color: #7D8A9B;

}

@media(max-width:992px) {

  .testimonial-slider {

    grid-template-columns: 1fr;

  }

}

/* ===========================
   PARTNERS
=========================== */

.partners {
  padding: 20px 0;
  background: #F7FAFD;
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #EEF2F7;

}

.partners .title {
  text-align: center;
  /* margin-bottom: 70px; */
}

.partners .title h2 {

  font-size: 48px;

  font-weight: 800;

  color: #10243D;

  margin-top: 18px;

  margin-bottom: 18px;

}

.partners .title p {

  max-width: 760px;

  margin: auto;

  font-size: 19px;

  line-height: 1.7;

  color: #6D7786;

}

.logos {

  display: grid;
  grid-template-columns: repeat(10, 1fr);
  /* gap: 30px; */
  align-items: center;
  justify-items: center;

}

.logos img {

  max-width: 130px;
  max-height: 60px;
  width: auto;
  height: auto;
  opacity: .55;
  filter: grayscale(100%);
  transition: all .35s ease;

}

.logos i:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-6px) scale(1.08);
}

.logos img:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-6px) scale(1.08);
}

@media(max-width:1200px) {

  .logos {

    grid-template-columns: repeat(4, 1fr);

  }

}

@media(max-width:768px) {

  .partners {

    padding: 80px 0;

  }

  .partners .title h2 {

    font-size: 34px;

  }

  .logos {

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

  }

  .logos img {

    max-width: 110px;

  }

}

@media(max-width:480px) {

  .logos {

    grid-template-columns: 1fr 1fr;

    gap: 24px;

  }

  .logos img {

    max-width: 95px;

  }

}