/* services */
.services{
	padding: 31px 0;
    padding-bottom: 10px;
    background-color: #faf5f5;
}

.services .wrapper{
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}

.services .service-item{
    padding: 30px;
    width: 49%;
    position: relative;
    /* display: flex; */
    background-color: #fff;
    /* border: 1px solid #c8b2b1; */
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.27);
    box-shadow: 3px 4px 2px 1px rgb(237 230 230);
    /* width: 100%; */
    border-radius: 5px;
    margin-bottom: 20px;
    text-decoration: none;
    min-height: 320px;
}

.services .service-item .image{
    height: 200px;
    width: 250px;
    position: absolute;
    right: 30px;
    top: 60px;
}

.services .service-item .content{
}

.services .service-item .content .title{
    font-size: 26px;
    font-family: 'WhitneyMedium';
    margin-bottom: 8px;
    text-decoration: none;
    /*color: #4a709c;*/
    color: #a25f5f;
    width:60%;
    line-height:38px;
}

.services .service-item .content .text{
	font-size: 15px;
    color: #383838;
    width:60%;
    line-height: 24px;
    margin-top:15px;
}
.services .service-item button{
    position: absolute;
    left: 30px;
    bottom: 25px;
    width: 40px;
    height: 40px;
    border: 0px;
    border-radius: 8px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01LjI5Mjg5IDE0LjcwNzFDNS42ODM0MiAxNS4wOTc2IDYuMzE2NTggMTUuMDk3NiA2LjcwNzExIDE0LjcwNzFMMTIuNzA3MSA4LjcwNzExQzEzLjA5NzYgOC4zMTY1OCAxMy4wOTc2IDcuNjgzNDIgMTIuNzA3MSA3LjI5Mjg5TDYuNzA3MTEgMS4yOTI4OUM2LjMxNjU4IDAuOTAyMzY4IDUuNjgzNDIgMC45MDIzNjkgNS4yOTI4OSAxLjI5Mjg5QzQuOTAyMzcgMS42ODM0MiA0LjkwMjM3IDIuMzE2NTggNS4yOTI4OSAyLjcwNzExTDEwLjU4NTggOEw1LjI5Mjg5IDEzLjI5MjlDNC45MDIzNyAxMy42ODM0IDQuOTAyMzcgMTQuMzE2NiA1LjI5Mjg5IDE0LjcwNzFaIiBmaWxsPSIjMjYyNjI2Ii8+Cjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.2s ease 0s;
    cursor: pointer;
    background-color: rgb(246 247 248);
    margin-top: 30px;
}
.services .service-item button:hover{
    background-color: rgb(236 246 255);
}
@media (max-width: 1200px) {
    .services .service-item{
        padding:25px;
        width: 49%;
    }
    .services .service-item .content .text{
        width: 85%;
    }
    .services .service-item .content .title{
        width: 85%;
    }
    .services .service-item .image{
        opacity: 0.3;
    }
}
@media screen and (max-width: 920px) {
    .services .service-item{
        min-height: auto;
        width: 100%;
    }
    .services .service-item .content .text{
        width: 100%;
        padding-bottom: 60px;
    }
    .services .service-item .image{
        top:10px;
    }
    .services .service-item .content .title{
        width: 100%;
    }
}

@media screen and (max-width: 715px) {

	.services .service-item:last-child{
		margin-bottom: 0px;
	}
}
