@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/upton');

:root {
    --orange-ft: #FF4105;
    --white-ft: #F9F8F5;
    --purple-ft: #7206FF;
    --blue-ft: #4511D3;
    --st-blue-ft: #000D21;
    --black-ft: #201D1D;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px; /* 1rem = 16px */

}

body, html {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white-ft);
        overflow-x: hidden;
}

/* Font Styles */
a {
    color: var(--st-blue-ft);
    font-size: inherit;
    font-style: italic;
}

a:hover {
    filter: blur(3px);
    transition: filter 0.3s ease-in-out;
}

h1 {
    font-family: 'Upton', sans-serif;
    font-size: 5rem;
    line-height: 4.8rem;    
    font-weight: 800;
    color: var(--st-blue-ft);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1%;
}

h2 {
    font-style: italic;
    font-size: 1.5rem;
    line-height: 2rem;    
    font-weight: 300;
    color: var(--st-blue-ft);
    text-align: left;
    padding-bottom: 5%;
}

h3 {
    font-family: 'Upton', sans-serif;
    font-size: clamp(4.1667rem, 5.3vw, 80px);
    line-height: clamp(4.1667rem, 5vw, 75px);
    letter-spacing: 1%;
    font-weight: 700;
    color: var(--purple-ft);
    text-transform: uppercase;
    text-align: left;
    overflow: visible; 
}

h4 {
    font-family: 'Upton', sans-serif;
    font-size: clamp(2.5rem, 3.2vw, 48px);
    line-height: clamp(2.5rem, 3.2vw, 46px);
    letter-spacing: 1%;
    font-weight: 700;
    color: var(--purple-ft);
    text-align: left;
}

h5 {
    font-style: normal;
    font-size: clamp(1.5rem, 2.4vw, 24px);
    line-height: clamp(2rem, 2.8vw, 37px);
    font-weight: 300;
    color: var(--st-blue-ft);
    text-align: left;
    padding-bottom: 5%;
}

p, ul{
    font-size: clamp(1.0417rem, 2vw, 20px);
    line-height: clamp(1.5rem, 2.8vw, 28px);
    text-align: left;
    color: var(--st-blue-ft);
    padding-bottom: 5%;

}
li {
    font-size: clamp(1.0417rem, 2vw, 20px);
    line-height: clamp(1.5rem, 2.8vw, 28px);
    text-align: left;
    color: var(--st-blue-ft);
}

.p2 {
    font-size: clamp(1.0417rem, 2vw, 20px);
    line-height: clamp(1.5rem, 2.8vw, 28px);
    text-align: left;
    color: var(--purple-ft);
}

.tagline {
    font-family: 'Upton', sans-serif;
    color:var(--purple-ft);
    font-size: 2rem;
    text-transform: lowercase;
    letter-spacing: 1%;
    font-weight: 800;
    text-align: left;
}

.line {
    width: 100%;
    height: 1.5px;
    position: relative;
    display: block;
    background-color: var(--purple-ft);
    transform-origin: left center;
  }

/* about cards */
  .about-facts {
    width: min(100% - 2rem, 1024px);
    margin: 4rem auto;
  }

  .about-facts__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .about-fact-card {
    min-height: 10rem;
    padding: 1.25rem;
    border: 1px solid #231f20;
    border-radius: 20px;
    background: transparent;
  }

  .about-fact-card__meta {
    display: block;
    margin-bottom: 0.65rem;
    color: #231f20;
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
  }

  .about-fact-card__title {
    margin: 0;
    color: #231f20;
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
    line-height: 1.18;
  }

/* accordeon */
.core-skills {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12%;
    color: var(--purple-ft);
  }

  .core-skills h3 {
    margin-bottom: 40px;
  }

  .accordion-container {
    width: 100%;
    border-top: 1px solid var(--purple-ft);
  }

  .accordion-header {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 35px 60px 35px 15px;
    border: 0;
    border-bottom: 1px solid var(--purple-ft);
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-size: 1.8em;
    text-align: left;
    transition: background 0.2s ease-in-out;
  }

  .accordion-header:hover,
  .accordion-header.active {
    /* background: #ffffff; */
        background-image: radial-gradient(

        circle,

        rgba(114, 6, 255, 0.12) 0%,

        rgba(255, 65, 5, 0.12) 100%

    );
    animation: colorChangePackage 3s infinite alternate;
  }

  .accordion-header::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 24px;
    height: 24px;
    color: var(--purple-ft);
    font-size: 3.4rem;
    line-height: 24px;
    text-align: center;
    transform: translateY(-50%);
    transition: transform 0.2s ease-in-out;
  }

  .accordion-header.active {
    border-bottom: 0;
  }

  .accordion-header.active::after {
    transform: translateY(-50%) rotate(-45deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    width: 100%;
    padding: 0 15px;
    border-bottom: 1px solid var(--purple-ft);
    background: #ffffff;
    font-size: 1em;
    line-height: 1.5;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .accordion-content.open {
    max-height: 1000px;
    opacity: 1;
    padding: 15px 15px 30px;
  }

  .accordion-content p {
    margin: 0 0 20px;
    color: var(--purple-ft);
  }

  .accordion-content ul, .accordion-content li {
    margin: 0;
    padding-left: 20px;
    color: var(--purple-ft);
  }

/* Packages */
.package-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 0 2.5rem 2.5rem 2.5rem;
    justify-content: space-between;
    transition: transform 0.3s ease;
    background-color: var(--white-ft);
    border: 2px solid var(--st-blue-ft);

    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.package-card h4 {
    margin: 0.5rem 0 0.5rem 0;
    font-size: 3.5rem;
    line-height: 3.5rem;
    color: var(--st-blue-ft);
}
.package-card h2 {
    overflow-wrap: break-word;
    word-break: normal;

    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.package-card ul {
    margin-top: 1.5rem;
    padding-left: 1.25rem;
    overflow-wrap: break-word;
}

.package-card li {
    color: var(--st-blue-ft);
    font-size: 1rem;
}

.package-card:hover {
transform: translateY(-6px);
background: radial-gradient(
        circle,
        rgba(114, 6, 255, 0.03) 0%,
        rgba(255, 65, 5, 0.03) 100%
    );
animation: colorChangePackage 5s ease-in-out infinite;
}


.package-card:hover h2,
.package-card:hover li,
.package-card:hover p {
opacity: 0;
}


/* dsitort text */
.distort-text {
    font-family: 'Upton', sans-serif;
    color: var(--st-blue-ft);
    font-weight: 800;
    transition: transform 0.1s;
    text-align: left;

    z-index: 1000;
    position: relative;
    margin-bottom: 15%;    
    font-size: 17vw;
    width: 100%;
    white-space: nowrap;
}

/* Vem ai styles */
.vem-ai {
    width: 100%;
    background-color: var(--orange-ft);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
    position: relative;
    background: linear-gradient(to bottom, var(--orange-ft) 0%, var(--orange-ft) 80%, var(--white-ft) 100%);
}

/* Gradient CSS */
.blob {
    display: none;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 80%;
    /* background-image: linear-gradient(var(--white-ft) 54%, var(--white-ft)); */
    background: radial-gradient(circle, var(--purple-ft) 0%, var(--orange-ft) 100%);

    filter: blur(80px);
    transition: all 300ms ease-out;
    position: fixed;
    pointer-events: none;
    /* z-index: 9999; */
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 25px), -50%);
    animation: colorChange 3s infinite alternate;
    opacity: 1;
}

@media (min-width: 769px) {
    [data-blop-zone] {
        cursor: auto;
    }

    [data-blop-zone] * {
        cursor: auto;
    }
}
@keyframes colorChangePackage {
    0% {
        background-image: radial-gradient(
            circle,
            rgba(114, 6, 255, 0.08) 0%,
            rgba(255, 65, 5, 0.08) 100%
        );
    }

    25% {
        background-image: radial-gradient(
            circle,
            rgba(114, 6, 255, 0.08) 15%,
            rgba(255, 65, 5, 0.08) 100%
        );
    }

    50% {
        background-image: radial-gradient(
            circle,
            rgba(255, 65, 5, 0.08) 0%,
            rgba(114, 6, 255, 0.08) 100%
        );
    }

    75% {
        background-image: radial-gradient(
            circle,
            rgba(114, 6, 255, 0.08) 10%,
            rgba(255, 65, 5, 0.08) 90%
        );
    }

    100% {
        background-image: radial-gradient(
            circle,
            rgba(114, 6, 255, 0.08) 0%,
            rgba(255, 65, 5, 0.08) 100%
        );
    }
}

@keyframes colorChange {
    0% {
        background-image: radial-gradient(
            circle,
            rgba(114, 6, 255, 0.8) 0%,
            rgba(255, 65, 5, 0.8) 100%
        );
    }

    25% {
        background-image: radial-gradient(
            circle,
            rgba(114, 6, 255, 0.8) 15%,
            rgba(255, 65, 5, 0.8) 100%
        );
    }

    50% {
        background-image: radial-gradient(
            circle,
            rgba(255, 65, 5, 0.8) 0%,
            rgba(114, 6, 255, 0.8) 100%
        );
    }

    75% {
        background-image: radial-gradient(
            circle,
            rgba(114, 6, 255, 0.8) 10%,
            rgba(255, 65, 5, 0.8) 90%
        );
    }

    100% {
        background-image: radial-gradient(
            circle,
            rgba(114, 6, 255, 0.8) 0%,
            rgba(255, 65, 5, 0.8) 100%
        );
    }
}

/* subway line */
.compass-route {
    display: grid;
    grid-template-columns: 1fr minmax(40px, 8vw) 1fr minmax(40px, 8vw) 1fr minmax(40px, 8vw) 1fr;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
    gap: 1rem;
}

.route-stop {
    font-family: 'Upton', sans-serif;
    color: var(--blue-ft);
    font-size: 5rem;
    white-space: nowrap;
    text-align: center;
}

.route-line {
    width: 100%;
    height: 2px;
    background: var(--purple-ft);
    position: relative;
}

.route-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--purple-ft);
    border-right: 2px solid var(--purple-ft);
    transform: translateY(-50%) rotate(45deg);
}

@keyframes routeFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* gsap cards */
 .cardss {
    position: relative;
    width: 100%;
    height: 60vh;
    /* overflow: hidden; */
 }

 .card h1, .card h2 {
    color: var(--white-ft);
 }

 .card h1 {
    padding-top: 10%;
    padding-bottom: 2%; 

    font-size: 5rem;
    line-height: 5rem; 
 }
 
 .newcard h1 {
    padding-top: 30%;
    padding-bottom: 7%; 

    font-size: 4rem;
    line-height: 4rem; 
}

 .card h2, .newcard h2 {

    font-size: 1.4rem;
    line-height: 1.8rem; 
}

 .card {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    margin-left: 5%;
    padding-right: 45%;
    padding-left: 7%;
    border-radius: 60px;
    text-align: left; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
 }

 .newcardss {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
 }

 .newcard {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    margin-left: 5%;
    padding-right: 45%;
    padding-left: 7%;
    border-radius: 60px;
    text-align: left; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--white-ft);
    border: 2px solid var(--st-blue-ft);
}


/* Cookies */
.cookies-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(249, 248, 245, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white-ft);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 2px 10px rgba(0, 13, 33, 0.1);
    z-index: 1000;
}

.cookies-banner p {
    margin: 0;
    font-size: 18px;
padding-bottom: 0;
}

.cookies-banner a {
    text-decoration: underline;
    font-size: 18px;
}

.cookies-banner button {
    color: var(--st-blue-ft);
    border: 2px solid var(--st-blue-ft);
    padding: 8px 16px;
    border-radius: 30px;
    background: none; 
    cursor: pointer;
    font-size: 18px;
    margin-left: 15px;
}

.cookies-banner button:hover {
    color: var(--st-blue-ft);
    filter: blur(3px);
}

/* Logo */
#logo {
    transition: width 1.4s ease-in-out, height 1.4s ease-in-out;    
    text-align: center; 
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0; 
    left: 0;
}

#logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main claim gradient overlay */
.gradiente-container {
    position: relative;
    /* width: 359px; 
    height: 377px;  */
    width: auto;
    height: auto;
}

.gradiente-img {
    width: 100%;
    height: 100%;
    max-width: fit-content;
    display: absolute;
    object-fit: cover;
    bottom: 0;
    right: 0;
   }

.gradiente-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    z-index: 2;
}
   

/* Header and Navigation */
#navbar {
    position: fixed; 
    top: 0; 
    width: 100%; 
    transition: top 0.8s; 
    background-color: rgba(249, 248, 245, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navbar a {
    display: block;
    float: none;
    color: var(--st-blue-ft);
    text-align: center;
    /* padding: 10px; */
    padding: 0 30px 0 0px;
    text-decoration: none;
}
  
#navbar a:hover {
    font-weight: 800;
    cursor: pointer;
}

.ft {
    height: 40px;
    width: auto;
    margin-left: 20px;
    margin-right: auto;
    cursor: pointer;
}

#navbar .icon {
    display: none;
  }

/* Main Content */
main {
    text-align: center;
    z-index: 1;
    position: relative;
    width: 100%;
}

section {
    padding: 10% 20% 20% 20%;
}

.footer-bottom {
    /* position: relative; */
    width: 100%;
    height: auto;
    overflow: hidden; 
    padding-top: 300px;
}

.footer-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; 
    z-index: 2; 
    padding-top: 100px;
    pointer-events: none;
}

.footer-3d {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50vw; 
    z-index: 1; 
    pointer-events: none;
}
.footer-wrapper .container {
    padding-top: 5%;
}
.footer-wrapper {
    background-color: var(--orange-ft);
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 2%;
}
.footer-wrapper h1 {
    font-size: clamp(4rem, 10vw, 12rem);
    line-height: 0.9;
}

.footer-links {
    padding-bottom: 10px;
    z-index: 3;
}

#time-sao-paulo, #time-berlin {
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 200;
    line-height: 3rem;
    color: var(--st-blue-ft);
    text-align: left;
    justify-content: space-between;
    align-items: center;
}

/* CSS Grid */
.container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    padding-top: 144px;
}

.col {
    padding: 10px;
}

.col.line-col {
    overflow: visible;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; 
    overflow: hidden;
}

/* hero */
.ascii-hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(249,248,245,1) 0%,
    rgba(249,248,245,0.99) 10%,
    rgba(249,248,245,0.95) 25%,
    rgba(249,248,245,0.85) 40%,
    rgba(249,248,245,0.65) 60%,
    rgba(249,248,245,0.35) 80%,
    rgba(249,248,245,0.12) 92%,
    rgba(249,248,245,0) 100%
  );
}
.ascii-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #FF4105;
  color: #000d21;
  isolation: isolate;
}

.ascii-hero__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ascii-hero__content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ascii-hero__title {
  width: min(1080px, 88vw);
  color: #000d21;
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 8.75rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* Responsive Design */
@media (max-width: 768px) {
#navbar {
        transition: top 0.8s;
        /* padding: 8px 16px; */
        justify-content: space-between;
        min-height: 0;
        background: transparent;
        align-items: center;
      }

#navbar a:not(:first-child) {
        display: none;
      }

#navbar a.icon {
        float: right;
        display: block;
        /* padding: 8px; */
      }

#navbar.responsive {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 64px 0 16px;
        backdrop-filter: blur(10px);
        z-index: 2000;
        opacity: 1;
        animation: fadeIn 0.5s ease-in-out;
        overflow: hidden;
      }

#navbar.responsive .icon {
        position: absolute;
        right: 16px;
        top: 16px;
      }

#navbar.responsive > a:first-child {
        margin-bottom: 18px;
      }

#navbar.responsive a {
        float: none;
        display: block;
        width: 100%;
        text-align: right;
        padding: 2% 10%;
        font-size: clamp(1.5rem, 5vw, 2.5rem);
      }

#navbar.responsive .ft {
        height: 10rem;
      }
      
.ascii-hero {
    min-height: 560px;
  }

.ascii-hero__title {
    /* width: min(340px, 86vw);
    font-size: clamp(3rem, 16vw, 4.75rem); */
  }

    .about-facts__cards {
      grid-template-columns: 1fr;
    }

    .about-fact-card {
      min-height: 0;
    }
  
    .core-skills {
        padding: 0 4%;
    }
    .tagline {
        font-size: 1.5rem;
    }
.gradiente-img {
    width: 50%;
    height: 50%;
}

    section {
        padding: 10% 5%;
    }

    .container {
        display: block;
        padding: 64px 10px 0 10px;
        gap: 10px;
    }

    .two-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; 
    }

    h1 {
        font-size: 3.3rem;
        line-height: 3rem;
    }

    h2 {
        font-size: 1rem;
        line-height: 1.5rem;    
    }
    h3 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }
    .accordion-header {
        font-size: 1.5rem;
        line-height: 1.5rem;
        padding: 25px 60px 25px 15px;
    }

    .blob {
    display: none;
    }

    .vem-ai {
        padding: 20px 10px; 
        margin: 0;
        min-height: 100vh; 
        width: 100%;
        box-sizing: border-box;
        background: linear-gradient(to bottom, var(--orange-ft) 0%, var(--orange-ft) 80%, var(--white-ft) 100%);
    }
    .compass-route {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .route-line {
    width: auto;
    height: auto;
    background: none;
    margin-left: 0;
    }

    .route-line::after {
    content: "↓";
    position: static;
    border: none;
    width: auto;
    height: auto;
    transform: none;
    font-family: 'Upton', sans-serif;
    font-size: 3rem;
    color: var(--purple-ft);
    display: block;
    line-height: 1;
    }

    .route-stop {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
        width: 100%;
    }

    .cardss {
        height: calc(42vh + 9rem);
    }
    
    .card{
        top: auto;
        bottom: 0;
        height: 42vh;
        width: 90vw;
        padding-bottom: 30%;
        padding-right: 7%;
        border-radius: 24px;
        overflow: hidden;
        /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    }

    .card:nth-child(1) { z-index: 1; }
    .card:nth-child(2) { z-index: 2; }
    .card:nth-child(3) { z-index: 3; }
    .card:nth-child(4) { z-index: 4; }
    .card:nth-child(5) { z-index: 5; }
    .newcard {
        width: 90vw;
        padding-bottom: 30%;
        padding-right: 7%;
        border-radius: 24px;
    }
    
    .newcardss {
        height: 90vh;
    }

    .card h1 {
        padding-top: 4rem;
        padding-bottom: 0;
        margin: 0;
        font-size: 4rem;
        line-height: 4rem;
    }
    
    .newcard h1{
    font-size: clamp(1rem, 4vw, 3rem); 
    line-height: clamp(1.4rem, 4.8vw, 4.2rem); 
    }
    
    .card h2, .newcard h2{
    font-size: clamp(1rem, 4vw, 3rem); 
    line-height: clamp(1.4rem, 4.8vw, 4.2rem); 
    }

.package-card {
    padding: 1.5rem 1.5rem 0 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0;
}
.package-card ul {
    margin-top: 0;
}
.container .package-card {
    margin-left: 10px;
    margin-right: 10px;
}

    .package-card:hover {
        transform: none;
        background: var(--white-ft);
        background-image: none;
        filter: none;
        animation: none;
    }

    .package-card:hover h2,
    .package-card:hover li,
    .package-card:hover p {
        opacity: 1;
    }

.footer-wrapper{
    padding-top: 48px;
    margin-top: 48px;
}

.footer-bottom {
    padding-top: 150px;
}

}
