.info-section {
    display: flex;
    max-width: 1024px;
    margin: 0 auto;
    padding: 96px 32px;
    box-sizing: border-box;
}

.info-section p {
    line-height: 1.5em;
    font-size: 1.125rem;
    max-width: 550px;
}
p.sub-header {
    margin: 0;
    font-size: 1.5rem;
    color: #767676;
}
.info-section-content {
    flex-grow: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-section-content h1 {
    margin-bottom: 0;
    font-size: 2.25rem;
}
.info-illustration {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    flex-grow: 1;
    flex-basis: 240px;
}

.hero-header {
    font-size: 3rem;
    margin-top: 16px;
}
.hero-section {
    padding: 0;
    height: 80vh;
}
.hero-section p {
    font-size: 1.25rem;
}
#appBadges {
    display: flex;
    align-items: center;
    margin-top: 32px;
}
#appBadges a:first-child {
    margin-right: 16px;
}

.card {
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0 rgba(70, 229, 242, 0.1), 0px 3px 20px 0 rgba(0, 0, 0, 0.05);
    max-width: 1024px;
    height: 540px;
    padding: 96px 64px;
    box-sizing: border-box;
    margin-top: 80px;
    margin-bottom: 80px;

    background-repeat: no-repeat;
    background-size: auto 110%;
    background-position: 100% 0;
}

#heroIllustration {
    background-image: url('assets/Illustration/scan.svg');
    background-size: 90%;
}
#securityBackground {
    background-image: url('assets/Illustration/circleBG.svg');
    background-size: 90%;
    background-position: -180% 50%;
}
#securityIllustration {
    background-image: url('assets/Illustration/security.svg');
    background-position: 50% 50%;
    background-size: 50%;
}
#structureBackground {
    background-image: url('assets/Illustration/diamondBG.svg');
    background-size: auto 140%;
    background-position: 150% 50%;
}
#structureIllustration {
    background-image: url('assets/Illustration/folder.svg');
    background-size: auto 45%;
    margin-right: 1.5em
}

.gradient-background {
    background-image: linear-gradient(180deg, #46e5f2, #1a53ff);
    color: white;
}

@media screen and (max-width: 700px){
    .info-section {
        flex-direction: column;
        text-align: center;
    }
    .info-section-content {
        width: 100%;
        align-items: center;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .hero-section {
        margin-top: 0;
        height: auto;
    }
    #appBadges {
        justify-content: center;
    }
    .card {
        padding: 40px 0 16px 0;
        height: auto;
    }
    .info-illustration {
        flex-basis: 200px;
    }
    #heroIllustration {
        margin-top: 16px;
        background-size: auto 90%;
    }
    #securityIllustration {
        background-image: url('assets/Illustration/security_wBG.svg');
        background-size: auto 100%;
        background-position: 50% 0;
    }
    #securityBackground {
        background-image: none;
    }
    #structureIllustration {
        background-image: url('assets/Illustration/folder_wBG.svg');
        margin-right: 0;
        background-size: auto 100%;
        background-position: 50% 39%;
    }
    #structureBackground {
        background-image: none;
    }
}
@media screen and (max-width: 450px) {
    .info-section p {
        /*line-height: 1.5em;*/
        font-size: 1rem;
    }
    p.sub-header {
        font-size: 1.25rem;
    }
    .info-section-content h1 {
        font-size: 1.75rem;
    }
    .hero-header {
        font-size: 2.125rem;
        /*margin-top: 16px;*/
    }
    .hero-section p {
        font-size: 1.125rem;
    }

}
@media screen and (max-width: 350px) {
    #appBadges {
        flex-direction: column;
    }
    #appBadges a {
        margin: 8px 16px;
    }
}