/*
Theme Name: Boothroyd
*/

*{
    box-sizing: border-box;
}

body{
    color: #585857;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 22px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 100;
}

b, strong{
    font-weight: 500;
}

/* ----- Type ----- */

.title {
    font-size: 1rem;
    font-style: normal;
    line-height: 1.2em;
}

.title--primary,
.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4,
.wp-content h5,
.wp-content h6 {
    /* margin-top: 0; */
    font-size: 2rem;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

h1, h2, h3, h4, h5, h6{ font-weight: 500; }

.wp-content a{
    color: #A0C519;
    text-decoration: none;
    font-weight: 500;
}

.wp-content .title--secondary, .title--secondary {
    background: #f3f6e1;
    display: block;
    font-size: 1.15rem;
    line-height: 1.1em;
    color: #A0C519;
    padding: 0.6rem 0.6rem 0.3rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
}

hr{
    display: block;
    width: 140px;
    margin: 2rem auto;
    border-radius: 50px;
    height: 4px;
    background: #A0C519;
}

/* ----- Checklists ----- */

ul.checklist{
    padding: 0;
}

ul.checklist li{
    background: #f3f6e1;
    display: block;
    font-size: 1.15rem;
    line-height: 1.1em;
    color: #A0C519;
    padding: 0.6rem 0.6rem 0.3rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    font-weight: 500;
}

ul.checklist li:after{
    content: '';
    float: right;
    background: url(./assets/images/checklist-tick.png) no-repeat center center;
    background-size: contain;
    width: 25px;
    height: 25px;
    position: relative;
    top: -10px;
}

/* ----- Styled list ----- */

ul.styledlist {
    padding-left: 15px;
}

ul.styledlist li {
    position: relative;
    list-style-type: none;
    font-size: 16px;
    line-height: 1.5em;
    padding-left: 15px;
}

ul.styledlist li:after {
    content: '';
    /* float: left; */
    display: block;
    background: url(./assets/images/styledlist-logo.png) no-repeat center center;
    background-size: contain;
    width: 13px;
    height: 9px;
    position: absolute;
    left: -15px;
    top: 8px;
    margin-right: 1rem;
}

/* ----- Back to top button ----- */

.back-to-top{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #585857;
    display: block;
    color: #fff;
    transform: rotate(-90deg);
    clear: both;
    float: right;
    line-height: 29px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 2rem;
    transition: all 0.2s ease-in-out;
}

.back-to-top:hover{
    background: #A0C519;
    color: #fff;
}


/* ----- Styled content ----- */

.content-block{
    background: #f2f2f2;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
}

.wp-content .content-block__title, .content-block__title {
    font-size: 1rem;
    margin: 0;
    text-align: left;
    font-weight: 100;
    font-size: 13px;
}

.wp-content .content-block__title strong,
.content-block__title strong{
    font-weight: 500;
}

.wp-content .content-block p,
.content-block p {
    font-size: 10px;
    line-height: 1.75em;
    margin: 0.5em 0 0;
}

/* ----- Grids ----- */

.row{
    float: left;
    width: 100%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.panel{
    display: block;
    margin: 0 auto;
    max-width: 880px;
    position: relative;
    width: 98%;
}

.panel:after {
  content: "";
  display: table;
  clear: both;
}

.panel--centered{
    text-align: center;
}

.panel--spaced {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* ----- Site Header ----- */

.l-header{
    background: #a0c519;
    text-align: center;
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 5px solid #fff;
}

.logo{
    display: block;
    background: url(./assets/images/logo.webp) center center no-repeat;
    background-size: contain;
    width: 160px;
    height: 90px;
    margin: 0 auto;
    text-indent: -999px;
    overflow: hidden;
    margin-bottom: 1.4rem;

}

/* ----- Main Navigation----- */

#top-menu{
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 710px) {
    #top-menu {
        display: block !important;
    }
}

#top-menu li {
    display: inline-block;
    margin: 0 0.5rem;
}

#top-menu li:before{
    color: #fff;
    content: '•';
    float: left;
    position: relative;
    font-size: 0.9rem;
    top: 1.4px;
    margin-right: 1.2rem;
}

#top-menu li:first-child:before{
    display: none;
}

#top-menu li a{
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

#top-menu li a:hover {
  color: #585857;
}

#top-menu li.current_page_item a {
    color: #585857
}

.menu-control{
    display: none;
}

@media screen and (min-width: 710px) {
	.menu-main-navigation-container ul ul {
		display: none;
	}

	.menu-main-navigation-container ul li:hover > ul {
		display: block;
	}

	.menu-main-navigation-container ul ul li a {
		color: #FFF!important;
		padding: 10px 20px;
		display: block;
	}

	.menu-main-navigation-container ul ul li a:hover {
		color: #A0C519!important;
	}

	.menu-main-navigation-container ul ul {
		display: none;
		position: absolute;
		top: 22px;
		left: 0px;
		z-index: 99999;
		margin: 0;
		padding: 0;
		background: #585857;
		width: 200px;
		text-align: left;
	}

	.menu-main-navigation-container ul ul li {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
	.menu-main-navigation-container ul ul li:before {
		display: none;
	}

	.menu-main-navigation-container li {
		position: relative;
	}
}

@media screen and (max-width: 710px) {

    .menu-control{
        display: block;
        position: absolute;
        right: 0.7rem;
        top: -1rem;
        border-bottom: 3px solid #fff;
        border-top: 3px solid #fff;
        width: 30px;
        height: 30px;
        z-index: 50;
        transition: all 0.5s ease-in-out;
    }

    .home .menu-control {
        top: -3rem;
    }

    .menu-control:before{
        content: '';
        border-top: 3px solid #fff;
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -2px;
    }

    .menu-control.active{
        transform: rotate(90deg);
    }

    .l-header .panel{
        width: 100%;
    }

    #top-menu{
        display: none;
        position: absolute;
        top: -2rem;
        left: 0;
        width: 100%;
        background: #585857;
        z-index: 100;
        padding-bottom: 1rem;
        padding-top: 3rem;
        z-index: 20;
    }

    .home #top-menu {
        top: -4rem;
    }

    #top-menu li{
        display: block;
        text-align: right;
    }

    #top-menu li a{
        display: block;
        padding: 0.7rem 0;
    }

    #top-menu li:before{
        display: none;
    }

    #top-menu li.current_page_item a,
    #top-menu li a:hover {
        color: #a0c519 !important;
    }
}

/* ----- Footer ----- */

.l-footer{
    width: 100%;
    background: #dadada;
    padding-bottom: 2rem;
    padding-top: 1rem;
    margin-top: 5rem;
}

.page-id-29 .l-footer {
    margin-top: 0;
}

.l-footer__content{
    font-size: 11px;
    line-height: 1.65em;
    float: left;
    max-width: 500px;
    clear: left;
}

.l-footer__content a {
    color: #585857;
    font-weight: 500;
    text-decoration: none;
}

#footer-menu {
    float: left;
    padding: 0;
    margin-bottom: 0.8rem;
    width: 100%;
}

#footer-menu li{
    float: left;
    list-style: none;
}

#footer-menu li a{
    color: #585857;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.25em;
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 1rem;
    margin-left: 1rem;
}

#footer-menu li a:before{
    color: #a0c519;
    content: '•';
    float: left;
    position: relative;
    font-size: 0.9rem;
    top: 6px;
}


#footer-menu li:first-child a {
    margin-left: 0;
}

#footer-menu li:first-child a:before{
    display: none;
}

.l-footer__logos{
    text-align: right;
    float: right;
}

.l-footer__logos img{
    display: inline-block;
}

.l-footer__logos .boothroyds-logo{
    clear: both;
    margin-bottom: 1rem;
    margin-top: -1rem;
}

@media screen and (max-width: 670px) {
    .l-footer__logos{
        clear: both;
        text-align: center;
        float: left;
        width: 100%;
    }

    .l-footer__logos .boothroyds-logo{
        margin-top: 1rem;
    }
}

/* ----- Page Header ----- */

.page__header{
    background: #585857;
    text-align: center;
    padding: 2.5rem 0 5.5rem;
    box-shadow: inset 0 0 20px #333;
}

.page__header:after {
  content: "";
  display: table;
  clear: both;
}

.page__header--alt{
    background: transparent;
    padding-bottom: 0;
    box-shadow: none;
}

.page__header--nosubnav,
.page-id-24 .page__header,
.page-id-44 .page__header {


    padding: 2.5rem 0 3rem;
}

.page__title{
    color: #fff;
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.post-type-archive-property .page__title {
    opacity: 0;
}

.page__title--dark{
    color: #585857;
}

.page__title--nospacingbottom{
    margin-bottom: 0;
}

.page__header--alt .page__title {
    color: #585857;
}

.page__title span {
  color: #A0C519;
}

.page__subtitle{
    font-size: 1.6rem;
    font-weight: 100;
    line-height: 1.2em;
    float: left;
    width: 100%;
    margin-top: 0;
}

.page__subtitle,
.page__subtitle p {
  color: #fff;
}

.page__subtitle > p:first-child{
    margin-top: 0.5rem;
}

.page__subtitle--dark{
    color: #585857;
}

.page__subtitle--altspacing{
    margin-top: 1.3rem;
    margin-bottom: 1rem;
}

.page__subtitle p:last-child{
    margin-bottom: 0;
}

.page__subtitle a {
    color: #A0C519;
    text-decoration: none;
}

/* ----- Subnav ----- */

.subnav{
    text-align: center;
    margin-top: -3rem;
}

.subnav--home{
    background: #ffffff;
    margin-top: -6rem;
    padding-bottom: 0.9rem;
    position: relative;
    z-index: 20;
}

.subnav--home .subnav__link{
    margin-top: -5.5rem;
}

.subnav__link{
    width: 95px;
    height: 95px;
    display: inline-block;
    border-radius: 50%;
    background: #585857;
    border: 3px solid #fff;
    margin: 0 0.5rem;
    line-height: 90px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;

    box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.3),
    inset 3px 15px 45px rgba(255, 255, 255, 0.1);
    /* inset 0px 0px 3px 3px rgb(88, 88, 87); */
}

.subnav__link:after{
    content: '';
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 83px;
    height: 83px;
    border: 3px solid #585857;
    transition: all 0.2s ease-in-out;
}

.subnav__link:hover{
    background: #A0C519;
}

.subnav__link--active {
    background: #A0C519;
}

.subnav__link--active:after,
.subnav__link:hover:after {
  border-color: #A0C519;
}


.subnav__link--active:hover{
    background: #585857;
}

.subnav__link--active:hover:after {
  border-color: #585857;
}



.subnav__link--properties{
    line-height: 1.25em;
    padding-top: 1.7rem;
    vertical-align: top;
    font-size: 16px;
}

.subnav__link--home{
    font-size: 33px;
    width: 170px;
    height: 170px;
    line-height: 0.9em;
    vertical-align: middle;
    padding: 1.5em 1em;
    text-align: center;
    border-width: 7px;
}

.subnav__link--home:after{
    width: 146px;
    height: 146px;
    border-width: 5px;
}

@media screen and (max-width: 600px) {

    .subnav--home {
        margin-top: 0;
        padding-top: 2rem;
    }

    .subnav--home .subnav__link {
        margin-top: 0;
    }

    .subnav__link--home{
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
        padding: 1.2rem 0.5rem;
        text-align: center;
    }

    .subnav__link--home:after{
        border-width: 3px;
        height: 80px;
        width: 80px;
    }

}


/* ----- Property header ----- */

.property--headersearchcount{
    text-decoration: none;
    font-weight: 500;
    color: #A0C519;
    display: inline-block;
    font-size: 11px;
    clear: both;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.property--headersearchcount:after {
  content: '•';
  float: right;
  color: #fff;
  margin-left: 0.7rem;
  margin-right: 0.5rem;
}

.property--headersearchcount p{
    display: inline-block;
    margin: 0;
}

.property-signup-link {
    display: inline-block;
    color: #A0C519;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1em;
    font-size: 11px;
    line-height: 1.25em;
    font-weight: 500;
}


.property-search__form {
    margin-top: 1rem;
    float: left;
    width: 100%;
}

.property-search__form label {
    display: none;
}

.property-search__form .control {
    float: left;
    padding: 0;
    width: calc(49.5% - 6px);
    margin: 0.2rem 3px;
}

.property-search__form input[type=text],
.property-search__form select {
    float: left;
    height: 30px;
    background: #ffffff;
    border: none;
    border-radius: 0;
    width: 100%;
    -webkit-appearance: none;
    padding: 5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
}

.property-search__form .control.control-property_type,
.property-search__form .control-minimum_bedrooms,
.property-search__form .control-minimum_rent,
.property-search__form .control-maximum_rent,
.property-search__form .control-minimum_price,
.property-search__form .control-maximum_price{
    position: relative;
}

.property-search__form .control.control-property_type:after,
.property-search__form .control-minimum_bedrooms:after,
.property-search__form .control-minimum_rent:after,
.property-search__form .control-maximum_rent:after,
.property-search__form .control-minimum_price:after,
.property-search__form .control-maximum_price:after{
    content: '\203A';
    color: #A0C519;
    position: absolute;
    font-weight: 500;
    font-size: 2rem;
    top: 0.3rem;
    right: 0.5rem;
    transform: rotate(90deg);
    pointer-events: none;
}

.property-search__form .control-maximum_price,
.property-search__form .control-maximum_price:after,
.property-search__form .control-maximum_rent,
.property-search__form .control-maximum_rent:after{
    float: right;
    margin-right: 11px;
}

.property-search__form .control-minimum_price,
.property-search__form .control-minimum_price:after,
.property-search__form .control-minimum_rent,
.property-search__form .control-minimum_rent:after{
    float: left;
    margin-right: 0px;
}

.property-search__form input[type=submit]{
    display: block;
    clear: both;
    text-align: center;
    -webkit-appearance: none;
    border: none;
    height: 40px;
    width: 150px;
    margin: 0 auto;
    color: #fff;
    background: #A0C519;
    font-size: 15px;
    line-height: 1em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease-in-out;
    margin-top: 2rem;
}

.property-search__form .control-minimum_price,
.property-search__form .control-minimum_rent {
    margin-bottom: 1rem;
}

.property-search__form .control-department {
    display: none;
}

/* ----- Property map ----- */

.propertyhive-map-canvas-wrapper{
    display: none;
}

/* ----- Property Listing item ----- */

.property-listing{
    margin-bottom: 2.5rem;
    position: relative;
    float: left;
}

.properties .row:last-child .property-listing {
  margin-bottom: 0;
}

.property-listing__image{
    max-width: 290px;
    float: left;
}

.property-listing__imageoverlay{
    position: absolute;
    width: 63px;
    height: 63px;
    text-align: center;
    background: #A0C519;
    border-radius: 50%;
    font-size: 17px;
    color: #585857;
    font-weight: 500;
    padding: 1.35em 0.6em;
    word-wrap: break-word;
    line-height: 1em;
    top: 0.5rem;
    left: 0.5rem;

}

.property-listing__image img{
    float: left;
    width: 100%;
    height: auto;
}

.property-listing__content{
    background: #eaeaea;
    margin-left: 5px;
    float: left;
    width: calc(100% - 295px);
    min-height: 193px;
}

.property-listing__title{
    font-size: 25px;
    line-height: 1.25em;
    margin: 0;
    font-weight: 500;
    color: #585857;
    margin: 1rem 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eeeeee;
}

.property-listing__title a{
    color: #585857;
    text-decoration: none;
}

.property-listing__description{
    float: left;
    margin: 0.5rem 1rem 0;
}

.property-listing .summary{
    min-height: 85px;
    font-size: 12px;
    line-height: 1.45em;
}


.property-listing__bedrooms,
.property-listing .price {
    float: left;
    margin: 0;
    font-size: 23px;
    line-height: 1.35em;
    font-weight: 500;
    color: #585857;
    margin-bottom: -1rem;
    text-transform: uppercase;
    padding-top: 0.5rem;
}

.property-listing__bedrooms:after{
    content: '•';
    float: right;
    color: #A0C519;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.property-listing .price-qualifier{ display: none;}

.property-listing .price {
    float: left;
    margin: 0;
}

.property-listing__view{
    color: #fff;
    background: #A0C519;
    font-size: 15px;
    line-height: 1em;
    padding: 1rem 1rem 0.8rem 1rem;
    text-transform: uppercase;
    float: right;
    margin-right: -1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease-in-out
}

.property-listing__view:hover{
    background: #585857;
}

@media screen and (max-width: 800px) {
    .property-listing__view{
        margin: 1rem 0;

        clear: both;
    }
}

@media screen and (max-width: 600px) {

    .property-listing__image{
        width: 100%;
        max-width: 100%;
    }

    .property-listing__content{
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    .property-listing .summary {
        min-height: 0;
    }
}



/* ----- Property single ----- */

.property__back{
    color: #585857;
    font-size: 12px;
    line-height: 1em;
    font-weight: 500;
    padding: 1rem 1rem 1rem 0;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.property__back:hover{
    color: #A0C519;
}

.property__back:before{
    content: "<";
    width: 1rem;
    height: 1rem;
    color: #fff;
    background: #A0C519;
    float: left;
    text-align: center;
    border-radius: 50%;
    line-height: 0.9rem;
    position: relative;
    margin-right: 0.5rem;
    top: -2px;
    transition: all 0.2s ease-in-out;
}

.property__back:hover:before{
    background: #585857;
}

.property__leftcol{
    float: left;
    width: 33%;
}

.property__price{
    background: #585857;
    color: #fff;
    font-size: 24px;
    line-height: 1.25em;
    padding: 0.7rem 1rem 1rem;
    font-weight: 500;
    margin: 0;
}

.property__price .price{
    color: #A0C519;
    display: block;
}

.property_actions ul{
    padding: 0;
}

.property_actions ul li{
    list-style-type: none;
}

.property_actions ul li a,
.book-valuation {
    background: #A0C519;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    padding: 1rem;
    float: left;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1em;
    transition: all 0.2s ease-in-out;
}

.property_actions ul li a:hover,
.book-valuation:hover{
    background: #585857;
}

.property__details{
    background: #eaeaea;
    padding: 0.5rem 20px 1.5rem;
    width: 100%;
    float: left;
}

.property__details h4{
    font-size: 20px;
    margin: 1rem 0 1.3rem;
}


.property__details > :first-child{
    margin-top: 0;
}

.property__details > :last-child {
  margin-bottom: 0;
}

.property__details ul{
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.property__details ul li{
    list-style-type: none;
    font-size: 15px;
    line-height: 1.25em;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.property__details ul li:before{
    content: '>';
    float: left;
    color: #A0C519;
    padding-right: 0.5rem;
    position: relative;
    top: -1px;
}


.property__description{
    float: right;
    width: 66%;
    padding-left: 20px;
}

.property__gallery {
  margin-bottom: 5px;
}

.property__gallery .flexslider {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  border: 0;
}

.property__gallery .flexslider .slides img,
.property__gallery .flexslider .slides img {
  height: auto;
}

.property__gallery .flexslider.thumbnails .slides {
  margin-top: 5px;
}

.property__gallery .flexslider.thumbnails .slides li {
  margin-right: 5px;
  margin-bottom: 5px;
}


@media screen and (max-width: 600px) {
    .property__leftcol, .property__description {
        width: 100%;
    }

    .property__description{
        padding: 0 10px;
    }

}

/* ----- Property Count ----- */

.property-search__count{
    text-decoration: none;
    font-weight: 500;
    color: #585857;
    float: left;
    width: 100%;
    clear: both;
    margin-top: 1rem;
    text-transform: uppercase;
}

.property-search__count p{
    margin: 0;
}

/* ----- Property Pagnination ----- */

.page-numbers{
    float: left;
    width: 100%;
    clear: both;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.page-numbers a{
    text-decoration: none;
    font-weight: 500;
    color: #585857;
}

.page-numbers .current{
    color: #A0C519;
    font-weight: 500;
}

.property-search__count--footer, .property-search__pagination--footer{
    clear: both;
    float: right;
    margin: 0;
    width: auto;
}

/* ----- Blog posts ----- */

.post{
    text-align: center;
}

.post--preview{
    margin-bottom: 3.5rem;
}

.post--preview:after{
    content: '';
    display: block;
    width: 140px;
    margin: 2.5rem auto 1.9rem;
    border-radius: 50px;
    height: 4px;
    background: #A0C519;
}

.post__image{
    width: 100%;
}

.post__image img{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.post__title{
    color: #585857;
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.post__meta,
.post-categories{
    padding: 0;
    text-align: center;
    margin-top: -0.5rem;
}

.post-categories{ margin-bottom: 0;}

.post__meta li,
.post-categories li{
    display: inline-block;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
}

.post-categories li a{
    color: #A0C519;
    text-decoration: none;
}

.post-categories li a:hover{
    color: #585857;
}

.post__meta li:first-child:after,
.post-categories li:first-child:after {
    content:"|";
    display: inline-block;
    padding: 0 0.3rem 0 0.5rem;
    color: #A0C519;
}

.post-categories li:last-child:after{
    display: none;
}

.post__link{
    color: #585857;
    font-size: 17px;
    line-height: 1.25em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 1rem;
    display: block;
}

/* ----- Homepage header ----- */

html, body.home, body.home .site, body.home .l-main{
    height: 100%;
}

body.home .l-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
    z-index: 20;
}

body.home .logo {
  background: url(./assets/images/home-logo.webp) center center no-repeat;
  background-size: contain;
  width: 260px;
  height: 140px;
  margin: 2rem auto 2.5rem;
}

body.home #top-menu li.current_page_item a{
    color: #fff;
    font-weight: 500;
}

body.home #top-menu li a:hover,
body.home #top-menu li.current_page_item a:hover {
    color: #585857;
}

.parallax-window {
  min-height: 100%;
  background: transparent;
}

.home__header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.home__header .title{
    float: left;
    width: 90%;
    position: relative;
    top: 40%;
    color: #fff;
    text-align: center;
    font-size: 60px;
    line-height: 0.95em;
    font-weight: 300;
    margin-left: 5%;
}

@media screen and (max-width: 600px) {
    html,
    body.home,
    body.home .site,
    body.home .l-main {
        height: auto;
    }

    .home__header{
        height: 600px;
        position: relative;
        background: url(./assets/images/home-header.jpg) no-repeat center center;
    }

    .home__header .title{
        font-size: 40px;
        top: 300px;

    }
}

/* ----- Home content ----- */

.home__content{
    max-width: 875px;
    width: 90%;
    display: block;
    margin: -0.5rem auto 2.7rem;
    text-align: center;
    font-size: 24px;
    line-height: 1.25em;
}

.home__content h1 {
    font-size: 1.2em;
    line-height: 1.25em;
}

.home__content strong{
    color: #A0C519;
}

/* ----- Featured Grid ----- */

.featured-grid {
  max-width: 1400px;
  display: block;
  margin: 0 auto;
  width: 100%;
}

.featured-grid:after {
  content: "";
  display: table;
  clear: both;
}

.featured-grid__col {
  float: left;
  border-right: 5px solid #fff;
}

@media screen and (max-width: 600px) {
  .featured-grid__col {
    width: 100%;
  }
}

.featured-grid__cell {
  position: relative;
  background: no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
  border-bottom: 5px solid #fff;
  float: left;
  height: 0;
  overflow: hidden;
  position: relative;
}

.featured-grid__col:nth-child(1) {
    width: 40%;
}

.featured-grid__col:nth-child(1) .featured-grid__cell:nth-child(1),
.featured-grid__col:nth-child(1) .featured-grid__cell:nth-child(2) {
    padding-bottom: 56.4%;
    width: 50%;
}

.featured-grid__col:nth-child(1) .featured-grid__cell:nth-child(2) {
  border-left: 5px solid #fff;
}

.featured-grid__col:nth-child(1) .featured-grid__cell:nth-child(3) {
  padding-bottom: 56%;
  width: 100%;
}

.featured-grid__col:nth-child(2) {
    width: 30%;
}

.featured-grid__col:nth-child(2) .featured-grid__cell:nth-child(1){
  padding-bottom: 151.5%;
  width: 100%;
}

.featured-grid__col:nth-child(3) {
    width: 30%;
}

.featured-grid__col:nth-child(3) .featured-grid__cell:nth-child(1),
.featured-grid__col:nth-child(3) .featured-grid__cell:nth-child(2) {
  padding-bottom: 75%;
  width: 100%;
}

@media screen and (max-width: 600px) {

    .featured-grid__col:nth-child(1),
    .featured-grid__col:nth-child(2),
    .featured-grid__col:nth-child(3) {

        width: 100%;
    }
}

.featured-grid__content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(160, 197, 25, 0.8);
    padding: 0 10%;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-grid__content h3{
    margin: 0;
}

.featured-grid__content:hover{
    background: rgba(160, 197, 25, 0.3);
}

.featured-grid__content--4{
    background: rgba(88, 88, 87, 0.8);
}

.featured-grid__content--4:hover{
  background: rgba(88, 88, 87, 0.3);
}


.featured-grid__title{
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    line-height: 1em;
}

/* ----- Homepage news articles ----- */

.home__news{
    padding: 2.5rem 0 4rem;
}

.home__news:after {
  content: "";
  display: table;
  clear: both;
}

.home__newstitle{
    text-align: center;
    display: block;
    font-size: 36px;
    text-transform: uppercase;
    margin: 0 0 2.5rem;
}

.home__newstitle span{
    color: #A0C519;
}

.home__newsvideo{
    float: left;
    width: 55%;
    height: 260px;
    display: none;
}

.home__newsvideo p{ display: none; }

.home__newsvideo iframe{
    margin-top: -3rem;
    width: 100%;
}

.home__newsfeed {
  display: block;
  width: 40%;
  margin: 0 auto;
}

.home__newspost{
    float: left;
    width: 100%;
    padding: 0.7rem 0;
    border-top: 1px solid #d9d9d9;
    text-align: center;
}

.home__newspost:first-child{
    border-top: none;
    padding-top: 0;
}

.home__newspost__title{
    font-weight: 300;
    margin: 0;
    font-size: 20px;
    line-height: 1.25em;
    margin-bottom: 0.2em;
}

.home__newspost__title a {
    color: #585857;
    text-decoration: none;
}

.home__newspost__title a:hover {
    color: #A0C519;
}

.home__newspost__date,
.home__newspost__link {
    color: #A0C519;
    display: inline-block;
    font-size: 11px;
    line-height: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.home__newspost__link{
    margin: 0 0 0 1rem;
    color: #585857;
    text-decoration: none;
}

.home__newspost__link:hover {
    color: #A0C519;
}

.home__newspost__link span{
    color: #A0C519;
    padding-left: 0.3rem;
}

@media screen and (max-width: 600px) {

    .home__newstitle{
        line-height: 1.25em;
    }

    .home__newsvideo {
        margin-bottom: 2rem;
        width: 100%;
    }

    .home__newsfeed {
        width: 100%;
    }
}

/* ----- Homepage contact form ----- */

.home__contact{
    background: #585857;
    padding: 2.5rem 0 4rem;
    box-shadow: inset 0 0 20px #333;
    margin-bottom: -5rem;
}

.home__contacttitle {
    color: #fff;
    text-align: center;
    display: block;
    font-size: 36px;
    text-transform: uppercase;
    margin: 0 0 2.5rem;
}

.home__contacttitle span {
    color: #A0C519;
}

.home__contactcontent{
    color: #fff;
    float: left;
    width: 55%;
}

.home__contactcontent__title{
    color: #A0C519;
    font-size: 20px;
    line-height: 1.5em;
    margin: 0;
    text-transform: uppercase;
    margin-top: 1.5rem;
    font-weight: 500;
}

.home__contactcontent p{
    font-size: 20px;
    line-height: 1.5em;
    margin: 0;
    font-weight: 400;
}

.home__contactcontent a{
    text-decoration: none;
    color: #fff;
}

.home__contactcontent a:hover{
    color: #A0C519;
}

.home__contactcontent p.small{
    font-size: 11px;
    line-height: 1.25em;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.home__contact .wpcf7{
    float: right;
    width: 45%;
    max-width: 320px;
}

.home__contact .wpcf7 input[type=text],
.home__contact .wpcf7 input[type=email] {
    height: 30px;
    width: 100%;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    border: none;
    padding: 0 0.5rem;
}

.home__contact .wpcf7 select {
  height: 30px;
  width: 100%;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  padding: 0 0.5rem;
  -webkit-appearance: none;
  background: #fff;
  border-radius: 0;
  border: none;
}

.home__contact .wpcf7 .wpcf7-form-control-wrap.menu-527{
    position: relative;
}

.home__contact .wpcf7 .wpcf7-form-control-wrap.menu-527:after{
    content: '\203A';
    color: #A0C519;
    position: absolute;
    font-weight: 500;
    font-size: 2rem;
    top: 0;
    right: 0.5rem;
    transform: rotate(90deg);
}

.home__contact .wpcf7 textarea {
  height: 100px;
  width: 100%;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  padding: 0 0.5rem;
  -webkit-appearance: none;
  background: #fff;
  border-radius: 0;
  border: none;
}

.home__contact .wpcf7 input[type=submit]{
    display: block;
    clear: both;
    text-align: center;
    -webkit-appearance: none;
    border: none;
    height: 40px;
    width: 100px;
    float: right;
    color: #fff;
    background: #A0C519;
    font-size: 15px;
    line-height: 1em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease-in-out;
    margin-top: -1rem;
}

.form__note{
	display: inline-block;
    float: left;
    font-size: 9px;
    margin-top: -1.5rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
    .home__contactcontent,
    .home__contact .wpcf7 {
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
    }

    .home__contact .wpcf7{
        margin-top: 2rem;
    }
}

/* ----- Team section ----- */

.team {
  clear: both;
  position: relative;
  float: left;
  width: 100%;
}

.team:before {
  content: '';
  display: block;
  width: 140px;
  margin: 1rem auto 1.9rem;
  border-radius: 50px;
  height: 4px;
  background: #A0C519;
}

.teammembers {
  text-align: center;
}

.team-member-thumbnail {
    cursor: pointer;
    display: inline-block;
    width: calc(25% - 30px);
    margin: 1rem 10px;
    height: auto;
    border-radius: 50%;
    background: #f00;
    overflow: hidden;
    position: relative;
}

.team-member-thumbnail__image{
    display: block;
    width: 100%;
    height: auto;
}

.team-member-thumbnail__name{
    background: #585857;
    font-weight: 500;
    font-size: 33px;
    line-height: 1.25em;
    word-break: break-word;
    color: #A0C519;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

@media screen and (max-width: 710px) {
    .team-member-thumbnail__name{ display: none !important; }
}

.team-member-thumbnail:hover .team-member-thumbnail__name{
    opacity: 0.8;
}

/* ----- Team members ----- */


.team-member{
    background: #585857;
    float: left;
    width: 100%;
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 3.5rem;
    box-shadow: inset 0 0 20px #333;
    text-align: left;
}

.team-member:after {
  content: "";
  display: table;
  clear: both;
}

.team-member__image {
    float: left;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
}

.team-member__title{
    color: #A0C519;
    font-size: 33px;
    line-height: 1em;
    margin: 0;
    text-transform: uppercase;
}

.team-member__jobtitle{
    color: #fff;
}

.team-member__content {
    font-size: 13px;
    float: right;
    width: calc(100% - 280px);
}

.team-member__description strong{
    color: #A0C519;
    text-transform: uppercase;
}

.team-member__close{
    position: absolute;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #585857;
    font-size: 39px;
    line-height: 0.8em;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    left: -30px;
    top: 0;
    transition: all 0.25s ease-in-out;
}

.team-member__close:hover{
    color: #fff;
    background: #A0C519;
}

@media screen and (max-width: 710px) {
    .team-member__content,
    .team-member__image{
        display: block;
        float: none;
        margin: 0 auto;
        width: 90%;
    }

    .team-member__image {
        width: auto;
        height: auto;
        max-width: 250px;
        margin-bottom: 3rem;
    }

    .team-member__title{
    }

    .team-member__content {
        text-align: center;
    }

    .team-member__close{
            left: auto;
        right: 1rem;
        top: -2.5rem;
    }
}

/* ----- Services pages ----- */

.page-id-33 .wp-content,
.page-id-35 .wp-content,
.page-id-37 .wp-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ----- Contact page ----- */

.map{
    width: 100%;
}

.contact-content{
    float: left;
    width: 47%;
    font-size: 1.3rem;
    line-height: 1.25em;
    margin-top: 0.5rem;
}

.contact-content a{
    color: #A0C519;
    font-weight: 500;
    text-decoration: none;
}

.page-id-27 .wpcf7{
    float: right;
    width: 53%;
    padding: 1rem;
}

.page-id-44 .wpcf7,
.page-id-27765 .wpcf7{
    display: block;
    max-width: 450px;
    margin: 0 auto;
}

.page-id-27 .wpcf7 br,
.page-id-44 .wpcf7 br,
.page-id-27765  .wpcf7 br{
    display: none;
}

.page-id-27 .wpcf7 label,
.page-id-44 .wpcf7 label,
.page-id-27765  .wpcf7 label{
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 500;
    margin-bottom: 1rem;
    float: left;
    text-align: right;
    width: 100%;
}

.page-id-27 .wpcf7 input,
.page-id-44 .wpcf7 input,
.page-id-27765 .wpcf7 input{
    text-align: left;
    background: #dadada;
    float: right;
    max-width: 280px;
    font-size: 1rem;
    font-weight: 100;
    height: 39px;
    border: 1px solid #000;
    padding: 0 0.5rem;
    margin-left: 1rem;
}

.page-id-44 .wpcf7 input,
.page-id-27765 .wpcf7 input,
html .page-id-44 .wpcf7 textarea,
html .page-id-27765 .wpcf7 textarea{
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
}

.page-id-44 .wpcf7 select,
.page-id-27765 .wpcf7 select{
    border: 1px solid #000;
    float: left;
    width: 100%;
    appearance: none;
    height: 39px;
    float: left;
    background: #ffffff;
    border-radius: 0;
    width: 100%;
    -webkit-appearance: none;
    padding: 5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 1rem;
}

.wpcf7-form-control-wrap.menu-893{
    max-width: 280px;
    float: right;
    width: 100%;
}

.wpcf7-form-control-wrap.menu-893:after{
    content: '\203A';
    color: #A0C519;
    position: absolute;
    font-weight: 500;
    font-size: 2rem;
    top: 0.5rem;
    right: 0.5rem;
    transform: rotate(90deg);
}

.page-id-27 .wpcf7 textarea ,
.page-id-44 .wpcf7 textarea,
.page-id-27765 .wpcf7 textarea{
  background: #dadada;
  text-align: left;
  float: right;
  max-width: 280px;
  font-size: 1rem;
  font-weight: 100;
  height: 150px;
  border: 1px solid #000;
  padding: 0 0.5rem;
  margin-left: 1rem;
}

.page-id-27 .wpcf7 .wpcf7-list-item label,
.page-id-44 .wpcf7 .wpcf7-list-item label,
.page-id-27765 .wpcf7 .wpcf7-list-item label{
    font-size: 0.8rem;
}

.page-id-44 .wpcf7 .wpcf7-list-item label,
.page-id-27765 .wpcf7 .wpcf7-list-item label{
    margin: 0;
}

.page-id-44 .wpcf7 span.wpcf7-list-item,
.page-id-27765 .wpcf7 span.wpcf7-list-item{
    clear: both;
    width: 100%;
}

.page-id-27 .wpcf7 .wpcf7-list-item label span,
.page-id-44 .wpcf7 .wpcf7-list-item label span,
.page-id-27765 .wpcf7 .wpcf7-list-item label span{
    float: left;
    width: calc(100% - 40px);
}

.page-id-27 .wpcf7 input[type=checkbox],
.page-id-44 .wpcf7 input[type=checkbox],
.page-id-27765 .wpcf7 input[type=checkbox],
.page-id-27765 .wpcf7 input[type=radio]{
    float: right;
    margin: 0;
    height: auto;
    width: 30px;
}

.page-id-27765 .wpcf7 input[type=radio]{
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.page-id-27765 .wpcf7 input[type=checkbox],
.page-id-27765 .wpcf7 input[type=radio]{
    float: left;
}

.page-id-27765 .wpcf7 label{
    text-align: left;
}

.page-id-27 .wpcf7 input[type=submit],
.page-id-44 .wpcf7 input[type=submit],
.page-id-27765 .wpcf7 input[type=submit]{
    display: block;
    clear: both;
    text-align: center;
    -webkit-appearance: none;
    border: none;
    height: 40px;
    width: 150px;
    margin: 0 auto;
    color: #fff;
    background: #A0C519;
    font-size: 15px;
    line-height: 1em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease-in-out;
    margin-top: -1rem;
}

.page-id-27765 .wpcf7 input[type=submit]{
    margin-top: 1rem;
}

.page-id-44 .wpcf7 input[type=submit]{
    float: right;
}

.page-id-27 .wpcf7 input[type=submit]:hover{
    background-color: #585857;
}

@media only screen and (max-width: 910px) {
  .contact-content{
      width: 40%;
  }
  .page-id-27 .wpcf7 {
    width: 60%;
  }
}

@media only screen and (max-width: 800px) {
    .page-id-27 .wpcf7 {
        width: 100%;
    }

    .page-id-27 .wpcf7 label {
        text-align: left;
    }

    .page-id-27 .wpcf7 input,
    .page-id-27 .wpcf7 textarea {

        max-width: 100%;
        width: 100%;
    }

    span.wpcf7-list-item{
        width: 100%;
        margin-left: 0;
        padding-left: 1em;
    }

    .page-id-27 .wpcf7 input[type=checkbox]{
        float: left;
        position: relative;
        top: 3px;
    }

    .page-id-27 .wpcf7 .wpcf7-list-item label span{
        float: left;
    }

}


/* ----- Sitemap ----- */

.wsp-container h2{
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.25em;
    margin-bottom: 0;
}


/* ----- Viewport animations ----- */

.js-viewport-vertical {
    opacity: 0;
    transition: all 0.7s ease-in-out;
    position: relative;
    top: 1.5rem;
    /* @media only screen and (max-width: 600px) {
        opacity: 1;
        top: 0;
    } */
}

.viewport-vertial--inview {
    opacity: 1;
    top: 0;
}

/* ----- iPhone slider ----- */

.iphone-slider {
    width: 365px;
    box-sizing: content-box;
    display: block;
    margin: -8rem auto 5rem;
    position: relative;
    left: 2%;
}

@media only screen and (max-width: 580px) {
    .iphone-slider {
        zoom: 0.7;
    }
}

.iphone-slider__mask{
    position: absolute;
    left: 50%;
    max-width: 469px;
    margin-left: -252px;
    margin-top: -26px;
    margin-bottom: 72px;
    z-index: 20;
}

html .owl-carousel{
    width: 90%;
}

/* html .owl-carousel .owl-item img{
    display: block;
    width: 90%;
} */

@media only screen and (max-width: 580px) {
  .owl-nav{
      display: none;
  }
}

.owl-nav div{
    position: absolute;
    top: 50%;
    z-index: 30;
    background: #A0C519;
    width: 45px;
    height: 45px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    text-indent: -99px;
    overflow: hidden;
}

.owl-nav div:after{
    content: '\203A';
    color: #fff;
    position: absolute;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 2.4rem;
    top: 0;
    right: 0;
    text-indent: 0;
    line-height: 37px;
}

.owl-prev{
    left: -100px;
}

.owl-nav div.owl-prev:after {
  content: '\2039';
}

.owl-next{
    right: -100px;
}

.owl-dots{
    margin-top: 3rem;
    text-align: center;
    margin-left: -1.5rem;
}

.owl-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dadada;
    display: inline-block;
    margin: 0 0.2rem;
}

.owl-dot.active{
    background: #A0C519;
}

.page-id-24 .wp-content{
    text-align: center;
}

.page-id-24 .page__header{
    padding-bottom: 15.5rem;
}

.propertyhive-map-canvas{
    width: 100%;
    margin-bottom: 3rem;
}

.flexslider img {
    display: none;
}

.post__content a{
    color: #A0C519;
}

span.wpcf7-not-valid-tip{
    clear: both;
    text-align: right;
    display: block;
}

#property_map_canvas{
    width: 100%;
}

/* ----- Enquiry booking form ----- */

.pp_content_container h2, .pp_content_container p{
    float: left;
    width: 100%;
    padding: 0 1rem;
    color: #002D50;
}

.pp_content_container h2{
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1.05em;
    font-weight: 600;
    margin-bottom: 10px;
}

.pp_content_container #enquirySuccess{
    margin-bottom: 10px;
}

.enquiry-form{
    height: 630px !important;
    width: 500px !important;
    overflow: hidden !important;
}

div.pp_default .pp_content, div.light_rounded .pp_content{
    border-radius: 5px;
}

.pp_content_container h2{
    font-size: 20px;
}

.property-enquiry-form{
    padding: 1rem;
}

.property-enquiry-form label{
    width: 100%;
}

.property-enquiry-form input{
    width: 100%;
    height: 40px;
    margin-bottom: 1rem;
    padding:  0 7px;
    border:  1px solid #ccc;
    margin-top: 0.3em;
    border-radius: 5px;
}

.property-enquiry-form input[type=checkbox]{
    width: 40px;
    height: 16px;
}

.property-enquiry-form select{
    width: 100%;
    height: 40px;
    margin-bottom: 1rem;
    padding:  0 7px;
    border:  1px solid #ccc;
    margin-top: 0.3em;
    border-radius: 5px;
}

.property-enquiry-form textarea{
    width: 100%;
    height: 100px;
    margin-bottom: 1rem;
    padding:  0 7px;
    border:  1px solid #ccc;
    margin-top: 0.3em;
    border-radius: 5px;
}

.property-enquiry-form input[type=submit]{
    clear: left;
    background-color: #a0c519;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    padding: 8px 10px;
    float: right;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    width: 150px;
}

.control-gdpr input[type=checkbox]{
    display: none;
}

.valuation-btn{
    display: block;
    clear: both;
    text-align: center;
    -webkit-appearance: none;
    border: none;
    height: 35px;
    width: 160px;
    margin: 0 auto;
    color: #fff;
    background: #585857;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease-in-out;
    line-height: 35px;
    position: relative;
    margin-top: 1.5rem;
    top: 0rem;
    right: 0;
}
/* Make pagination bigger */
.property-search__count p{
	font-size: 22px;
}
.propertyhive-pagination ul{
	font-size: 18px;
}
/* Remove bottom pagination */
.property-search__pagination .property-search__pagination--footer{
	
}
.property-search__count .property-search__count--footer{

}
/* Remove bottom pagination */
.property-search__count--footer, .property-search__pagination--footer{
	
}

@media screen and (max-width: 992px) {
	.header_banners{
	float:right;	
	}
	.content_banners{	
		display:none;
	}
}
@media screen and (max-width: 600px) {
	.header_banners{
		display:none;
	}
	.content_banners{
    text-align: center;
	display:block;
	}
}


.boothroyds-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
	img.bawards {
		width: 100%;
	}
}