.business {
    padding-top: 50px;
}

.business-content {
    margin: auto;
}

.business .tiles {
    display: inline-flex;
    padding: 10px 5% 20px;
}

.business .tile {
    flex: 1;
    border-radius: 10px;
    color: var(--background-primary-color);
    max-width: 400px;
    margin: 10px;
    overflow: hidden;
}

.business .tile .cover {
    position: relative;
    left: -25%;
    right: -25%;
    width: 150%;
    border-radius: 0 0 50% 50%/0 0 25% 25%;
    overflow: hidden;
}

.business .tile .cover i {
    width: 50px;
    height: 50px;
    border: solid 3px var(--text-primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--background-primary-color);
    background-color: #00000055;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    opacity: 0.5;
}

.business .tile video {
    height: 100%;
    width: 100%;
    max-height: 300px;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    margin: auto;
    opacity: 0;
}

.business .tile:hover .cover i {
    opacity: 0;
}

.business .tile:hover .cover video {
    opacity: 1;
}

.business .text {
    background: var(--text-primary-color);
    box-shadow: 0 0 0 50px var(--text-primary-color);
    height: 100%;
    padding-bottom: 25px;
}

.business .title {
    height: 7em;
    display: flex;
}

.business h5 {
    letter-spacing: -1px;
    padding: 1px 10px;
    margin: auto;
}

.business p {
    padding: 3px 10%;
    font-size: 1.25em;
    letter-spacing: -0.5px;
}


@media only screen and (max-width: 800px) {

    .business .tiles {
        display: block;
    }

    .business .tile {
        margin: 20px auto;
    }

    .business .title {
        height: auto;
        padding: 20px 0 10px;
    }

}
