* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #202020;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

header {
    height: 100dvh;
    height: 100vh; 
    overflow-x: hidden;
}

.header-content {
    padding: 40px 0 0 40px;
}

.logo img {
    max-width: 60px;
}

.title {
    margin-top: 120px;
    font-size: 60px;
    line-height: 1.235;
    font-weight: 800; 
    background: linear-gradient(98deg, #119980 -2.9%, #38EF7D 31.53%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.65;
    max-width: 650px;
}

a, a:link, a:active, a:visited {
    color: rgba(255, 255, 255, 0.80);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: all .5s;
}

a:hover {
    color: rgba(255, 255, 255, 1);
}

a.cta::after {
    content:'';
    width: 0%;
    height: 2px;
    display: block;
    background-color: #6FCF97;
    margin-bottom: 6px;
}

a.cta:hover::after {
    width: 100%;
    transition: all .5s;
}

.hero-image {
    position: absolute;
    width: 90%;
    height: auto;
    bottom: 0;
    right: -100px;
    z-index: -999;
}

footer {
    margin-top: 20vh;
    padding: 0px 40px;
}

.social-icons a {
    margin-right: 10px;
    transition: all .5s;
}

.social-icons a:hover {
    opacity: .8;
    cursor: pointer;
}

.footer-text {
    font-size: 12px;
    line-height: 26px; 
}

/* Mobile */

@media (max-width: 1024px) {

    header {
        height: unset;
    }

    .header-content {
        padding: 40px 20px 0;
    }

    .logo {
        display: flex;
        justify-content: center;
    }

    .title {
        margin-top: 60px;
        font-size: 30px;
        text-align: center;
    }
    
    .subtitle {
        max-width: unset;
        font-size: 18px;
        text-align: center;
    }

    a, a:link, a:active, a:visited {
        color: rgba(255, 255, 255, 1);
    }
    
    a.cta::after {
        content:'';
        width: 100%;
        height: 2px;
        display: block;
        background-color: #6FCF97;
        margin-bottom: 6px;
    }

    .hero-image {
        position: relative;
        left: -50%;
        width: 160%;
        height: auto;
        bottom: unset;
        right: unset;
    }

    footer {
        background-color: #101010;
        margin-top: 0px;
        padding: 40px 20px;
    }

}