/*-------------------------------------------------------------- 
# Contact Info 
--------------------------------------------------------------*/

.contact-info-one {
	padding-top: 150px;
	padding-bottom: 100px;
}

.contact-info-one__single {
	padding-top: 70px;
	padding-bottom: 51px;
	text-align: center;
	background-color: #fff;
	margin-bottom: 64px;
	position: relative;
	box-shadow: 0px 10px 30px 0px rgba(67, 131, 99, 0.15);
}


.contact-info-one__icon {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	background-color: var(--thm-base);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-bottom: 37px;
}

.contact-info-one__icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: inherit;
	transform: rotate(15deg);
	border-radius: inherit;
	opacity: .3;
	transition: transform 500ms;
}

.contact-info-one__single:hover .contact-info-one__icon::before {
	transform: rotate(195deg);
}

.contact-info-one__icon i {
	color: #fff;
	font-size: 38px;
	position: relative;
}

.contact-info-one__single h3 {
	margin: 0;
	color: var(--thm-black);
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

.contact-info-one__single p {
	margin: 0;
	color: #a0a1a8;
	font-size: 16px;
	line-height: 26px;
}

.contact-info-one__single p a {
	color: inherit;
}

.contact-info-one__single p a:hover {
	color: var(--thm-base);
}

.contact-info-one [class*=col-]:nth-child(1) .contact-info-one__icon {
	background-color: #ff5e5e;
}

.contact-info-one [class*=col-]:nth-child(3) .contact-info-one__icon {
	background-color: var(--thm-primary);
}