/*
Theme Name: BarrRealty
Author: 1SkyMedia.com
Description: BarrRealty by 1SkyMedia.com
Version: 1.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 1SkyMedia.com
*/

@import url('blog/blog-style.css');
@import url('woo/woo-style.css');

/* Base styles */
*, ::after, ::before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	text-decoration: none;
}

:root {
	/* Fonts */
	--body-font: 'Open Sans', sans-serif;
	--headings-font: 'Roboto', sans-serif;
	
	/* Colors*/
	--primary-color: #64a269;
	--secondary-color: #0072b8;
	--text: #777;
	--link-color: var(--primary-color);
	--headings-color: var(--primary-color);
	--white: #fff;
	--black: #000;
}

html {
	height: 100%;
}

body {
	position: relative;
	color: var(--text);
	font-family: var(--body-font);
	font-size: 16px;
	line-height: 1.5;
	font-weight: normal;
	font-style: normal;
	margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #000;
	font-family: var(--headings-font);
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 15px;
}

p,hr,dl,pre,form,table,address,blockquote {
	margin: 15px 0;
}

h1 {
	font-size: 2.8rem;
	color: var(--secondary-color);
}

h2 {
	font-size: 2.4rem;
	color: var(--secondary-color);
}

h3 {
	font-size: 1.6rem;
}

h4 {
	font-size: 1.4rem;
}

h5 {
	font-size: 1.2rem;
}

blockquote, q {
	quotes: none;
}

strong {
	font-weight: 600;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,td,table {
	border: 1px solid #dddddd;
}

button, input, select, textarea {
	font-size: 100%;
	overflow: visible;
	margin: 0;
	vertical-align: baseline;
	width: auto;
}
p {
	word-wrap: break-word;
}

i,em,dfn,cite {
	font-style: italic;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

::selection {
	background: #999999;
	color: #ffffff;
	text-shadow: none;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 0.7; /* Firefox */
  font-weight: 300;
}

.container {
	padding: 0 15px;
	max-width: 1220px;
	width: 100%;
	margin: 0 auto;
}

.wrapper {
	min-height: 55vh;
	margin: 2rem 0;
}

.home .wrapper {
	margin: 0;
}

.alignright {
	float: right;
	margin: 0 0 15px 15px;
}

.alignleft {
	float: left;
	margin: 0 15px 15px 0;
}

.center {
	text-align: center;
}

.error-404-page .fa.fa-exclamation-circle {
	font-size: 5rem;
	margin-bottom: 15px;
	color: var(--secondary-color);
}

.error-404-page h4 {
	max-width: 750px;
	margin: auto auto 25px;
}

.sitemap-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}

a {
	color: var(--link-color);
	transition: all 0.3s ease-in;
	text-decoration: none;
}
a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

a.comn-btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 5px;
}

a.comn-btn:hover, a.read-more:hover, a.comn-btn:focus, a.read-more:focus {
	color: var(--white);
	background-color: var(--secondary-color);
}
/* Header */
header {
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px;
}
.inner-header {
	padding: 1rem 0;
	position: absolute;
	width: 100%;
	z-index: 99;
	background: rgb(255, 255, 255, 0.5);
}
.header-inner-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
/* Menu */
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav > ul.slimmenu {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}
nav > ul.slimmenu > li > a {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-family: var(--headings-font);
}
nav > ul.slimmenu > li > a:hover {
	color: var(--secondary-color);
}
nav > ul.slimmenu li.current-menu-item > a, nav > ul.slimmenu li.current-menu-ancestor > a {
	color: var(--secondary-color);
}
header .inner-header.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	animation: slide-down 1000ms normal;
	background: #fff;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}
/* Sub-Menu */
nav > ul.slimmenu li.has-submenu {
	position: relative;
}
nav > ul.slimmenu li.has-submenu ul {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 10em;
}
nav > ul.slimmenu li.has-submenu ul li a {
	display: block;
	font-size: 16px;
	line-height: 1;
	text-transform: capitalize;
	color: #fff;
	background: var(--primary-color);
	padding: 15px 20px;
	border-bottom: 1px solid #fff;
}
nav > ul.slimmenu li.has-submenu ul li a:hover, nav > ul.slimmenu li.has-submenu ul li.current-menu-item a {
	background: var(--secondary-color);
	color: #fff;
}
/* Third-Level-Sub-Menu */
nav > ul.slimmenu li.has-submenu > ul li ul {
	left: 100%;
	top: 0;
}
/* Mobile Menu */
.collapse-button {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	padding: 10px;
	cursor: pointer;
}
.collapse-button .icon-bar {
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
}
nav > ul.slimmenu.collapsed {
	position: absolute;
	display: block;
	left: 0;
	top: 100%;
	right: 0;
}
nav > ul.slimmenu.collapsed li a {
	display: block;
	background: var(--primary-color);
	color: #fff;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	border-bottom: 1px solid #fff;
}
nav > ul.slimmenu.collapsed li a:hover,
nav > ul.slimmenu.collapsed li.current-menu-item > a {
	background: var(--secondary-color);
}
.collapse-button .icon-bar {
	display: inline-block;
	width: 20px;
	height: 2px;
	background-color: #fff;
	transition: transform 300ms ease-in;
}
.collapse-button.active span {
	position: absolute;
	transform-origin: center;
	top: 50%;
}
.collapse-button.active span:nth-child(1) {
	transform: rotate(45deg);
}
.collapse-button.active > span:nth-child(2) {
	display: none;
}
.collapse-button.active span:nth-child(3) {
	transform: rotate(-45deg);
}
/* Menu Chevron */
ul.slimmenu li .sub-collapser > i, ul.slimmenu li .sub-toggle .icon {
	display: none;
}
ul.slimmenu li.menu-item-has-children a {
	padding-right: 20px;
}
.menu-item-has-children::after {
	content: "\f107";
	position: absolute;
	font-family: FontAwesome;
	top: 0;
	right: 2px;
	z-index: 9;
}
ul.sub-menu .menu-item-has-children::after {
	color: #fff;
	content: "\f105";
	top: 10px;
	right: 10px;
}
/* Page Title Bar */
.page-title-bar {
	background: rgba(0,0,0,0.4);
	padding: 5rem 0;
	min-height: 340px;
	display: flex;
	align-items: end;
	background-position: center;
	background-size: cover;
	background-image: url('../../../wp-content/uploads/2025/10/Lancaster-County-Suburban-and-Amish-Views.png');
	background-repeat: no-repeat;
	background-blend-mode: overlay;
}
.page-title-bar .page-title-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.page-title-bar h1 {
	margin: 0;
	color: #fff;
	font-size: 2rem;
}
/* Footer */
.page-title-bar h1 {
	margin: 0;
	color: #fff;
	font-size: 2.8rem;
}
.footer-bottom a {
	display: inline-block;
	color: #000;
	font-family: var(--headings-font);
}
.footer-bottom a:hover {
	text-decoration: underline;
}
.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	color: #000;
	padding: 15px 0;
}
/* Forms */
/* label {
	font-weight: bold;
} */
input[type="text"], input[type="email"], input[type="tel"], select, textarea, input[type="date"] {
	width: 100%;
	color: #000;
	font-size: 15px;
	font-family: inherit;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #ccc;
	position: relative;
}
input[type="text"]:focus-visible, input[type="email"]:focus-visible, input[type="tel"]:focus-visible, textarea:focus-visible
{
	outline-offset: -2px;
}
.newsletter-row input[type="text"], .newsletter-row input[type="email"] {
	padding: 12px;
	font-size: 22px;
}
textarea {
	height: 150px;
}
fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}
fieldset > p {
	margin: 0;
}
fieldset.one-third {
	position: relative;
	float: left; 
	width: calc(100% / 3 - 14px); 
	margin-right: 20px;
	margin-bottom: 20px; 
}
.newsletter-row .one-third {
	position: relative;
	float: none;
	width: auto;
	margin: 0 auto;
}
fieldset.half {
	position: relative;
	float: left;
	width: calc(100% / 2 - 15px);
	margin-right: 20px;
	margin-bottom: 20px;
}
fieldset .one-fifth {
	position: relative;
	float: left;
	width: calc(100% / 5 - 16px);
	margin-right: 20px;
	margin-bottom: 20px;
}
fieldset .one-fourth {
	position: relative;
	float: left;
	width: calc(100% / 4 - 15px);
	margin-right: 20px;
	margin-bottom: 20px;
}
fieldset .one-seventh {
	position: relative;
	float: left;
	width: calc(100% / 7 - 18px);
	margin-right: 20px;
	margin-bottom: 20px;
}
fieldset.full {
	position: relative;
	margin-bottom: 20px;
	width: 100%;
}
fieldset.one-third.last, fieldset.half.last, fieldset .one-fifth.last, fieldset .one-fourth.last, fieldset .one-seventh.last {
	margin-right: 0;
	float: right;
}
.wpcf7-not-valid {
	border-color: rgba(255, 0, 0, 0.75) !important;
}
.wpcf7-not-valid-tip {
	font-size: 12px;
}
.wpcf7 form.invalid .wpcf7-response-output {
	background: rgba(255, 0, 0, 0.75);
	color: #fff;
	text-align: center;
	border-color: rgba(255, 0, 0, 0.75);
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	background: #46b450;
	color: #fff;
	text-align: center;
}

.icon-form input, .icon-form textarea, .icon-form select {
	padding-left: 40px;
}
.newsletter-row .icon-form input {
	padding-left: 40px;
}
input[type="submit"] {
	display: inline-block;
	width: auto;
	font-size: 16px;
	font-family: inherit;
	line-height: 1;
	border: 0;
	background-color: var(--primary-color);
	color: #fff;
	padding: 15px 35px;
	border-radius: 10px;
	cursor: pointer;
}
.icon-form .fa {
	position: absolute;
	z-index: 9;
	left: 10px;
	top: 12px;
	font-size: 18px;
	color: #000;
	font-family: Fontawesome;
}
.newsletter-row  .icon-form .fa {
	top: 15px;
	font-size: 25px;
}
input[type="submit"]:hover {
	background-color: var(--secondary-color);
}
.header-widget a {
	border: 2px solid var(--primary-color);
	padding: 5px 10px;
	font-weight: 700;
	display: flex;
	gap: 5px;
	color: #008001;
	transition: transform 300ms ease-in;
	text-transform: uppercase;
	align-items: center;
}
.header-widget a .fa {
	color: black;
	font-size: 26px;
	font-family: FontAwesome;
}
.header-widget a:hover .fa {
	color: white;
}

.header-widget a:hover {
	border: 2px solid var(--primary-color);
	background: var(--primary-color);
	color: white;
}
.site-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: end;
	flex-wrap: wrap;
}
.header-widget .custom-html-widget {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
#SR7_1_1 .custom.sr7-arrows {
	background: rgba(0, 128, 1, 0.6) !important;
	width: 50px !important;
	height: 80px !important;
}
#SR7_1_1 .custom.sr7-arrows:hover {
	background: var(--secondary-color) !important;
}
#SR7_1_1 .custom.sr7-arrows::before {
	font-size: 85px !important;
	line-height: 80px !important;
}
.about-row p {
	font-size: 26px;
}
.newsletter-row {
	background: #008001;
	color: #fff;
	padding: 20px 15px 30px;
	margin: 0 0px 35px !important;
}
.newsletter-row h2 {
	color: #fff;
}
.contactHome {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.inner-contact {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
}
.full.submit {
	width: auto;
	margin-left: 20px;
}
.full.submit .submit-button {
	border-radius: 0;
	padding: 16px 60px;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
	font-family: var(--headings-font);
	color: #000;
	border: 3px solid #000;
}
.full.submit .submit-button:hover {
	color: #fff;
}
.newsletter-row .wpb_content_element {
	margin-bottom: 0 !important;
}
.newsletter-row .wpcf7-not-valid-tip {
	position: absolute;
	right: 5px;
	top: -22px;
}
.main-our-agents .wpb_single_image {
	margin-bottom: 0 !important;
	border: 10px solid var(--primary-color);
}
.agents-info {
	background: var(--primary-color);
	margin: 0 0px 35px;
	padding: 15px 10px 25px;
}
.agents-info h3 {
	color: #fff;
	font-family: var(--body-font);
	font-weight: 500;
	margin-bottom: 0;
}
.agents-info a, .fotr-adress a {
	color: #fff;
	font-size: 20px;
}
.agents-info a:hover, .fotr-adress a:hover {
	color: #fff;
	text-decoration: underline;
}
.agents-info p {
	margin: 0;
}
.footer-top {
	background: var(--secondary-color);
	padding-top: 30px;
	color: #fff;
}
.fotr-adress {
	font-size: 24px;
	font-weight: 300;
}
.footer-top .menu {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 20px;
	color: ;
	font-weight: 700;
	text-transform: uppercase;
}
.footer-top .menu a {
	color: #fff;
	font-family: var(--headings-font);
}
.footer-top .menu a:hover {
	color: #fff;
	text-decoration: underline;
}
.search-row {
	width: 80%;
	margin: 0 auto;
	margin-top: -97px;
	position: relative;
	z-index: 99;
	top: -150px;
	color: #fff;
	font-size: 20px;
	font-weight: 700 !important;
	margin-bottom: 0 !important;
}
.search-row h2 {
	font-size: 45px;
	font-style: italic;
	color: #fff;
}
.search-row p {
	margin: 0 auto;
}
.blue-box {
	background: var(--secondary-color);
	color: #fff;
	padding: 25px 10px 0;
}
.blue-box h4 {
	color: #fff;
}
.green-box {
	background: #000081;
	color: #fff;
	padding: 10px 10px 25px;
}
.green-box a {
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}
.green-box a:hover {
	color: #fff;
	text-decoration: underline;
}
.green-box img {
	background: #fff;
	padding: 5px;
}
.contact-form-page .full.submit {
	margin: 20px auto;
	text-align: center;
}
.contact-right {
	background: var(--primary-color);
	color: #fff;
	padding: 0px 20px 20px;
}
.contact-right a {
	color: #fff;
}
.contact-right a:hover {
	color: #fff;
	text-decoration: underline;
}
.contact-right {
	background: var(--primary-color);
	color: #fff;
	padding: 0px 20px 20px;
	display: inline-block;
	width: 100%;
	margin-top: 15px;
}
.contact-right strong {
	font-size: 1.7rem;
	font-weight: bold;
}
.green-box img {
	margin: 0 auto !important;
	display: table;
}
.sitemap-wrapper .fancy-list {
	padding-left: 15px;
}
.sitemap-wrapper .fancy-list a {
	color: #777;
}
.sitemap-wrapper .fancy-list a:hover {
	color: var(--secondary-color);
}
.contact-right .fa {
	font-family: FontAwesome !important;
}
.wpcf7 form .wpcf7-response-output {
	float: left;
	width: 100%;
	margin: 20px auto 0;
}
.rental-application-form label {
	display: block;
	color: #000;
	font-size: 14px;
	margin-bottom: 4px;
}
.wpcf7 input[type="file"] {
	background-color: #e9e9ed;
	border: 0 none;
	color: #000;
	padding: 10px 15px;
	position: relative;
}
.rental-application-form .wpcf7-radio {
	min-height: 42px;
	height: 42px;
	display: inline-block;
	line-height: 42px;
	width: 50%;
}
.rental-application-form .wpcf7-checkbox {
	height: 42px;
	display: block;
	line-height: 42px;
}
.rental-application-form .wpcf7-list-item.first {
	margin-left: 0;
}
.wpcf7-not-valid-tip {
	font-size: 11px;
	position: absolute;
	right: 0;
	top: -13px;
}
.repeater-field-header-count {
	display: none;
}
.repeater-field-content fieldset {
	margin-bottom: 15px;
}
.repeater-field-button-add {
	margin-top: 5px !important;
	display: inline-block;
}
.cf7mls_back, .cf7mls_next.action-button, .repeater-field-button-add {
	background: #0072b8 !important;
	color: #fff !important;
}
.cf7mls_back:hover, .cf7mls_next.action-button:hover, .repeater-field-button-add:hover {
	background: var(--primary-color) !important;
	color: #fff !important;
}
.repeater-field-header {
	margin-top: -10px;
}
.others-info-wrap {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
}
.others-info-wrap label{
	margin-bottom: 0 !important;
}
.others-info-wrap .hide-mb {
	font-weight: 600;
	color: #000;
}
.wpcf7-field-group {
	background: #eee;
	margin-bottom: 20px;
	padding: 20px 20px 0;
	text-align: right;
}
.wpcf7-field-group-remove, .wpcf7-field-group-add {
	border-radius: 0;
	border: 0;
	padding: 10px;
	margin-left: 10px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	cursor: pointer;
	font-size: 22px;
	transform: translateY(-12px);
	background: #222;
	color: #fff;
}
.wpcf7-field-group label {
	text-align: left;
}
.rental-application-form em {
	display: block;
	font-size: 13px;
	color: #000;
	margin-bottom: 5px;
}
.clear {
    clear: both;
}
.auctions-wrapper {
	position: relative;
}
.auction-item {
	text-align: center;
}
.auction-featured-image {
	border: 3px solid var(--primary-color);
}
.auction-featured-image a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 310px;
}
.auction-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.auction-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px;
	position: relative;
}
.auction-date {
	color: var(--primary-color);
	font-weight: bold;
	text-transform: uppercase;
	font-size: 18px;
}
.auction-address {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	max-width: 235px;
	margin: auto;
	line-height: 1.4;
}
.auction-view-details-btn {
	margin-top: 8px;
}
.view-all-btn.comn-btn {
	background: #e0e0e0;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	font-weight: 700;
	font-size: 20px;
	padding: 24px 50px;
	margin-top: 30px;
}
.owl-theme .owl-nav [class*="owl-"] {
	background: transparent;
	color: var(--primary-color);
	font-size: 2.5rem;
	margin: 0;
	padding: 0;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
	background: transparent;
	color: #222;
}
.owl-carousel .owl-nav .owl-prev {
	position: absolute;
	left: -3%;
	top: 27%;
}
.owl-carousel .owl-nav .owl-next {
	position: absolute;
	right: -3%;
	top: 27%;
}
.auctions-wrapper.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}
.single-auction-content {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	grid-gap: 30px;
}
.single-auction-img {
	max-height: 320px;
	border: 3px solid var(--primary-color);
}
.single-auction-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single-auction-details > div {
	margin-bottom: 10px;
}
.auction-soldfor {
	background: green;
	color: #fff;
	padding: 5px 10px;
	font-size: 20px;
	font-weight: 700;
}
.single-upcming-auctions {
	margin-top: 2em;
}
.single-auction-details .auction-date {
	font-size: 1.5rem;
}
.single-auction-content .auction-address {
	margin-left: 0;
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
.auction-type {
	color: var(--primary-color);
	font-weight: bold;
}
.auctions-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.single-upcming-auctions h2 {
	text-align: center;
}
.auc_sold_for {
	color: #d20000;
	font-weight: bold;
}
.auctions-gallery {
	margin: 2em 0;
}
/******   Responsive   ******/
@media screen and (max-width: 1300px){
	#upcoming-auctions {
		padding: 0 2em;
	}
	.owl-carousel .owl-nav .owl-prev {
		left: 0;
	}
	.owl-carousel .owl-nav .owl-next {
		right: 0;
	}
}
@media screen and (max-width: 1024px){
	.site-nav {
		flex-direction: row-reverse;
	}
	.agents-info {
		background: #818181;
		margin: 0 0px 35px;
	}
	.full.submit .submit-button {
		padding: 18px 16px;
		font-size: 20px;
	}
}
@media screen and (max-width: 980px){
	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}
	.auctions-wrapper.grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 800px){
	.inner-contact {
		flex-direction: column;
	}
	.contactForm {
		flex-direction: column;
		gap: 20px;
	}
	.full.submit .submit-button {
		padding: 18px 35px;
	}
}
@media screen and (max-width: 768px){
	.search-row {
		margin-top: 35px;
		top: 0;
		color: var(--secondary-color);
	}
	.search-row h2 {
		color: var(--secondary-color);
	}
}
@media screen and (max-width: 767px){
	fieldset.one-third.half, fieldset.one-third.one-third, fieldset .one-fifth, fieldset .one-fourth, fieldset .one-seventh {
		width: 100%;
		margin-right: 0;
	}
	.full.submit {
		margin-left: 0;
	}
	.sitemap-wrapper {
		grid-template-columns: 1fr;
	}
	.search-row {
		margin-top: 35px;
		top: 0;
		color: var(--secondary-color);
	}
	.search-row h2 {
		color: var(--secondary-color);
	}
	.rental-application-form .wpcf7-radio {
		width: 100%;
	}
}

@media screen and (max-width: 650px){
.header-inner-wrap {
		flex-direction: column;
	}
	.site-nav {
		justify-content: space-between;
		width: 100%;
	}
	.alignright {
		margin-bottom: 20px !important;
	}
	.page-title-bar {
		background-position: top;
	}
	.hide-mb {
		display: none;
	}
	.others-info-wrap {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		gap: 0 20px;
	}
	.others-info-wrap label {
		width: 100%;
	}
	.others-info-wrap > span:nth-last-child(2)::before {
		content: "Applicant 1";
		display: block;
		margin-bottom: -10px;
		font-weight: 600;
		color: #000;
	}
	.others-info-wrap > span:last-child::before {
		content: "Applicant 2";
		display: block;
		margin-bottom: -10px;
		font-weight: 600;
		color: #000;
	}
}

@media screen and (max-width: 533px){
.footer-top .menu {
		display: inline-block;
	}
.footer-top .menu li {
		display: inline-block;
		margin-right: 20px !important;
		text-align: center;
	}
	.header-widget a .fa {
		font-size: 16px;
	}
	.header-widget a {
		font-size: 12px;
		gap: 2px;
	}
	.auctions-wrapper.grid, .single-auction-content {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 480px){
	img.alignright, img.alignleft {
		float: none;
		display: block;
		margin: auto auto 15px auto;
	}
	.header-widget .custom-html-widget {
		gap: 5px;
	}
}
@media screen and (max-width: 414px){
	span.break {
		display: block;
	}
	.header-widget a {
		font-size: 10px;
		padding: 5px;
	}
}