.contact-section {
	margin: 60px 0;
}
.contact-section .sec-content {
	color: var(--color-1);
	margin-bottom: 40px;
}
.contact-section .content-row {
	gap: 80px;
}
.contact-section .heading {
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 40px;
	margin-bottom: 30px;
}
.contact-section .content-row .left-content{
	flex: 1 1 65%;
}
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gform_fields .gfield_label{
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
}
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gfield-choice-input+label{
	color: rgba(39, 71, 96, 0.52);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
}
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 40px;
}
.contact-section .content-row .left-content .gform_wrapper.gravity-theme input,
.contact-section .content-row .left-content .gform_wrapper.gravity-theme textarea {
	border-radius: 15px;
	border: 1px solid rgba(48, 123, 196, 0.50);
	padding: 14px;
}
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gform_button {
    border-radius: 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    border: none;
    padding: 10px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
	position: relative;
	background: linear-gradient(107deg, #29A6EC 0%, #2AD8C3 50%, #29A6EC 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    transition: background-position 0.5s ease-in-out;
	box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15);
}
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gform_button:hover,
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gform_button:focus {
    background-position: 100% 0%;
}
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gform_button:after {
	content: '\f061';
	font-family: 'Font Awesome 7 Pro';
	font-weight: 900;
	position: absolute;
	top: 51%;
	transform: translateY(-50%);
	right: -2px;
	transition: transform 0.3s ease;
}
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gform_button:hover:after,
.contact-section .content-row .left-content .gform_wrapper.gravity-theme .gform_button:focus:after {
    transform: translateX(4px); 
}
.contact-section .content-row .right-content{
	flex: 1 1 35%;
}
.contact-section .content-row .right-content .content-col{
	flex-direction: column;
}
.contact-section .content-row .right-content .content-col .image img{
	border-radius: 20px;
	margin-bottom: 40px;
}
.contact-section .content-row .right-content .content-col .content{
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
}
@media screen and (max-width: 767px) {
	.contact-section .content-row {
		flex-direction: column-reverse;
	}

}