.home-page-bullets {
    margin-bottom: -50px;
}

.home-benefits {
    width: 800px;
    margin: 50px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -ms-flex-wrap: wrap;
    flex-wrap: wrap; */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    transform-origin: top;


}

.benefit {
    flex-basis: 100%;
    height: 350px;
    background: transparent;
    position: relative;
    perspective: 1000px;
    margin-bottom: 1%;
    margin-right: 1%;
}

.benefit-container {
    transition: .8s ease-in-out;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
    position: relative;
}

.benefit:hover .benefit-container {
    transform: rotateY(180deg);
}

.benefit:hover .benefit-back {
    opacity: 1;
    border: 1px solid #fff;
    z-index: 100;
    box-shadow: 15px 10px 44px -12px #08365c;
}

.benefit-image {
    max-width: 220px;
}

.benefit-front,
.benefit-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.benefit-front {
    z-index: 2;
    /* for firefox 31 */
    transform: rotateY(0deg);
    background: #fff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid;
}

.benefit-back {
    transform: rotateY(-180deg);
    opacity: 0;
    transition: all .5s ease-in-out;
    background-color: #126eb7;
    color: #fff;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.benefit-title {
    font-size: 28px;
    line-height: 35px;
    width: 100%;
    margin-top: 30px;
}

.benefit-button {
    margin: 0 auto;
    display: block;
    border: 1px solid #fff;
    color: #fff;
    width: 125px;
    padding: 0 !important;
    position: relative;
    z-index: 100000;
}

.benefit-button:hover {
    color: #126eb7;
    background: #fff;
}

.benefit-logos {
    width: 200px !important;
    position: absolute;
    bottom: 90px;
    margin: auto;
    left: 0;
    right: 0;
}

.benefit-container:first-of-type > .benefit-image {
    width: 110%;
}
/* @media (min-width: 620px) and (max-width: 1376px) {

.home-benefits {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
}

.benefit {
	flex-basis: 80%;
}

}  */

@media screen and (max-width: 620px) {
    .home-benefits {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100vw;
        margin: 0;
    }

    .benefit {
        min-height: 260px;
        margin-bottom: 30px;
        margin-right: 0;
        height: 45vh;
    }

    .benefit-front {
        transform: scale(0.9);
    }

    .benefit-back {
        font-size: 110%;
    }
}

@media screen and (min-width: 320px) {
    .benefit-back {
        font-size: 105%;
    }
}

@media screen and (min-width: 360px) {
    .benefit-back {
        font-size: 14px;
    }
}

@media screen and (min-width: 375px) {
    .benefit-back {
        font-size: 16px;
    }
}

@media screen and (min-width: 400px) {
    .benefit-back {
        font-size: 19px;
    }
    .benefit {
        flex-basis: 48%;
    }
}

@media screen and (min-width: 1450px) {
    .home-benefits {
		max-width: 1600px;
		width: auto;
	}
	
	.home-benefits .benefit {
		flex-basis: 24%;
	}
}


