/*
Theme Name: BarrDavis
Author: 1SkyMedia.com
Description: BarrDavis 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: 'Open Sans', sans-serif;
	
	/* Colors*/
	--primary-color: #010080;
	--secondary-color: #010080;
	--text: #484848;
	--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: var(--primary-color);
	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;
}

h2 {
	font-size: 2.2rem;
	text-transform: uppercase;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.8rem;
}

h5 {
	font-size: 1.5rem;
}

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: #454545;
  opacity: 0.7; /* Firefox */
  font-weight: 400;
}
main {
	overflow: hidden;
}
.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;
}

.clear {
	clear: both;
}

.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: 12px 20px;
	font-size: 18px;
	border-radius: 0;
	text-transform: uppercase;
	line-height: 1;
	font-size: 16px;
}

a.comn-btn:hover, a.read-more:hover, a.comn-btn:focus, a.read-more:focus {
	color: var(--white);
	background-color: #222;
}
/* Header */
header {
	position: absolute;
	padding: 10px 0;
	z-index: 9999;
	width: 100%;
	background: rgba(255, 255, 255, 0.7);
}
.header-inner-wrap {
	display: grid;
	grid-template-columns: 0.5fr 1.3fr 1fr;
	grid-template-rows: repeat(2, 1fr);
}
.logo {
    grid-row: span 2 / span 2;
}
.logo img {
	max-width: 150px;
}
.site-nav {
    grid-column: span 2 / span 2;
	align-content: center;
}
.header-widget {
    grid-column: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 2;
}
.header-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	align-items: center;
}
.phone-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 18px;
	line-height: 1;
	background: transparent;
	border: 1px solid var(--primary-color);
	padding: 8px;
	font-weight: 700;
}
.phone-btn i {
	font-size: 22px;
	color: var(--text);
}
.phone-btn:hover {
	background: var(--primary-color);
	color: #fff;
}
.phone-btn:hover i {
	color: #fff;
}
.header-widget .fa-square-facebook {
	color: var(--text);
	font-size: 42px;
}
.header-widget .fa-square-facebook:hover {
	color: var(--primary-color);
}
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);
    } 
}
/* Menu */
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav > ul.slimmenu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
nav > ul.slimmenu > li > a {
	color: #000;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}
nav > ul.slimmenu > li > a:hover {
	color: var(--primary-color);
}
nav > ul.slimmenu li.current-menu-item > a, nav > ul.slimmenu li.current-menu-ancestor > a {
	color: var(--secondary-color);
}
/* 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;
	margin-left: auto;
}
.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: #222;
}
.collapse-button .icon-bar {
	display: inline-block;
	width: 20px;
	height: 1px;
	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 {
	padding: 5rem 0 3em;
	min-height: 300px;
	display: flex;
	align-items: end;
	background-position: center;
	background-size: cover;
}
.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;
	text-transform: uppercae;
}
/* Footer */
.footer-bottom {
	padding: 20px 0;
	font-weight: 600;
}
.footer-bottom a {
	display: inline-block;
	color: var(--text);
}
.footer-bottom a:hover {
	text-decoration: underline;
}
.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.footer-top {
	background: var(--primary-color);
	padding: 2em 0 3em;
	color: #c0bebf;
}
.footer-top a {
	color: #fff;
}
.footer-top a:hover {
	color: #c0bebf;
}
.footer-top .wpb_content_element {
	margin-bottom: 0;
}
.foo-address {
	font-size: 22px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
}
.foo-info ul, .foo-menu ul {
	list-style: none;
	padding: 0;
	margin: 15px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.foo-menu a {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
}
.foo-info ul {
	gap: 20px
}
.foo-info a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 600;
}
.foo-info i {
	font-size: 2rem;
}
/* Forms */
label {
	font-weight: bold;
}
input[type="text"], input[type="email"], input[type="tel"],input[type="date"], select, textarea {
	width: 100%;
	color: #000;
	font-size: 16px;
	font-family: inherit;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #ccc;
}
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;
}
fieldset.half {
	position: relative;
	float: left;
	width: calc(100% / 2 - 10px);
	margin-right: 20px;
	margin-bottom: 20px;
}
fieldset.full {
	position: relative;
	margin-bottom: 20px;
	width: 100%;
}
fieldset.one-third.last, fieldset.half.last {
	margin-right: 0;
}
.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;
}
input[type="submit"] {
	display: inline-block;
	width: auto;
	font-size: 18px;
	font-family: inherit;
	line-height: 1;
	border: 0;
	background-color: var(--primary-color);
	color: #fff;
	padding: 16px 40px;
	border-radius: 0;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 700;
}
.icon-form .fa {
	position: absolute;
	z-index: 9;
	left: 10px;
	top: 12px;
	font-size: 20px;
	color: #000;
}
input[type="submit"]:hover {
	background-color: var(--secondary-color);
}
/*  Home  */
.features-row ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 700;
	gap: 8px 15px;
	max-width: 1500px;
	margin: auto;
	flex-wrap: wrap;
}
.features-row ul li {
	position: relative;
}
.features-row ul li::before {
	content: "\f005";
	font-family: 'Font Awesome 5 Free';
	margin-right: 10px;
}
.newsletter-row h2 {
	color: #fff;
	font-weight: 700;
}
.newsletter-form {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.newsletter-form > div {
	width: 100%;
}
.newsletter-form p {
	margin: 0;
}
.newsletter-form .submit-btn {
	max-width: 300px;
	text-align: center;
}
.newsletter-form input[type="submit"] {
	background: #e0e0e0;
	color: var(--primary-color);
	border: 0;
	border-radius: 0;
	font-family: inherit;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	width: 100%;
	padding: 20px 10px;
	line-height: 1;
}
.newsletter-form input[type="submit"]:hover {
	background: #fff;
}
.newsletter-form .wpcf7-spinner {
	display: none;
}
.newsletter-form input[type="text"], .newsletter-form input[type="email"] {
	height: 60px;
	border-color: var(--primary-color);
	border-radius: 0;
	outline: 0;
	font-size: 20px;
}
.about-row h2 {
	color: #222;
	font-weight: 800;
}
.about-row p {
	font-size: 22px;
}
.testimonial-block {
	background: #efefef;
	padding: 6em;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 742px;
}
.starrating {
	color: var(--primary-color);
	font-size: 2.2em;
}
.testimonial_rotator_description {
	font-size: 22px;
	margin: 15px 0;
}
.testimonial_rotator_title {
	color: var(--primary-color);
	font-weight: 900;
	font-size: 1.6rem;
}
.testimonial-block::before, .testimonial-block::after {
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	background: var(--primary-color);
	color: #fff;
	padding: 35px 17px;
	font-size: 4rem;
	font-weight: bold;
	line-height: 1;
}
.testimonial-block::before {
	content: "\f10d";
	top: 0;
	left: 0;
}
.testimonial-block::after {
	content: "\f10e";
	bottom: 0;
	right: 0;
}
.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;
	padding-top: 40px;
	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%;
}
#testimonialpage {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.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;
}
.navigation {
	margin-top: 20px;
}
.navigation a {
	border: 2px solid var(--primary-color);
	padding: 5px 15px;
	background: #eee;
}
.navigation a:hover {
	background: #222;
	color: #fff;
}
.table-row table {
	width: 100%;
}
.table-row table td {
	padding: 15px;
	text-align: center;
	width: 33%;
}
.fancy-list {
	padding-left: 15px;
}
.fancy-list a {
	color: var(--text);
}
.fancy-list a:hover {
	color: var(--primary-color);
}
.brokerfree-form input[type="submit"] {
	min-width: 300px;
}
.auctions-gallery {
	margin-top: 30px;
}
.contactForm .full.submit {
	margin-top: 20px;
	text-align: center;
}
.contactForm .submit-button:hover {
	background: #484848;
}
.auction-meta .auc_sold_for {
	color: #d20000;
	font-weight: bold;
	position: absolute;
	top: 15px;
	left: 0;
	right: 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){
	.testimonial-block {
		min-height: 841px;
	}
}
@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: 767px){
	fieldset.one-third, fieldset.half {
		width: 100%;
		margin-right: 0;
	}
	.sitemap-wrapper {
		grid-template-columns: 1fr;
	}
	.single-auction-content {
		grid-template-columns: 1fr;
	}
	.single-auction-img {
		max-height: 100%;
		text-align: center;
		background: #eee;
	}
	.single-auction-img img {
		width: auto;
		height: auto;
	}
	.auctions-wrapper.grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.testimonial-block {
		min-height: 1250px;
	}
	.auction-meta .auc_sold_for {
		position: relative;
		top: 0;
	}
	.auction-meta {
		padding-top: 10px;
	}
}

@media screen and (max-width: 600px){
	.header-inner-wrap {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.site-nav {
		margin-left: auto;
	}
	.header-widget {
		width: 100%;
	}
	.header-widget ul {
		justify-content: center;
		flex-wrap: wrap;
	}
	.newsletter-form {
		flex-direction: column;
		align-items: center;
	}
	.testimonial-block {
		padding: 8em 2em;
	}
}

@media screen and (max-width: 533px){
	.logo img {
		max-width: 110px;
	}
	.phone-btn {
		gap: 3px;
		font-size: 16px;
		padding: 6px;
	}
	.header-widget .fa-square-facebook {
		font-size: 32px;
	}
	.phone-btn i {
		font-size: 18px;
	}
	.page-title-bar {
		min-height: 280px;
		padding-bottom: 0.5em;
	}
	.testimonial_rotator_description {
		font-size: 18px;
	}
	.testimonial_rotator_title {
		font-size: 1.3rem;
	}
	.testimonial-block::before, .testimonial-block::after {
		font-size: 2rem;
	}

}

@media screen and (max-width: 480px){
	img.alignright, img.alignleft {
		float: none;
		display: block;
		margin: auto auto 15px auto;
	}
	.auction-featured-image a {
		height: auto;
	}
	.page-title-bar h1 {
		font-size: 2rem;
	}
}
@media screen and (max-width: 414px){
	span.break {
		display: block;
	}
}
@media screen and (max-width: 375px){
.page-title-bar {
	min-height: 300px;
}
	.table-row table td {
		padding: 5px;
	}
}