﻿.services {
	width: 100%;
}
.services .section-title h2{
	font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
	text-align: center;
	z-index: -1;
}
.services .section-title h2:before {
	content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
	
}
.services .section-title h2:after {
	content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.services .section-title p {
	text-align: center;
}

.services .section-title .row {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}
.services .section-title .row .item {
	width: 255px;
	box-shadow: 0 0 25px 0 rgba(0,0,0,.1);
    padding: 50px 30px;
    transition: all ease-in-out .4s;
    background: #fff;
	margin: 0 15px;
}
.services .section-title .row .item h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
	color: #37517e;
    transition: ease-in-out .3s;
}
.services .section-title .row .item p {
	line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
.cta {
    background: linear-gradient(rgba(40,58,90,0.9),rgba(40,58,90,0.9)),url(../images/cta-bg.jpg) fixed center center;
    background-size: cover;
    padding: 120px 0;

}
.cta .zoom-in  {
	display: flex;
	justify-content: center;
}
.cta .zoom-in > div:nth-child(1){
	width: 820px;
	
}
.cta .zoom-in > div:nth-child(2){
	margin-left: 30px;
	
}
.cta .zoom-in > div:nth-child(1) h3{
	color: #fff;
    font-size: 28px;
    font-weight: 700;

}
.cta .zoom-in > div:nth-child(1) p { 
	color: #fff;
}

.cta .zoom-in > div:nth-child(2) a{
	font-family: jost,sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 700px) { 
	.services .section-title .row {
		flex-wrap: wrap;
	}
	.services .section-title .row .item {
		width: 100%;
		margin: 15px;
	}
	.cta .zoom-in { 
		box-sizing: border-box;
		padding: 0 15px;
		flex-wrap: wrap;
	}
	.cta .zoom-in > div:nth-child(1) p {
		margin: 15px 0;
	}
}