.main-container > div[data-type='text'] {
		padding: 0 16px;
}

.main-container > h1[data-type='headline'] {
		padding: 0 16px;
}

.main-container > h2[data-type='headline'] {
		padding: 0 16px;
}

.main-container > a[data-type='button'] {
		margin: 0 16px;
}

@media (min-width: 768px) {
		.main-container > div[data-type='text'] {
				padding: 0 127px;
		}

		.main-container > h1[data-type='headline'] {
				padding: 0 127px;
		}
		
		.main-container > h2[data-type='headline'] {
				padding: 0 127px;
		}
		
		.main-container > a[data-type='button'] {
				margin: 0 127px;
		}
}
@media (max-width: 568px) {
		.button-width {
			max-width: 90% !important;
		}
	}

html {
	scroll-behavior: smooth;
}

body {
		margin: 0;
		box-sizing: border-box;
		font-size: 1rem;
		line-height: 1.6;
}

.container-main {
		margin: auto;
		padding: 60px 10px;
}

ul {
		padding: 0;
}

* {
		box-sizing: border-box;
}

a {
		text-decoration: none;
}

/* Navbar */

.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 22;
}

.nav .nav-logo {
		display: flex;
		justify-content: center;
		padding: ю8rem 0;
}

.nav .nav-logo .wide-logo {
		max-width: 220px;
		max-height: 60px;
		margin: 14px 0;
		object-fit: contain;
}

.nav .nav-logo .square-logo {
		max-width: 220px;
		max-height: 60px;
		margin: 14px 0;
		object-fit: contain;
}

.nav ul {
		display: flex;
		margin:0 3rem 0 0; 
		gap: 2rem; 
		justify-content: flex-end;
		list-style: none;
}

.nav ul a {
		font-weight: bold;
		text-transform: uppercase;
		font-size: 15px;
}


/* Hero */

.hero-image {
		margin-top: 5rem;
		height: 55rem;
		padding: 20px;
		background-size: cover;
		background-position: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		align-content: center;
}

.hero-image>div {
		text-shadow: 0 0 30px black;
		text-align: center;
		font-weight: bold;
}

.hero-image .address {
		font-size: 5rem;
}

.hero-image .location {
		font-size: 2.25rem;
}

/* Overview */

.overview {
		font-size: 1.1875rem;
		text-align: center;
		display: flex;
		justify-content: center;
}

.overview ul {
		display: flex;
		font-size: 1.5rem;
		font-weight: bold;
		/*border-bottom: 1px solid black;*/
}

.overview ul>li {
		position: relative;
		padding: 6px 0 10px;
}

/*.overview ul>li:before {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 1px;
		height: 35px;
		background: black;
		content: "";
}*/

/*.overview ul > li:last-child::before {
	display: none;
}*/

.overview ul > li:last-child {
	border-right: none;
}


.overview .links {
		display: flex;
		text-align: center;
		margin-top: 40px;
		font-weight: bold;
		text-transform: uppercase;
}

.overview .links>div {
		width: 50%;
		padding: 16px 0;
}

.overview .links>div:first-child {
		border-right: 1px solid #ccc;
}


/* slider */

:root {
		--splide-pagination-height: 60px;
	}
	
	.splide {
		margin-bottom: var(--splide-pagination-height);
	}

	.splide--draggable>.splide__track>.splide__list> .is-active {
		margin-right:10px;
	}

	.splide__list { height: auto }
	
	.splide__arrow {
		position: absolute;
		z-index: 1;
		top: 50%;
		transform: translateY(-50%);
		width: 2em;
		height: 2em;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		padding: 0;
		background: transparent;
		cursor: pointer;
	}
	
	.splide__arrow--prev {
		left: 2em;
		background-color: transparent;
		fill: #fff;
		width:60px;
		height:60px;
	}

	.splide__arrow--prev svg {
			width:60px;
			height:60px;
	}
	
	.splide__arrow--next {
		right: 1em;
		background-color: transparent;
		fill: #fff;
		width:60px;
		height:60px;
	}

	.splide__arrow--next svg {
		width:60px;
		height:60px;
	}
	
	.splide__arrow--prev svg, .splide__pagination__prev svg {
		transform: scaleX(-1);
	}
	
	.splide__pagination {
		counter-reset: pslide-counter 0;
		display: inline-flex;
		align-items: center;
		width: 95%;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0;
		position: absolute;
		z-index: 1;
		left: 50%;
		transform: translateX(-50%);
		padding: 0;
		bottom: calc(-1 * var(--splide-pagination-height));
		height: var(--splide-pagination-height);          
	}
	
	.splide__pagination .splide__pagination__page {
		counter-increment: pslide-counter;
		height:1px;
		display: flex;
		justify-content: center;
	}
	
	.splide__pagination li:first-child:after {
		content: "01";
		font-size:20px;
		justify-content: center;
		display: flex;
		margin-right:5px;
	}
	
	.splide__pagination li:last-child:before {
		content: counter(pslide-counter, decimal-leading-zero);
		font-size:20px;
		margin-left:5px;
	}
	
	.splide__pagination__arrow {
		margin: 0 10px;
		border: 0;
		background: transparent;
		outline: none;
		cursor: pointer;
	}
	
	.splide__pagination__arrow svg {
		width: 1em;
		height: 1em;
		font-size: 20px;
		fill: #100b28;
	}
	
	.splide__pagination li.splide__pagination__control {
		display: flex;
		align-items: center;
	}
	
	.splide__pagination__page {
		width: auto;
		height: 6px;
		background: #dcdfee;
		border: 0;
		margin: 0 2px;
		outline: none;
		cursor: pointer;
	}
	
	.splide__pagination__page.is-active {
		background: #009cbc;
		height:1px;
		justify-content: center;
		display: flex;
	}
	
	.splide__image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		cursor: pointer;
	}
	
	.splide__lightbox {
		position: absolute;
		top: 1rem;
		right: 7rem;
		z-index: 1;
		cursor: pointer;
		background-color: transparent;
		border: none;
		border-radius: 50%;
		width: 40px;
		height: 40px;
	}
	
	.splide__lightbox svg {
		width: 1em;
		height: 1em;
		font-size: 24px;
	}

	.splide__lightbox svg path:nth-child(odd) {
		display: none;
	}

	.sl-wrapper {
		background-color: rgba(0,0,0,0.8);
	}

	.sl-wrapper .sl-close {
			color: #fff;
	}

	.sl-wrapper .sl-navigation button.sl-prev {
			color: #fff;
	}

	.sl-wrapper .sl-navigation button.sl-next {
			color: #fff;
	}

	.splide__arrow:focus {
		outline: none;
	}

	.splide__arrow:visited {
		outline: none;
	}
 
/* Features */

.features {
		color: rgb(85, 85, 85);
		text-align: left;
		display: flex;
		justify-content: center;
}

.features .title {
		font-weight: 800;
		font-size: 2.125rem;
		text-transform: uppercase;
		margin-bottom: 20px;
}

.features .feat {
		font-size: 1.1875rem;
		position: relative;
		display: inline-block;
		position: relative;
		margin-right: 10px;
		padding-right: 16px;
}

.features .feat:before {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		display: block;
		content: "•";
		font-size: 1.1875rem;
}

.features .feat:last-child:before {
		display: none;
}

/* Footer */

footer {
		justify-content: center;
		text-align: center;
		font-size: 12px;
		padding: 1rem;
}
.rechat-logo {
		width: 63px;
		margin-left: 2px;
	}

/*Queries*/

@media (max-width: 1460px) {
	.hero-image .address {
			font-size: 2.9rem !important;
	}
	.hero-image .location {
			font-size: 1.6rem !important;
	}
	.hero-image {
				height: 45rem !important;
	}
}

@media (max-width: 1024px) {
	.hero-image {
		height: 40rem !important;
	}
	.hero-image .address {
			font-size: 2.7rem !important;
	}
	.hero-image .location {
			font-size: 1.1rem !important;
	}
	.nav ul a {
			font-size: 13px !important;
	}
	 .nav .nav-logo .wide-logo {
			max-width: 180px;
	}
}

@media (max-width: 768px) {
	.features {
		padding: 50px 10px;
	}
	.nav ul {
		justify-content: space-around;
		margin: 1.2rem; 
		gap: 1rem; 
	}
	.hero-image .address {
		font-size: 2.4rem !important;
	}
	.hero-image .location {
		font-size: 1.8rem !important;
	}
	.hero-image {
			height: 35rem !important;
	}
	.features .title {
			font-size: 1.7rem !important;
	}
	.contacts .contact-button {
			display: flex!important;
			justify-content: center!important;
	}
	.overview ul li {
			font-size: 12px !important;
	}
	.overview ul li a {
			font-size: 10px !important;
	}
	.nav ul a {
			font-size: 13px !important;
	}
}

@media (max-width: 480px) {
	.container-main {
		padding: 30px 10px;
	}
	.nav ul {
		margin: 1rem 0;
	}
	.nav ul a {
		font-size: 12px !important;
	}
	.hero-image {
			height: 40rem !important;
	}
	.hero-image .address {
			font-size: 2rem !important;
	}
	.hero-image .location {
			font-size: 1rem !important;
	}
	.splide__pagination {
			display: none !important;
	}
	.splide__arrow--next svg {
			width: 35px !important;
			height: 35px !important;
	}
	.splide__arrow--prev svg {
			width: 35px !important;
			height: 35px !important;
	}
	.overview ul {
		flex-direction: column;
		border-bottom: none;
	}
	.overview ul>li:before {
		display: none;
	}
	.overview ul li {
		font-size: 13px !important;
	}
}

@media (max-width: 320px) {
	 .nav ul a {
		font-size: 11px !important;
	}

	.get-in-touch {
			text-align: center !important;
			font-size: 23px !important;
	}
	.features .title {
			font-size: 1.7rem !important;
	}
	.contacts .contact-button {
			display: flex!important;
			justify-content: center!important;
	}
	.agent-pic {
			width: 220px !important;
			height: 220px !important;
	}

	.overview ul li a {
			font-size: 9px !important;
	}

	.nav .nav-logo {
			padding: 0.2rem 0 0 !important;
	}

	.nav .nav-logo {
			padding: 0.2rem 0 0 !important;
	}

	.features .title {
			font-size: 1.7rem !important;
	}
	.contacts .contact-button {
			display: flex!important;
			justify-content: center!important;
	}
}

.link {
	transition: .3s ease;
	cursor: pointer;
}

.link:hover {
	transform: scale(1.1);
}


/* agent block styles*/
.agent-light,
.agent-light * {
	box-sizing: border-box;
}
.agent-light {
	margin: 0 auto;
	padding: 60px 20px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
	justify-content: flex-end;
	max-width: 1200px;
	width: 100%;
}
.get-in-touch {
	font-size: 64px;
	font-weight: 500;
}
.frame-2085664016 {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	justify-content: center;
	align-self: stretch;
	flex-wrap: wrap;
}
.slider3 {
	width: 396px;
	height: 500px;
	object-fit: contain;
}
.frame-1171275523 {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start;
	justify-content: flex-start;
}
.name-designation {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	justify-content: center;
}
.frame-2085664023 {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	justify-content: flex-start;
}
.team-name {
	font-size: 24px;
}
.sarah-sanders {
	font-weight: 600;
}
.sales-representative {
	letter-spacing: .4px;
}
.frame-2085664024 {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	justify-content: flex-start;
}
.frame-1171275508 {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	justify-content: center;
}
.frame-2085664019 {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
	justify-content: center;
}
.phone {
	/*font-weight: 600;*/
	letter-spacing: 2px;
}
.frame-2085664020 {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
	justify-content: center;
}
.emailEmail {
	/*font-weight: 600;*/
	letter-spacing: 2px;
}
.frame-2085664025 {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
	justify-content: flex-start;
}
.license {
	letter-spacing: 2px;
	/*font-weight: 600;*/
}
.frame-2085664022 {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	justify-content: flex-start;
	align-self: stretch;
}
.vector-148 {
	align-self: stretch;
	height: 1px;
}
.office {
	letter-spacing: 2px;
	/*font-weight: 600;*/
}
.frame-2085664026 {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
	justify-content: flex-start;
}
.address {
	letter-spacing: 2px;
	/*font-weight: 600;*/
}

.frame-20856640262 {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-content: center;
}
.social-icon {
	width: 24px;
	height: 24px;
}

@media (max-width: 480px) {
	.agent-light {
		padding: 40px 10px;
	}
	.mls-num {
		text-align: left;
	}
	.frame-2085664016 {
		width: 100%;
	}
	.frame-2085664027 {
		width: 100%;
	}
	.slider3 {
			width: 100%;
			height: 350px;
	}
	.get-in-touch {
		font-size: 48px !important;
		text-align: center;
	}
	.frame-1171275523 {
			max-width: 90%;
	}
	.frame-20856640262 {
			gap: 15px;
	}
	.vector-148 {
			width: 100%;
	}
}

@media print {
	.agent-light {
		page-break-inside: avoid !important;
		padding: 0;
	}
	.slider3 {
		height: 350px;
		width: 300px;
	}
	.frame-20856640262 {
		display: none;
	}
	.get-in-touch {
		text-align: center;
	}
	.frame-2085664016 {
		flex-direction: column;
		align-items: center;
	}
}
/* agent block styles end */

.splide--draggable>.splide__track>.splide__list>.splide__slide {
		margin-right: 10px;
}