.contact-sectionv1 .section-wrapper {
	width: 100%;
	max-width: 1140px;
	animation: fadeInUp 0.7s ease both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact-sectionv1 .section-header {
	text-align: center;
	margin-bottom: 48px;
}

.contact-sectionv1 .section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #e8a020;
	margin-bottom: 10px;
}

.contact-sectionv1 .section-title {
	font-size: 38px;
	font-weight: 800;
	color: #1a1a2e;
	letter-spacing: -0.5px;
}

.contact-sectionv1 .contact-grid {
	display: grid;
	grid-template-columns: 527px 1fr;
	gap: 33px;
	align-items: start;
}

.contact-sectionv1 .contact-left {
	animation: fadeInUp 0.7s ease 0.15s both;
}

.contact-sectionv1 .image-brush-wrap {
	position: relative;
	width: 100%;
	margin-bottom: 28px;
}

.contact-sectionv1 .brush-bg {
	position: absolute;
	inset: -12px -18px -16px -18px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 460 340'%3E%3Cpath d='M10,30 Q80,-10 200,20 Q340,55 450,15 Q460,180 440,310 Q300,345 140,330 Q30,315 5,280 Z' fill='%23f0ede8' opacity='0.85'/%3E%3Cpath d='M0,40 Q70,5 190,28 Q330,60 448,18 L452,300 Q290,338 120,322 Q20,308 0,268 Z' fill='%23e8e3dc' opacity='0.5'/%3E%3C/svg%3E") no-repeat center/cover;
	border-radius: 8px;
	z-index: 0;
}

.contact-sectionv1 .contact-img {
	position: relative;
	z-index: 1;
	width: 100%;
	border-radius: 6px;
	display: block;
	object-fit: cover;
	max-height: 300px;
	/* Placeholder gradient náº¿u khÃ´ng cÃ³ áº£nh tháº­t */
	min-height: 240px;
	background: linear-gradient(135deg, #f5f0ea 0%, #e8e0d5 100%);
}

.contact-sectionv1 .laptop-placeholder {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 260px;
	border-radius: 6px;
	overflow: hidden;
	background: linear-gradient(145deg, #faf8f5 0%, #ede8e0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-sectionv1 .laptop-placeholder img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

.contact-sectionv1 .contact-desc {
	font-size: 14px;
	line-height: 1.75;
	color: #555;
}

.contact-sectionv1 .contact-desc a {
	color: #6c63e8;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}

.contact-sectionv1 .contact-desc a:hover {
	color: #4b44cc;
}

.contact-sectionv1 .contact-desc .phone {
	color: #333;
	font-weight: 700;
	text-decoration: none;
}

.contact-sectionv1 .contact-desc .phone:hover {
	color: #e8a020;
}

.contact-sectionv1 .contact-desc p+p {
	margin-top: 14px;
}

.contact-sectionv1 .contact-right {
	animation: fadeInUp 0.7s ease 0.25s both;
}

.contact-sectionv1 .form-row {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	width: 100%;
}

.contact-sectionv1 .form-group {
	margin-bottom: 16px;
	width: 100%;
}

.contact-sectionv1 .form-group:last-of-type {
	margin-bottom: 24px;
}

.contact-sectionv1 input[type="text"],
.contact-sectionv1 input[type="email"],
.contact-sectionv1 input[type="tel"],
.contact-sectionv1 textarea {
	width: 100%;
	padding: 14px 18px;
	border-radius: 6px;
	font-size: 14px;
	color: #333;
	background: #fff;
	outline: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
	-webkit-appearance: none;
	border: 1px solid #cacaca;
	border-left: 2px solid #7b68ee;
}

.contact-sectionv1 input::placeholder,
.contact-sectionv1 textarea::placeholder {
	color: #aaa;
	font-size: 14px;
}

.contact-sectionv1 input:focus,
.contact-sectionv1 textarea:focus {
	border-color: #6c63e8;
	box-shadow: 0 0 0 3px rgba(108, 99, 232, 0.12);
	transform: translateY(-1px);
}

.contact-sectionv1 textarea {
	resize: vertical;
	min-height: 150px;
}

.contact-sectionv1 .btn-send {
	display: inline-block;
	padding: 14px 36px;
	background: #6c63e8;
	color: #fff;
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	font-weight: 700;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	letter-spacing: 0.3px;
	transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}

.contact-sectionv1 .btn-send::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.15);
	opacity: 0;
	transition: opacity 0.2s;
}

.contact-sectionv1 .btn-send:hover {
	background: #5549d4;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(108, 99, 232, 0.35);
}

.contact-sectionv1 .btn-send:hover::after {
	opacity: 1;
}

.contact-sectionv1 .btn-send:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(108, 99, 232, 0.25);
}

.contact-sectionv1 .btn-send .ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: scale(0);
	animation: rippleAnim 0.55s linear;
	pointer-events: none;
}

@keyframes rippleAnim {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

.contact-sectionv1 .success-toast {
	display: none;
	margin-top: 14px;
	padding: 12px 18px;
	background: #e8f5e9;
	color: #2e7d32;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	border-left: 4px solid #4caf50;
	animation: fadeInUp 0.4s ease;
}

.contact-sectionv1 .deco-dots {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 160px;
	height: 160px;
	opacity: 0.08;
	pointer-events: none;
	z-index: 0;
}

.contact-sectionv1 section.contact-sectionv1 {
	background-image: url(https://cutesolution.com/html/techvio/assets/img/map-image.png);
	background-position: right center;
	background-size: auto;
	background-repeat: no-repeat;
}

@media (max-width: 960px) {
	.contact-sectionv1 .contact-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.contact-sectionv1 .contact-left {
		max-width: 480px;
	}

	.contact-sectionv1 .section-title {
		font-size: 30px;
	}
}

@media (max-width: 560px) {
	.contact-sectionv1 .form-row {
		grid-template-columns: 1fr;
	}

	.contact-sectionv1 .section-title {
		font-size: 26px;
	}

	.contact-sectionv1 body {
		padding: 40px 16px;
	}
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	20% {
		transform: translateX(-6px);
	}

	40% {
		transform: translateX(6px);
	}

	60% {
		transform: translateX(-4px);
	}

	80% {
		transform: translateX(4px);
	}
}

section.contact-sectionv1 {
	padding-bottom: 30px;
}










/* contact v2  */

.contact-sectionv2 .contact-home {
	margin: 50px 0 10px;
}

.contact-sectionv2 .contact-home .inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-sectionv2 .contact-home .title-page-des {
	margin: 20px 0;
	font-size: 16px;
	color: #555;
}

.contact-sectionv2 .contact-home .left-col .info-box {
	background: var(--bv-primary);
	border-radius: 20px;
	padding: 36px 36px 32px;
}

.contact-sectionv2 .contact-home .left-col .info-box .info-row {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 8px;
	padding: 14px 0;
	border-bottom: 1px solid rgb(255 255 255 / 50%);
	font-size: 14px;
	color: #Fff;
}

.contact-sectionv2 .contact-home .left-col .info-box .info-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.contact-sectionv2 .contact-home .left-col .info-box .info-row:first-child {
	padding-top: 0;
}

.contact-sectionv2 .contact-home .left-col .info-box .info-row h3 {
	font-size: 16px;
	font-weight: 700;
}

.contact-sectionv2 .contact-home .left-col .info-box .info-row p {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
}

.contact-sectionv2 .contact-home .right-col {
	background: var(--contact_section_background_color);
	border-radius: 20px;
	padding: 36px 36px 40px;
}

.contact-sectionv2 .contact-home .right-col .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

.contact-sectionv2 .contact-home .right-col .form-row.single {
	grid-template-columns: 1fr;
}

.contact-sectionv2 .contact-home .right-col .form-row input,
.contact-sectionv2 .contact-home .right-col .form-row textarea {
	width: 100%;
	background: #fff;
	border: 1.5px solid var(--bv-primary)4d;
	border-radius: 100px;
	padding: 14px 20px;
	outline: none;
	font-size: 15px;
	transition: border-color 0.22s;
	resize: none;
	margin-bottom: 7px;
}

.contact-sectionv2 .contact-home .right-col .form-row input:focus,
.contact-sectionv2 .contact-home .right-col .form-row textarea:focus {
	border-color: #9a6d28;
}

.contact-sectionv2 .contact-home .right-col .form-row textarea {
	border-radius: 16px;
	height: 150px;
	padding: 16px 20px;
}

.contact-sectionv2 .contact-home .right-col .btn-send {
	display: block;
	width: 100%;
	background: var(--bv-primary);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 16px;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	margin-top: 6px;
	transition: background 0.22s, transform 0.2s;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.contact-sectionv2 .contact-home .right-col .btn-send:hover {
	background: #9a6d28;
}

.contact-sectionv2 .section-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--bv-primary);
	line-height: 1.2;
	margin-top: 10px;
	padding-left: 20px;
	border-left: 4px solid var(--bv-primary);
}

.contact-sectionv2 .section-header .header-label svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}
.contact-sectionv2 .header-label {
    font-size: 16px;
    display: flex;
    align-items: baseline;
    gap: 0px 10px;
    font-style: italic;
}
@media (max-width: 860px) {
	.contact-sectionv2 .section-header h2 {
    font-size: 27px;
}


	.contact-sectionv2 .contact-home .inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-sectionv2 .contact-home .right-col .form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.contact-sectionv2 .contact-home {
		margin: 30px 0;
	}

	.contact-sectionv2 .contact-home .left-col .info-box {
		padding: 20px;
	}

	.contact-sectionv2 .contact-home .left-col .info-box .info-row {
		grid-template-columns: 100px 1fr;
		align-items: center;
	}

	.contact-sectionv2 .contact-home .right-col {
		padding: 20px;
	}

	.contact-sectionv2 .section-header.clamp2 h2 {
		max-width: 80%;
		margin: 0 auto;
	}

	.contact-sectionv2 .contact-home .left-col .info-box .info-row p {
		max-width: 80%;
	}
}





























































/* //////////////////////////////////////// contac dich vu //////////////////////////////// */

 .section-contact-servicer-v1 .s2::before {
	 content: '';
	 position: absolute;
	 inset: 0;
	 background: rgba(30, 60, 32, 0.65);
}
 .section-contact-servicer-v1 .s2-inner {
	 position: relative;
	 z-index: 1;
	 margin: 0 auto;
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 60px;
	 align-items: center;
}
 .section-contact-servicer-v1 .s2-ey {
	 font-size: 13px;
	 letter-spacing: 3px;
	 text-transform: uppercase;
	 color: #FFF;
	 margin-bottom: 14px;
}
 .section-contact-servicer-v1 .s2-tt {
	 font-size: 35px;
	 color: #fff;
	 line-height: 1.2;
	 margin-bottom: 16px;
}
 .section-contact-servicer-v1 .s2-tt em {
	 font-style: italic;
	 color: #90c890;
}
 .section-contact-servicer-v1 .s2-desc {
	 font-size: 16px;
	 line-height: 1.85;
	 color: rgb(255 255 255);
	 font-weight: 300;
}
 .section-contact-servicer-v1 .s2-card {
	 background: #fff;
	 padding: 15px 20px;
	 border-radius: 4px;
	 box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
 .section-contact-servicer-v1 .s2-card-title {
	 font-size: 22px;
	 color: #1e3020;
	 margin-bottom: 24px;
	 text-align: center;
	 text-transform: uppercase;
	 font-weight: 700;
}
 .section-contact-servicer-v1 .s2-f {
	 margin-bottom: 16px;
}
 .section-contact-servicer-v1 .s2-f label {
	 display: block;
	 font-size: 11px;
	 letter-spacing: 2px;
	 text-transform: uppercase;
	 color: #90a090;
	 margin-bottom: 6px;
	 font-weight: 500;
}
 .section-contact-servicer-v1 .s2-f input, .section-contact-servicer-v1 .s2-f select, .section-contact-servicer-v1 .s2-f textarea {
	 border: 1px solid #dde8dd;
	 background: #f8fbf8;
	 padding: 11px 14px;
	 font-size: 13px;
	 color: #1e3020;
	 border-radius: 2px;
	 transition: border-color 0.3s;
	 width: 100%;
	 margin-bottom: 0px;
}
 .section-contact-servicer-v1 .s2-f input:focus, .section-contact-servicer-v1 .s2-f select:focus, .section-contact-servicer-v1 .s2-f textarea:focus {
	 border-color: #5a8a5e;
}
 .section-contact-servicer-v1 .s2-f textarea {
	 height: 72px;
}
 .section-contact-servicer-v1 .s2-row {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 12px;
}
 .section-contact-servicer-v1 .s2-btn {
	 width: 100%;
	 background: var(--bv-primary);
	 color: #fff;
	 padding: 12px;
	 font-size: 16px;
	 letter-spacing: 3px;
	 text-transform: uppercase;
	 border: none;
	 cursor: pointer;
	 margin-top: 8px;
	 border-radius: 2px;
	 transition: background 0.3s;
}
 .section-contact-servicer-v1 .s2-btn:hover {
	 background: var(--bv-secondary);
}
 @media (max-width: 768px) {
	 .section-contact-servicer-v1 .s2-inner {
		 grid-template-columns: 1fr;
		 gap: 40px;
	}
	 .section-contact-servicer-v1 .s2-tt {
		 font-size: 30px;
	}
}
 

























































/* .section-hero-tpl2-services  */
.section-hero-tpl2-services .s3 {
	 background: #f0f0f0;
	 padding: 90px 0px;
}
.section-hero-tpl2-services .s3-form-box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    filter: blur(3px);
}

.section-hero-tpl2-services .s3-form-box:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000080;
    left: 0;
    top: 0;
    filter: blur(2px);
}
 .section-hero-tpl2-services .s3-inner {
	 display: grid;
	 grid-template-columns: 1.1fr 1fr;
	 gap: 80px;
	 align-items: center;
}
 .section-hero-tpl2-services .s3-ey {
	 font-size: 13px;
	 letter-spacing: 2px;
	 text-transform: uppercase;
	 color: var(--bv-primary);
	 margin-bottom: 14px;
}
 .section-hero-tpl2-services .s3-tt {
	 font-size: 44px;
	 font-weight: 300;
	 color: var(--bv-primary);
	 line-height: 1.15;
	 margin-bottom: 20px;
	 font-weight: 600;
}
 .section-hero-tpl2-services .s3-tt em {
	 font-style: italic;
	 color: #c9a84c;
}
 .section-hero-tpl2-services .s3-desc {
	 font-size: 17px;
	 line-height: 1.5;
	 color: var(--bv-primary);
	 font-weight: 400;
	 margin-bottom: 30px;
}
 .section-hero-tpl2-services .s3-info {
	 display: flex;
	 flex-direction: column;
	 gap: 16px;
}
 .section-hero-tpl2-services .s3-info-row {
	 display: flex;
	 align-items: center;
	 gap: 14px;
}
 .section-hero-tpl2-services .s3-info-icon {
	 width: 40px;
	 height: 40px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 font-size: 16px;
	 flex-shrink: 0;
	 background: var(--bv-primary);
	 border-radius: 100%;
}
 .section-hero-tpl2-services .s3-info-text {
	 font-size: 13px;
	 color: #a09080;
	 font-weight: 300;
}
 .section-hero-tpl2-services .s3-info-text strong {
	 color: var(--bv-primary);
	 font-weight: 500;
	 display: block;
	 font-size: 17px;
}
 .section-hero-tpl2-services .s3-form-box {
	 border: 1px solid rgb(0 0 0 / 70%);
	 padding: 15px 21px;
	 position: relative;
	 border-radius: 5px;
}
 .section-hero-tpl2-services .s3-form-box-title {
	 font-family: 'Cormorant Garamond', serif;
	 font-size: 22px;
	 color: #f0e8d0;
	 margin-bottom: 28px;
	 font-weight: 400;
	 position: relative;
	 z-index: 1;
}
 .section-hero-tpl2-services .s3-f {
	 margin-bottom: 18px;
	 position: relative;
	 z-index: 1;
}
 .section-hero-tpl2-services .s3-f label {
	 display: block;
	 font-size: 10px;
	 letter-spacing: 3px;
	 text-transform: uppercase;
	 color: #ffffff;
	 margin-bottom: 6px;
}
 .section-hero-tpl2-services .s3-f input, .section-hero-tpl2-services .s3-f select, .section-hero-tpl2-services .s3-f textarea {
	 border: none;
	 border-bottom: 1px solid rgba(201, 168, 76, 0.2);
	 background: #ffffffd9;
	 padding: 10px 0;
	 font-size: 14px;
	 color: #000000;
	 transition: border-color 0.3s;
	 padding: 10px;
	 border-radius: 5px;
}
 .section-hero-tpl2-services .s3-f input:focus, .section-hero-tpl2-services .s3-f select:focus, .section-hero-tpl2-services .s3-f textarea:focus {
	 border-bottom-color: #c9a84c;
}
 .section-hero-tpl2-services .s3-f select option {
	 background: #141210;
}
 .section-hero-tpl2-services .s3-f textarea {
	 height: 68px;
}
 .section-hero-tpl2-services .s3-row {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 16px;
	 position: relative;
	 z-index: 1;
}
 .section-hero-tpl2-services .s3-btn {
	 width: 100%;
	 background: var(--bv-primary);
	 color: #ffffff;
	 border: 1px solid rgb(255 255 255 / 50%);
	 padding: 12px;
	 font-size: 14px;
	 letter-spacing: 3px;
	 text-transform: uppercase;
	 cursor: pointer;
	 margin-top: 10px;
	 transition: background 0.3s, color 0.3s;
	 position: relative;
	 z-index: 1;
}
 .section-hero-tpl2-services .s3-btn:hover {
	 background: var(--bv-secondary);
	 color: #0d0c0b;
}
 @media (max-width: 900px) {
	 .section-hero-tpl2-services .s3-inner {
		 grid-template-columns: 1fr;
		 gap: 48px;
	}
	 .section-hero-tpl2-services .s3-tt {
		 font-size: 32px;
	}
	.section-hero-tpl2-services .s3 {
    padding: 25px 0px 0px;
}
}
 








































/* section-contact-servicer-v2  */


.section-contact-servicer-v2 .s7 {
	 background: var(--contact_section_background_color);
	 padding: 30px 0px;
}
 .section-contact-servicer-v2 .s7-inner {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 0px;
	 align-items: stretch;
}
 .section-contact-servicer-v2 .s7-left {
	 display: flex;
	 flex-direction: column;
}
 .section-contact-servicer-v2 .s7-img-wrap {
	 flex: 1;
	 position: relative;
	 min-height: 300px;
	 overflow: hidden;
}
 .section-contact-servicer-v2 .s7-img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 display: block;
}
 .section-contact-servicer-v2 .s7-img-overlay {
	 position: absolute;
	 inset: 0;
	 background: linear-gradient(to top, rgba(60, 30, 10, 0.7) 0%, transparent 50%);
}
 .section-contact-servicer-v2 .s7-img-badge {
	 position: absolute;
	 top: 20px;
	 left: 20px;
	 background: var(--bv-secondary);
	 color: #fff;
	 font-family: 'Josefin Sans', sans-serif;
	 font-size: 9px;
	 letter-spacing: 3px;
	 text-transform: uppercase;
	 padding: 7px 14px;
}
 .section-contact-servicer-v2 .s7-img-text {
	 position: absolute;
	 bottom: 20px;
	 left: 20px;
	 right: 20px;
}
 .section-contact-servicer-v2 .s7-img-text h3 {
	 font-size: 22px;
	 font-weight: 300;
	 color: #fff;
	 margin-bottom: 6px;
	 font-weight: 600;
	 text-transform: uppercase;
}
 .section-contact-servicer-v2 .s7-img-text p {
	 font-size: 15px;
	 color: rgba(255, 255, 255, 0.7);
	 font-weight: 300;
}
 .section-contact-servicer-v2 .s7-right {
	 background: var(--contact_section_background_color);
	 padding: 44px 40px;
	 margin-bottom: 0px;
}
 .section-contact-servicer-v2 .s7-ey {
	 font-size: 12px;
	 letter-spacing: 2px;
	 text-transform: uppercase;
	 color: var(--bv-secondary);
	 margin-bottom: 12px;
}
 .section-contact-servicer-v2 .s7-tt {
	 font-size: 22px;
	 color: #2c1a0c;
	 line-height: 1.2;
	 margin-bottom: 12px;
	 font-weight: 400;
	 text-transform: uppercase;
	 font-weight: 600;
}
 .section-contact-servicer-v2 .s7-tt em {
	 font-style: italic;
	 color: var(--bv-secondary);
}
 .section-contact-servicer-v2 .s7-desc {
	 font-size: 15px;
	 line-height: 1.8;
	 color: #555;
	 font-weight: 400;
	 margin-bottom: 7px;
}
 .section-contact-servicer-v2 .s7-f {
	 margin-bottom: 5px;
}
 .section-contact-servicer-v2 .s7-f label {
	 display: block;
	 font-size: 11px;
	 letter-spacing: 2px;
	 text-transform: uppercase;
	 color: #b09070;
	 margin-bottom: 5px;
	 font-weight: 500;
}
 .section-contact-servicer-v2 .s7-f input, .section-contact-servicer-v2 .s7-f select {
	 border: 1px solid #e8d8c8;
	 background: #fdf8f4;
	 padding: 10px 12px;
	 font-size: 13px;
	 color: #2c1a0c;
	 border-radius: 2px;
	 transition: border-color 0.3s;
	 margin-bottom: 0px;
	 width: 100%;
}
 .section-contact-servicer-v2 .s7-f input:focus, .section-contact-servicer-v2 .s7-f select:focus {
	 border-color: var(--bv-secondary);
}
 .section-contact-servicer-v2 .s7-row {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 12px;
	 margin-bottom: 0px;
}
 .section-contact-servicer-v2 .s7-note {
	 margin-bottom: 16px;
}
 .section-contact-servicer-v2 .s7-note label {
	 display: block;
	 font-family: 'Josefin Sans', sans-serif;
	 font-size: 9px;
	 letter-spacing: 2px;
	 text-transform: uppercase;
	 color: #b09070;
	 margin-bottom: 5px;
}
 .section-contact-servicer-v2 .s7-note textarea {
	 border: 1px solid #e8d8c8;
	 background: #fdf8f4;
	 padding: 10px 12px;
	 font-size: 13px;
	 color: #2c1a0c;
	 border-radius: 2px;
	 height: 68px;
	 transition: border-color 0.3s;
}
 .section-contact-servicer-v2 .s7-note textarea:focus {
	 border-color: var(--bv-secondary);
}
 .section-contact-servicer-v2 .s7-btn {
	 width: 100%;
	 background: var(--bv-primary);
	 color: #fff;
	 padding: 13px;
	 font-size: 11px;
	 letter-spacing: 3px;
	 text-transform: uppercase;
	 border: none;
	 cursor: pointer;
	 transition: background 0.3s;
}
 .section-contact-servicer-v2 .s7-btn:hover {
	 background: var(--bv-secondary);
}
 @media (max-width: 768px) {
	 .section-contact-servicer-v2 .s7-inner {
		 grid-template-columns: 1fr;
	}
	 .section-contact-servicer-v2 .s7-img-wrap {
		 min-height: 220px;
	}
	 .section-contact-servicer-v2 .s7-right {
		 padding: 32px 24px;
	}
	 .section-contact-servicer-v2 .s7-tt {
		 font-size: 24px;
	}
	 .section-contact-servicer-v2 .s7-row {
		 grid-template-columns: 1fr;
	}
}
 









/* .section-contact-servicer-v6 */

.section-contact-servicer-v6 .s5 {
	 position: relative;
	 min-height: 610px;
	 background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1400&q=70') center/cover no-repeat;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 padding: 40px 0px;
}
 .section-contact-servicer-v6 .s5::before {
	 content: '';
	 position: absolute;
	 inset: 0;
	 background: rgba(45, 16, 30, 0.72);
}
 .section-contact-servicer-v6 .s5-card {
	 position: relative;
	 z-index: 1;
	 background: #fff;
	 max-width: 620px;
	 width: 100%;
	 padding: 52px 30px 0px;
	 box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}
 .section-contact-servicer-v6 .s5-ey {
	 font-size: 12px;
	 letter-spacing: 3px;
	 text-transform: uppercase;
	 color: var(--bv-primary);
	 margin-bottom: 10px;
	 text-align: center;
}
 .section-contact-servicer-v6 .s5-tt {
	 font-size: 22px;
	 color: #2d1020;
	 line-height: 1.2;
	 margin-bottom: 10px;
	 text-align: center;
	 text-transform: uppercase;
}
 .section-contact-servicer-v6 .s5-tt em {
	 font-style: italic;
	 color: var(--bv-primary);
}
 .section-contact-servicer-v6 .s5-desc {
	 font-size: 13px;
	 line-height: 1.8;
	 color: #9a7080;
	 font-weight: 300;
	 margin-bottom: 28px;
	 text-align: center;
}
 .section-contact-servicer-v6 .s5-row {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 14px;
	 margin-bottom: 14px;
}
 .section-contact-servicer-v6 .s5-f label {
	 display: block;
	 font-family: 'Josefin Sans', sans-serif;
	 font-size: 9px;
	 letter-spacing: 2px;
	 text-transform: uppercase;
	 color: #c0a0a8;
	 margin-bottom: 5px;
}
 .section-contact-servicer-v6 .s5-f input, .section-contact-servicer-v6 .s5-f select {
	 border: 1px solid #f0d8e4;
	 background: #fff8fb;
	 padding: 10px 12px;
	 font-size: 13px;
	 color: #2d1020;
	 border-radius: 2px;
	 transition: border-color 0.3s;
}
 .section-contact-servicer-v6 .s5-f input:focus, .section-contact-servicer-v6 .s5-f select:focus {
	 border-color: var(--bv-primary);
}
 .section-contact-servicer-v6 .s5-f-full {
	 margin-bottom: 14px;
}
 .section-contact-servicer-v6 .s5-f-full label {
	 display: block;
	 font-family: 'Josefin Sans', sans-serif;
	 font-size: 9px;
	 letter-spacing: 2px;
	 text-transform: uppercase;
	 color: #c0a0a8;
	 margin-bottom: 5px;
}
 .section-contact-servicer-v6 .s5-f-full textarea {
	 border: 1px solid #f0d8e4;
	 background: #fff8fb;
	 padding: 10px 12px;
	 font-size: 13px;
	 color: #2d1020;
	 border-radius: 2px;
	 height: 68px;
	 transition: border-color 0.3s;
}
 .section-contact-servicer-v6 .s5-f-full textarea:focus {
	 border-color: var(--bv-primary);
}
 .section-contact-servicer-v6 .s5-btn {
	 width: 100%;
	 background: var(--bv-primary);
	 color: #fff;
	 padding: 14px;
	 font-family: 'Josefin Sans', sans-serif;
	 font-size: 11px;
	 letter-spacing: 3px;
	 text-transform: uppercase;
	 border: none;
	 cursor: pointer;
	 margin-top: 6px;
	 border-radius: 2px;
	 transition: background 0.3s;
}
 .section-contact-servicer-v6 .s5-btn:hover {
	 background: #c06080;
}
 @media (max-width: 560px) {
	 .section-contact-servicer-v6 .s5-card {
		 padding: 36px 24px;
	}
	 .section-contact-servicer-v6 .s5-row {
		 grid-template-columns: 1fr;
	}
	 .section-contact-servicer-v6 .s5-tt {
		 font-size: 24px;
	}
}
 