/*==========================================
    TECHNICAL CONSULTING
==========================================*/

#content {
  overflow: hidden;
  background: #ffffff;
}

/*==========================================
    HERO
==========================================*/

.consulting-hero {
  position: relative;
  overflow: hidden;

  padding: 60px 8% 45px;

  background:
    radial-gradient(
      circle at top right,
      rgba(60, 176, 67, 0.08),
      transparent 42%
    ),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.consulting-hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -180px;
  top: -220px;

  border-radius: 50%;

  background: rgba(0, 59, 109, 0.05);

  filter: blur(15px);
}

.consulting-hero::after {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  left: -120px;
  bottom: -180px;

  border-radius: 50%;

  background: rgba(60, 176, 67, 0.06);

  filter: blur(20px);
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 1350px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

/*==========================================
    LEFT
==========================================*/

.hero-left h1 {
  margin: 14px 0 20px;

  font-size: clamp(3rem, 5vw, 5rem);

  line-height: 1.05;

  color: #17335e;

  font-family: "Arimo", sans-serif;
}

.hero-description {
  max-width: 680px;

  color: #5f6d79;

  line-height: 1.95;

  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  margin-top: 34px;
}

.hero-buttons .secondary-btn {
  min-width: auto;

  padding: 15px 34px;

  border-radius: 50px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 210px;

  padding: 16px 34px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.35s ease;
}

.primary-btn {
  background: #003b6d;

  color: #fff;

  box-shadow: 0 16px 35px rgba(0, 59, 109, 0.18);
}

.primary-btn:hover {
  transform: translateY(-5px);

  background: #0b518f;
}

.secondary-btn {
  background: #fff;

  color: #17335e;

  border: 1px solid #e6ecf3;
}

.secondary-btn:hover {
  border-color: #0e2e5c;

  color: #0e2e5c;
}

/*==========================================
    RIGHT
==========================================*/

.hero-right {
  display: grid;

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

  gap: 18px;
}

.stat-card {
  background: #fff;

  border-radius: 26px;

  padding: 20px 18px;

  border: 1px solid #edf2f6;

  text-align: center;

  transition: 0.35s ease;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

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

  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.08);
}

.stat-card h2 {
  margin: 0 0 8px;

  font-family: "Arimo", sans-serif;

  color: #003b6d;

  font-size: 1.5rem;

  line-height: 1.15;
}

.stat-card p {
  margin: 0;

  color: #667684;

  line-height: 1.6;

  font-size: 0.9rem;
}

/*==========================================
    FEATURE GRID
==========================================*/

.hero-feature-grid {
  position: relative;
  z-index: 2;

  max-width: 1350px;

  margin: 60px auto 0;

  display: grid;

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

  gap: 24px;
}

.feature-card {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  padding: 26px;

  background: #fff;

  border: 1px solid #edf2f6;

  border-radius: 24px;

  transition: 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  flex-shrink: 0;

  width: 64px;
  height: 64px;

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

  border-radius: 18px;

  background: rgba(60, 176, 67, 0.12);

  color: #3cb043;
}

.feature-icon span {
  font-size: 30px;
}

.feature-card h3 {
  margin: 2px 0 10px;

  color: #16304d;

  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;

  color: #667684;

  line-height: 1.8;

  font-size: 0.95rem;
}

/*==========================================
    SECTION HEADINGS
==========================================*/

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 18px;

  border-radius: 999px;

  background: rgba(60, 176, 67, 0.1);

  color: #3cb043;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-heading h2,
.overview-content h2,
.expertise-content h2 {
  margin: 16px 0;

  font-family: "Arimo", sans-serif;

  font-size: clamp(2.3rem, 4vw, 3.6rem);

  line-height: 1.15;

  color: #16304d;
}

.section-heading p,
.overview-content p,
.expertise-content p {
  color: #667684;

  font-size: 1rem;

  line-height: 1.9;
}

/*==========================================
    OVERVIEW
==========================================*/

.consulting-overview {
  max-width: 1350px;

  margin: 40px auto;

  padding: 0 8%;

  display: grid;

  grid-template-columns: 1fr 1.15fr;

  gap: 60px;

  align-items: center;
}

.overview-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.overview-image img {
  width: 100%;

  height: auto;
  display: block;
  border-radius: 24px;
  transition: 0.5s ease;
}

.overview-image:hover img {
  transform: scale(1.05);
}

.overview-content {
  display: flex;
  flex-direction: column;
}

.overview-content p {
  margin-bottom: 18px;
}

.overview-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.highlight-card {
  position: relative;

  overflow: hidden;

  padding: 26px;

  border-radius: 24px;

  background: #fff;

  border: 1px solid #edf2f6;

  transition: 0.35s ease;
}

.highlight-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 5px;
  height: 100%;

  background: #3cb043;

  transform: scaleY(0);

  transform-origin: top;

  transition: 0.35s ease;
}

.highlight-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(60, 176, 67, 0.03),
    rgba(0, 59, 109, 0.04)
  );

  opacity: 0;

  transition: 0.35s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.highlight-card:hover::before {
  transform: scaleY(1);
}

.highlight-card:hover::after {
  opacity: 1;
}

.highlight-card h3 {
  position: relative;

  margin: 0 0 14px;

  color: #16304d;

  font-size: 1.22rem;
}

.highlight-card p {
  position: relative;

  margin: 0;

  color: #667684;

  line-height: 1.8;

  font-size: 0.96rem;
}

/* cards fill the grid cell equally */
/*==========================================
    SERVICES
==========================================*/

.consulting-services {
  padding: 90px 8%;

  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.services-grid {
  max-width: 1350px;

  margin: 0 auto;

  display: grid;

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

  gap: 26px;
}

/*--------------------------------------*/

.service-card {
  position: relative;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 280px;

  padding: 30px;

  background: #fff;

  border-radius: 26px;

  border: 1px solid #edf2f6;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, #003b6d, #3cb043);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s ease;
}

.service-card::after {
  content: "";

  position: absolute;

  right: -80px;
  top: -80px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(60, 176, 67, 0.05);

  transition: 0.35s ease;
}

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

  border-color: #d8e6ee;

  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  transform: scale(1.2);
}

/*--------------------------------------*/

.service-card span {
  display: flex;

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

  width: 52px;
  height: 52px;

  margin-bottom: 20px;

  border-radius: 16px;

  background: rgba(0, 59, 109, 0.08);

  color: #003b6d;

  font-weight: 700;

  font-size: 1rem;
}

.service-card h3 {
  margin: 0 0 14px;

  color: #16304d;

  font-size: 1.28rem;

  line-height: 1.3;
}

.service-card p {
  margin: 0;

  color: #667684;

  line-height: 1.9;

  font-size: 0.97rem;

  flex: 1;
}

/* alternating accent colours */

.service-card:nth-child(even) span {
  background: rgba(60, 176, 67, 0.12);

  color: #3cb043;
}

.service-card:nth-child(3n)::before {
  background: linear-gradient(90deg, #3cb043, #003b6d);
}

/*==========================================
    EXPERTISE
==========================================*/

.expertise-section {
  max-width: 1350px;

  margin: 100px auto;

  padding: 0 8%;

  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 60px;

  align-items: start;
  margin-top: 0;
}

/*-----------------------------------------
    LEFT CONTENT
-----------------------------------------*/

.expertise-content {
  position: sticky;

  top: 120px;

  max-width: 500px;
}

.expertise-content p {
  margin-bottom: 18px;
}

/*-----------------------------------------
    GRID
-----------------------------------------*/

.expertise-grid {
  display: grid;

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

  gap: 24px;
}

/*-----------------------------------------
    CARD
-----------------------------------------*/

.expertise-item {
  position: relative;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #edf2f6;

  border-radius: 26px;

  padding: 30px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* floating accent */

.expertise-item::before {
  content: "";

  position: absolute;

  width: 140px;
  height: 140px;

  right: -70px;
  top: -70px;

  border-radius: 50%;

  background: rgba(60, 176, 67, 0.05);

  transition: 0.35s;
}

/* bottom accent */

.expertise-item::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, #003b6d, #3cb043);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s;
}

.expertise-item:hover {
  transform: translateY(-10px);

  border-color: #dce7ee;

  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.08);
}

.expertise-item:hover::before {
  transform: scale(1.25);
}

.expertise-item:hover::after {
  transform: scaleX(1);
}

/*-----------------------------------------
    TYPOGRAPHY
-----------------------------------------*/

.expertise-item h3 {
  position: relative;

  margin: 0 0 14px;

  color: #16304d;

  font-size: 1.2rem;

  line-height: 1.35;
}

.expertise-item p {
  position: relative;

  margin: 0;

  color: #667684;

  line-height: 1.85;

  font-size: 0.97rem;
}

/*-----------------------------------------
    STAGGERED EFFECT
-----------------------------------------*/

.expertise-item:nth-child(2) {
  margin-top: 32px;
}

.expertise-item:nth-child(3) {
  margin-top: -18px;
}

.expertise-item:nth-child(4) {
  margin-top: 26px;
}

.expertise-item:nth-child(5) {
  margin-top: -14px;
}

.expertise-item:nth-child(6) {
  margin-top: 22px;
}

/*==========================================
    PROCESS
==========================================*/

.consulting-process {
  position: relative;

  overflow: hidden;

  padding: 40px 8%;

  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.consulting-process::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  left: -220px;
  top: -220px;

  border-radius: 50%;

  background: rgba(0, 59, 109, 0.04);

  filter: blur(18px);
}

.process-grid {
  position: relative;

  max-width: 1350px;

  margin: 0 auto;

  display: grid;

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

  gap: 22px;
}

/*------------------------------------
    CARD
------------------------------------*/

.process-step {
  position: relative;

  overflow: hidden;

  padding: 34px 26px;

  background: #fff;

  border: 1px solid #edf2f6;

  border-radius: 26px;

  text-align: center;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

  z-index: 2;
}

.process-step::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(60, 176, 67, 0.03),
    rgba(0, 59, 109, 0.04)
  );

  opacity: 0;

  transition: 0.35s;
}

.process-step:hover {
  transform: translateY(-10px);

  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.process-step:hover::before {
  opacity: 1;
}

/*------------------------------------
    NUMBER
------------------------------------*/

.process-step span {
  position: relative;

  width: 58px;
  height: 58px;

  margin: 0 auto 20px;

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

  border-radius: 18px;

  background: #003b6d;

  color: #fff;

  font-weight: 700;

  font-size: 1rem;

  transition: 0.35s;
}

.process-step:hover span {
  background: #3cb043;

  transform: rotate(-6deg) scale(1.05);
}

/*------------------------------------
    TEXT
------------------------------------*/

.process-step h3 {
  position: relative;

  margin: 0 0 12px;

  color: #16304d;

  font-size: 1.12rem;
}

.process-step p {
  position: relative;

  margin: 0;

  color: #667684;

  line-height: 1.85;

  font-size: 0.95rem;
}

/*------------------------------------
    STAGGERED LAYOUT
------------------------------------*/

.process-step:nth-child(even) {
  margin-top: 32px;
}

/*------------------------------------
    DESKTOP CONNECTOR
------------------------------------*/

@media (min-width: 1201px) {
  .process-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 58px;

    right: -26px;

    width: 26px;
    height: 2px;

    background: linear-gradient(to right, #003b6d, #3cb043);

    opacity: 0.25;
  }
}

/*==========================================
    WHY VayuCon
==========================================*/

.why-vayucon {
  position: relative;

  overflow: hidden;

  padding: 90px 8%;

  background: #ffffff;
}

.why-vayucon::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  top: -280px;
  left: -240px;

  border-radius: 50%;

  background: rgba(0, 59, 109, 0.04);

  filter: blur(20px);
}

.why-vayucon::after {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -180px;
  bottom: -160px;

  border-radius: 50%;

  background: rgba(60, 176, 67, 0.06);

  filter: blur(18px);
}

/*---------------------------------------
    GRID
---------------------------------------*/

.benefits-grid {
  position: relative;

  z-index: 2;

  max-width: 1350px;

  margin: 0 auto;

  display: grid;

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

  gap: 24px;
}

/*---------------------------------------
    CARD
---------------------------------------*/

.benefit-card {
  position: relative;

  overflow: hidden;

  padding: 34px 28px;

  background: #fff;

  border-radius: 26px;

  border: 1px solid #edf2f6;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* top accent */

.benefit-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, #003b6d, #3cb043);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s;
}

/* decorative circle */

.benefit-card::after {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  right: -70px;
  top: -70px;

  border-radius: 50%;

  background: rgba(60, 176, 67, 0.05);

  transition: 0.35s;
}

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

  border-color: #dbe6ee;

  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover::after {
  transform: scale(1.2);
}

/*---------------------------------------
    TYPOGRAPHY
---------------------------------------*/

.benefit-card h3 {
  position: relative;

  margin: 0 0 14px;

  color: #16304d;

  font-size: 1.2rem;

  line-height: 1.35;
}

.benefit-card p {
  position: relative;

  margin: 0;

  color: #667684;

  line-height: 1.9;

  font-size: 0.96rem;
}

/*---------------------------------------
    STAGGER
---------------------------------------*/

.benefit-card:nth-child(2) {
  margin-top: 26px;
}

.benefit-card:nth-child(3) {
  margin-top: -14px;
}

.benefit-card:nth-child(4) {
  margin-top: 18px;
}
/*==========================================
    CTA
==========================================*/

.consulting-cta {
  position: relative;

  overflow: hidden;

  padding: 100px 8%;

  background: linear-gradient(135deg, #003b6d 0%, #0b518f 55%, #0d6cb6 100%);

  color: #fff;
}

/* Decorative circles */

.consulting-cta::before {
  content: "";

  position: absolute;

  width: 720px;
  height: 720px;

  right: -280px;
  top: -260px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
}

.consulting-cta::after {
  content: "";

  position: absolute;

  width: 480px;
  height: 480px;

  left: -170px;
  bottom: -220px;

  border-radius: 50%;

  background: rgba(60, 176, 67, 0.12);
}

/*----------------------------------*/

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 920px;

  margin: 0 auto;

  text-align: center;
}

.consulting-cta .section-tag {
  background: rgba(255, 255, 255, 0.12);

  color: #fff;
}

/*----------------------------------*/

.cta-content h2 {
  margin: 18px 0;

  font-family: "Arimo", sans-serif;

  font-size: clamp(2.7rem, 4vw, 4.2rem);

  line-height: 1.15;
}

.cta-content p {
  max-width: 760px;

  margin: 0 auto;

  color: rgba(255, 255, 255, 0.82);

  line-height: 1.95;

  font-size: 1.05rem;
}

/*----------------------------------*/

.cta-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 22px;

  margin-top: 40px;
}

/*----------------------------------*/

.consulting-cta .primary-btn {
  background: #3cb043;

  color: #fff;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.consulting-cta .primary-btn:hover {
  background: #2f9638;

  transform: translateY(-5px);
}

.consulting-cta .secondary-btn {
  background: transparent;

  border: 2px solid rgba(255, 255, 255, 0.45);

  color: #fff;
}

.consulting-cta .secondary-btn:hover {
  background: #fff;

  color: #003b6d;

  border-color: #fff;

  transform: translateY(-5px);
}

/*==========================================
    RESPONSIVE
==========================================*/

@media (max-width: 1400px) {
  .hero-content,
  .consulting-overview,
  .expertise-section {
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  /* Layout */

  .hero-content,
  .consulting-overview,
  .expertise-section {
    grid-template-columns: 1fr;

    gap: 44px;
  }

  .hero-feature-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .overview-highlights,
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-content {
    position: static;

    max-width: none;
  }

  /* Remove staggering */

  .stat-card,
  .highlight-card,
  .expertise-item,
  .benefit-card,
  .process-step {
    margin-top: 0 !important;
  }
}

@media (max-width: 992px) {
  .consulting-hero,
  .consulting-services,
  .consulting-process,
  .why-vayucon,
  .consulting-cta {
    padding: 80px 6%;
  }

  .consulting-hero {
    padding: 55px 6% 40px;
  }

  .consulting-overview,
  .expertise-section {
    padding: 0 6%;

    margin: 80px auto;
  }

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

  .hero-description {
    margin: 0 auto;
  }

  .hero-buttons,
  .cta-buttons {
    justify-content: center;
  }

  .hero-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .primary-btn,
  .secondary-btn {
    min-width: 190px;
  }
}

@media (max-width: 768px) {
  .consulting-hero,
  .consulting-services,
  .consulting-process,
  .why-vayucon,
  .consulting-cta {
    padding: 70px 5%;
  }

  .consulting-hero {
    padding: 50px 5% 34px;
  }

  .consulting-overview,
  .expertise-section {
    padding: 0 5%;

    margin: 65px auto;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-feature-grid,
  .services-grid,
  .overview-highlights,
  .expertise-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 2.6rem;
  }

  .section-heading h2,
  .overview-content h2,
  .expertise-content h2,
  .cta-content h2 {
    font-size: 2.3rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a,
  .cta-buttons a {
    width: 100%;

    min-width: unset;

    box-sizing: border-box;

    text-align: center;
  }

  .feature-card,
  .service-card,
  .highlight-card,
  .expertise-item,
  .benefit-card,
  .process-step {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .consulting-hero {
    padding-top: 40px;
  }

  .hero-left h1 {
    font-size: 2.15rem;

    line-height: 1.15;
  }

  .hero-description,
  .section-heading p,
  .overview-content p,
  .expertise-content p,
  .cta-content p {
    font-size: 0.95rem;

    line-height: 1.8;
  }

  .stat-card {
    padding: 34px 24px;
  }

  .feature-card {
    flex-direction: column;

    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .service-card,
  .highlight-card,
  .expertise-item,
  .benefit-card,
  .process-step {
    padding: 26px;
  }

  .section-tag {
    font-size: 0.72rem;

    padding: 7px 15px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .hero-left h1 {
    font-size: 1.9rem;
  }

  .section-heading h2,
  .overview-content h2,
  .expertise-content h2,
  .cta-content h2 {
    font-size: 1.85rem;
  }

  .primary-btn,
  .secondary-btn {
    padding: 14px 20px;

    font-size: 0.9rem;
  }
}

/*==========================================
    SCROLL ANIMATIONS
==========================================*/

.hidden {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
