section#hero {
    background: rgb(227,247,255);
    background: linear-gradient(0deg, rgba(227,247,255,1) 0%, rgba(255,255,255,1) 100%);
}

    #hero-image {
        max-width: 400px;
    }

section#why {
    background: rgb(227,247,255);
    background: linear-gradient(180deg, rgba(227,247,255,1) 0%, rgba(255,255,255,1) 100%);
}

section#download {
    color: white;
}

    section#download .background {
        position: absolute;
        left: 0;
        top: 20px;
        width: 100%;
        height: calc(100% - 40px);
        background: var(--blue-light);
        background: linear-gradient(45deg, #063380 0%, var(--blue-light) 100%);
    }

    section#download .screenshots img {
        width: 200px;
    }

section#for .for-role {
    max-width: 300px;
    height: 400px;
}

    section#for .for-roles {

    }

        section#for .for-role .background {
            position: absolute;
            bottom: 0;
            left: 10px;
            width: calc(100% - 20px);
            height: calc(100% - 30px);
            border-radius: 30px;
            background: var(--blue-light);
            background: linear-gradient(0deg, #063380 0%, var(--blue-light) 100%);
            transition: all 200ms ease-in-out;
        }

        section#for .for-role .human {
            position: absolute;
            top: 0px;
            left: 50%;
            margin-left: -32%;
            height: calc(70% - 0px);
            transition: all 200ms ease-in-out;
            width: auto;
        }

        section#for .for-role .texts {
            color: white;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            font-size: 0.8rem;
            transition: all 200ms ease-in-out;
        }

            section#for .for-role .texts h3,
            section#for .for-role .texts span {
                transition: all 250ms ease-in-out;
            }

            section#for .for-role .texts button {
                border: 0;
                border-radius: 25px;
                width: 150px;
                height: 50px;
                padding: 0 20px;
                background-color: transparent;
                transition: all 200ms;
                cursor: pointer;
            }

                section#for .for-role .texts button span {
                    text-transform: uppercase;
                    text-decoration: underline;
                    color: white;
                }

        section#for .for-role:hover .background {
            transform: scale(1.02) translateY(-5px);
        }

        section#for .for-role:hover .human {
            transform: scale(1.05) translateY(-10px);
        }

        section#for .for-role:hover .texts h3,
        section#for .for-role:hover .texts span {
            transform: translateY(-20px);
        }

        section#for .for-role:hover .texts button {
            background-color: var(--blue-light);
        }

.store-buttons img {
    cursor: pointer;
    height: 50px;
    transition: all 200ms;
}

    .store-buttons img:hover {
        transform: scale(1.02);
    }

    .store-buttons img:last-child {
        margin-left: 10px;
    }

.feature img {
    height: 80px;
}

.feature h6 {
    font-weight: 600;
    line-height: 25px;
    color: var(--blue-light);
}

footer {
    color: white;
    font-size: 0.8rem;
    background: var(--blue-light);
    background: linear-gradient(45deg, #063380 0%, var(--blue-light) 100%);
}

    footer a,
    footer a:hover,
    footer a:visited,
    footer a:active {
        color: white;
        margin: 0 0 15px 0;
    }

    footer span {
        line-height: 25px;
    }

@media (max-width: 992px) {
    .store-buttons img {
        cursor: pointer;
        height: 40px;
        transition: all 200ms;
    }

    section#hero #hero-image {
        max-width: 100%;
    }

    section#for .for-roles {
        overflow-y: visible;
        overflow-x: scroll;
        flex-wrap: nowrap;
        padding-bottom: 40px;
    }

        section#for .for-roles .for-role {
            width: 80%;
            min-width: 80%;
        }

        section#for .for-roles .for-role:first-child {
            margin-left: 30px;
        }

        section#for .for-roles .for-role:last-child {
            margin-right: 30px;
        }

        section#for .for-role:hover .human {
            transform: scale(1.01);
        }
}

@media (max-width: 1200px) {
    section#download .background {
        top: 0;
        height: 100%;
    }

    section#why .why img {
        width: 50px;
        margin-right: 20px;
    }
}
