/*

    
    - Fonts
    - General CSS
    - Header
    - Hero
    - Search
    - Listings
    - Footer
    - Responsive CSS
    

*/







/*  Fonts  */
@font-face {
    font-family: 'lato-bold';
    src: url('../fonts/lato-bold.eot');
    src: url('../fonts/lato-bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/lato-bold.woff') format('woff'),
         url('../fonts/lato-bold.ttf') format('truetype'),
         url('../fonts/lato-bold.svg#LatoBold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lato-regular';
    src: url('../fonts/lato-regular.eot');
    src: url('../fonts/lato-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/lato-regular.woff') format('woff'),
         url('../fonts/lato-regular.ttf') format('truetype'),
         url('../fonts/lato-regular.svg#LatRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'p22_corinthia';
    src: url('../fonts/p22_corinthia.eot');
    src: url('../fonts/p22_corinthia.eot?#iefix') format('embedded-opentype'),
         url('../fonts/p22_corinthia.woff') format('woff'),
         url('../fonts/p22_corinthia.ttf') format('truetype'),
         url('../fonts/p22_corinthia.svg#P22Corinthia') format('svg');
    font-weight: normal;
    font-style: normal;
}











/*  General CSS  */
body{
    background: #ffefef;
}

.wrapper{
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

h1, h2, h3, h4, h5 ,h6{
    color: #626262;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
}

h1              { font-size: 2em; margin: .67em 0 }
h2              { font-size: 1.5em; margin: .75em 0 }
h3              { font-size: 1.17em; margin: .83em 0 }
h5              { font-size: .83em; margin: 1.5em 0 }
h6              { font-size: .75em; margin: 1.67em 0 }
h1, h2, h3, h4,
h5, h6          { font-weight: bolder }

.clearfix:before,  
.clearfix:after {  
    content: " ";  
    display: table;  
}  
.clearfix:after {  
    clear: both;  
}  
 
.clearfix {  
    *zoom: 1;  
}










/*  Header Section  */

header{
    width: 100%;
    height: 100px;
    background: rgba(28, 54, 85, .2);
    background-color:#8c9da9;


}

header .logo{
    margin-top: 40px;
    float: left;
}

header a.hamburger{
    text-decoration: none;
    display: none;
    float: right;
    margin-top: 41px;
    width: 24px;
    height: 19px;
    background: url('../img/hamburger_icon.png') no-repeat;
}

header a.hamburger.opned{
    width: 19px;
    background: url('../img/close_menu_icon.png') no-repeat;
}


header nav{
    float: right;
    opacity: 1;
}


header nav ul{
    margin-top: 40px;
    list-style: none;
    overflow: hidden;
    float: left;
}

header nav ul li{
    float: left;
    margin-left: 50px;
}

header nav ul li a,
header nav .login_btn{
    text-decoration: none;
    color: #fff;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}

header nav .login_btn{
    float: right;
    margin: 30px 0 0 50px;
    padding: 10px 30px 11px 30px;
    border: 2px solid #ffffff;
    background: transparent;

    transition: background .1s linear;
    -webkit-transition: background .1s linear;
    -moz-transition: background .1s linear;
    -o-transition: background .1s linear;
}

header nav .login_btn:hover{
    background: #ffffff;
    color: #1c3655;
}










/*  Hero Section HOMEPAGE */

.hero{
    width: 100%;
    height: 800px;
    position: relative;
    background: url('../img/hero.jpg') no-repeat bottom center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.hero .caption{
    width: 100%;
    position: absolute;
    text-align: center;
    top: 33%;
    margin-top: -105px;
    z-index: 10;
}

.hero .caption h2{
    color: #fff;
    font-family: "Monotype_Corsiva";
    font-size: 60px;
    font-weight: lighter;
    margin: 0;
    position: relative;
    display: block;
}

.hero .caption h3{
    color: #fff;
    font-family: "Monotype_Corsiva";
    font-size: 16px;
    margin: 15px 0 0 25px;
    left: 1px;
}

/*  Hero Section OTHER PAGES */
.hero2{
    width: 100%;
    height: 250px;
    position: relative;
	background: url('../img/hero8.jpg') no-repeat bottom center;
    background-color:#fff;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.hero2 .caption{
    width: 100%;
    position: absolute;
    text-align: center;
    top: 33%;
    margin-top: 45px;
    z-index: 10;
}

.hero2 .caption h2{
    color: #5C778F;
    font-family: "Monotype_Corsiva";
    font-size: 80px;
    font-weight: lighter;
    margin: 0;
    position: relative;
    display: block;
}

.hero2 .caption h3{
    color: #7a8a97;
    font-family: "Monotype_Corsiva";
    font-size: 14px;
    margin: -5px 0 0 25px;
    left: 1px;
}

.hero3{
    width: 100%;
    height: 100px;
    position: relative;
    background-color:#98aab7;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

/*  Search Section  */
.search{
    width: 100%;
    height: 50px;
    background: #a5b3b9; /*95badf */
    position: relative;
	/* border-top: 1px solid #fff; */
}

.search #search{
    display: block;
    width: 90.90909090909091%;
    height: 50px;
    float: left;
    border: 0;
    outline: none;
    margin: 0;
    padding: 0;
    background: #a5b3b9;
    color: #fff;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-transform: normal;
    letter-spacing: 1px;
    line-height: 22px;
}

.search #search::-webkit-input-placeholder{
   color: #fff;
}

.search #search:-moz-placeholder{ 
   color: #000;  
}

.search #search::-moz-placeholder{ 
   color: #000;  
}

.search #search:-ms-input-placeholder{  
   color: #000;  
} 

.search #submit_search{
    display: none;
}

.search .advanced_search_icon{
    display: block;
    width: 26px;
    height: 26px;
    float: right;
    background: url('../img/advanced_search_inactive.png') no-repeat;
    margin-top: 37px;

    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.search .advanced_search_icon:hover{
    background: url('../img/advanced_search_hover.png') no-repeat;
}

.search .advanced_search_icon.active{
    background: url('../img/advanced_search_active.png') no-repeat;
}





/*  listings section  */
.listings{
    padding: 25px 0;
}

.listings ul.properties_list{
    list-style: none;
    overflow: hidden;
    column-count: 3;
}

.listings ul.properties_list li{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    /*float: left;*/
    margin: 0 3.636363636363636% 3.636363636363636% 0;
    break-inside: avoid;
}

.listings ul.properties_list li a.property_img_container{
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: block;
}

.listings ul.properties_list li img.property_img{
    object-fit: cover;
    object-position: center;
}

.listings ul.properties_list li .price{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 15px 20px;
    background: #ffffff;
    color: #514d4d;
    font-family: "lato-bold", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;

    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
}


.listings ul.properties_list li:nth-child(3n+0){
    margin-right: 0;
}

.listings ul li .property_details{
    width: 87.64705882352941%;
    padding: 2.941176470588235% 5.882352941176471% 4.117647058823529% 5.882352941176471%;
    border-bottom: 1px solid #f2f1f1;
    border-left: 1px solid #f2f1f1;
    border-right: 1px solid #f2f1f1;

    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.listings ul.properties_list li a {
    position: relative;
    display: inline-block;
}

.listings ul.properties_list li > a.sold, .listings ul.properties_list h1 > a.sold {
    pointer-events: none;
    cursor: default;
}

.listings ul.properties_list li > a.sold:after {
    display: block;
    content: ' ';
    background-image: url('../images/sold.svg');
    background-repeat: no-repeat;
    height: 60%;
    width: 39%;
    position: absolute;
    top: 0;
    right: 0;
}

span.sold {
    color: #e54022;
}

.listings ul li .property_details .property_desc {
    display: block;
    height: 55px;
    overflow: hidden;
}

.listings ul li:hover .property_details{
    border-bottom: 1px solid #95badf;
    border-left: 1px solid #95badf;
    border-right: 1px solid #95badf;
}

.listings ul li .property_details h1{
    color: #666464;
    font-family: "lato-bold", Helvetica, Arial, sans-serif;
    font-size: 18px!important;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 28px;
}

.listings ul li .property_details h1 a{
    text-decoration: none;
    color: #666464;
}

.listings ul li .property_details h2{
    color: #9d9d9d;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 26px;
    font-weight: normal;
}

.listings ul li .property_details .property_size{
    color: #676767;
}

.listings .more_listing{
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0 40px 0;
}

.listings .more_listing_btn{
    display: inline-block;
    text-decoration: none;
    padding: 20px 40px;
    color: white;
    background: #1546cc;
    border: 2px solid #1546cc; 
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.listings .more_listing_btn:hover{
	color: #afcbe6;
    border: 2px solid #bfd9f1;  
}





/* BOAT PAGE CODE BOAT_LIST */

.listings ul.boat_list{
    list-style: none;
    overflow: hidden;
}

.listings ul.boat_list li{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    float: left;
    margin: 0 3.636363636363636% 0% 0;
}

.listings ul li .boat_details{
    width: 100%;
    padding: 2% 1% 2% 1%;

    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.listings ul li:hover .boat_details{
}

.listings ul li .boat_details h1{
    color: #666464;
    font-family: "lato-bold", Helvetica, Arial, sans-serif;
    font-size: 20px!important;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 28px;
}

.listings ul li .boat_details h1 a{
    text-decoration: none;
    color: #666464;
}

.listings ul li .boat_details h2{
    color: #666464;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
	padding-right:1%;
}

.listings ul li .boat_details .property_size{
    color: #676767;
}


/* SPEC BOAT LIST 3 COLUMN START */

.listings ul.spec_list{
    list-style: none;
    overflow: hidden;
}

.listings ul.spec_list li{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    float: left;
    margin: 0 3.636363636363636% 0% 0;
}

.listings ul li .spec_details{
    width: 100%;
    padding: 2% 1% 2% 1%;

    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.listings ul li:hover .spec_details{
}

.listings ul li .spec_details h1{
    color: #666464;
    font-family: "lato-bold", Helvetica, Arial, sans-serif;
    font-size: 20px!important;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 28px;
}

.listings ul li .spec_details h1 a{
    text-decoration: none;
    color: #666464;
}

.listings ul li .spec_details h2{
    color: #9d9d9d;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 26px;
    font-weight: normal;
	padding-right:1%;
}

.listings ul li .spec_details .property_size{
    color: #676767;
}
/* SPEC BOAT LIST 3 COLUMN END */





/* IMAGE GALLERY CODE START */

.rg-image-wrapper{
	position:relative;
	padding:10px 30px;
	background:#222;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	min-height:5px;
}

.rg-image{
	position:relative;
	text-align:center;
	line-height:0px;
}

.rg-image img{
	max-height:100%;
	max-width:100%;
	min-height:75%;
	min-width:75%;
}

.rg-image-nav a{
	position:absolute;
	top:0px;
	left:0px;
	background:#000 url(../images/nav.png) no-repeat -20% 50%;
	width:28px;
	height:100%;
	text-indent:-9000px;
	cursor:pointer;
	opacity:0.3;
	outline:none;
	-moz-border-radius: 10px 0px 0px 10px;
	-webkit-border-radius: 10px 0px 0px 10px;
	border-radius: 10px 0px 0px 10px;
}

.rg-image-nav a.rg-image-nav-next{
	right:0px;
	left:auto;
	background-position:115% 50%;
	-moz-border-radius: 0px 10px 10px 0px;
	-webkit-border-radius: 0px 10px 10px 0px;
	border-radius: 0px 10px 10px 0px;
}

.rg-image-nav a:hover{
	opacity:0.8;
}

.rg-caption {
	text-align:center;
	margin-top:15px;
	position:relative;
}
.rg-caption p{
	font-size:11px;
	letter-spacing:2px;
	font-family: 'Trebuchet MS', 'Myriad Pro', Arial, sans-serif;
	line-height:16px;
	padding:0 15px;
	text-transform:uppercase;
}


.rg-view a:hover{
	opacity:1.0;
}
.rg-view a.rg-view-full{
	background-position:0px 0px;
}
.rg-view a.rg-view-selected{
	background-color:#fff;
	border-color:#fff;
}
.rg-view a.rg-view-thumbs{
	background-position:0px -16px;
}

.rg-loading{
	width:46px;
	height:46px;
	position:absolute;
	top:50%;
	left:50%;
	background:#000 url(/images/ajax-loader.gif) no-repeat center center;
	margin:-23px 0px 0px -23px;
	z-index:100;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	opacity:0.7;
}

/* IMAGE GALLERY CODE END */


/* YOUTUBE VIDEO CODE START */

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 0px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.listings ul.video_list{
    list-style: none;
    overflow: hidden;
}

.listings ul.video_list li{
    display: block;
    width: 48%;
    height: auto;
    position: relative;
    float: left;
    margin: 0 2% 2% 0;
}

/* YOUTUBE VIDEO CODE END */





/*  footer  */
footer{
    padding-top: 70px;
    background: #909090;
}

footer .footer > ul{
    overflow: hidden;
}

footer .footer > ul > li{
    display: block;
    float: left;
    list-style: none;
    margin-right: 60px;
}

footer .footer > ul > li:last-child{
    margin-right: 0;
}


footer .footer > ul > li.links{
    width: 197px;
}

footer ul li.links > ul > li{
    display: block;
    width: 100%;
    list-style: none;
    margin-bottom: 27px;
}

footer ul li.links > ul > li:last-child{
    margin-bottom: 0;
}

footer .footer > ul > li.links li a{
    text-decoration: none;
    display: block;
    color: #fff;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .5px;
    text-align: left;
}

footer .footer > ul > li.about{
    width: 327px;
}

footer ul li.about p{
    color: #fff;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .5px;
    line-height: 37px;
    margin-top: -9px;
}

footer ul li.about > ul > li{
    display: inline-block;
    margin-right: 20px;
    margin-top: 30px;
}

footer ul li.about > ul > li:last-child{
    margin-right: 0;
}

footer ul li.about > ul > li a{
    background: url('../img/social_media.png') no-repeat;
}

footer ul li.about > ul > li a.facebook{
    display: block;
    width: 10px;
    height: 18px;
    background-position: 0 0;
}
footer ul li.about > ul > li a.twitter{
    display: block;
    width: 19px;
    height: 18px;
    background-position: -11px 0px;
}
footer ul li.about > ul > li a.google{
    display: block;
    width: 10px;
    height: 18px;
    background-position: -31px 0px;
}
footer ul li.about > ul > li a.skype{
    display: block;
    width: 17px;
    height: 18px;
    background-position: -43px 0px;
}

footer .copyrights{
    display: block;
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    color: #fff;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1.0px;
    border-top: 1px solid #707070;
}

footer .copyrights a.ph_link{
    font-family: "lato-bold", Helvetica, Arial, sans-serif;
    font-weight: bold;
    text-decoration: none;
}









/*  responsive css */


@media (max-width:1500px){
    .hero{
        height: 600px;
    }
}


@media (max-width: 1150px){
	.rg-image-wrapper{
		height:450px;
		overflow:hidden;
	}
	
    .hero{
        height: 500px;
    }
	
    .wrapper{
        padding: 0 40px;
        max-width: 1020px;
    }
    .search .advanced_search .arrow{
        top: -8px;
        right: 46px;
    }

    .search .advanced_search #check_in_date,
    .search .advanced_search #check_out_date,
    .search .advanced_search #min_price,
    .search .advanced_search #max_price{
        width: 46.27272727272727%;
        padding: 0 1.818181818181818%;
    }

    .search .advanced_search #check_in_date,
    .search .advanced_search #check_out_date{
        background: url('../img/calendar_icon.png') no-repeat;
        background-position: 95.08840864440079% 50%;
    }

    .search .advanced_search #keywords{
        width: 96.36363636363636%;
        padding: 0 1.818181818181818%;
    }
	
	.hero .caption{
    width: 100%;
    position: absolute;
    text-align: center;
    top: 33%;
    margin-top: -25px;
    z-index: 10;
	}

	.hero .caption h2{
		color: #fff;
		font-family: "Monotype_Corsiva";
		font-size: 40px;
		font-weight: lighter;
		margin: 0;
		position: relative;
		display: block;
	}

	.hero .caption h3{
		color: #fff;
		font-family: "Monotype_Corsiva";
		font-size: 12px;
		margin: 10px 0 0 25px;
		left: 1px;
	}
	
	.listings ul li .property_details h1{
    font-size: 14px!important;
	}

    .listings ul.properties_list li a.property_img_container {
        height: 21vw;
    }
	
	.listings ul li .property_details .property_size{
	font-size:11px;
	}
	
    footer .footer > ul > li{
        margin-right: 5.454545454545455%;
    }

    footer .footer > ul > li.links{
        width: 17.90909090909091%;
    }

    footer .footer > ul > li.about{
        width: 29.72727272727273%;
    }
}


@media (max-width:800px){
	.rg-image-wrapper{
		height:300px;
		overflow:hidden;
	}
	
    .hero{
        height: 400px;
    }

    .hero .caption{
        width: 92.72727272727273%;
        padding: 0 3.636363636363636%; 
    }

    .hero .caption h3{
        margin: 0;
        left: 0;
    }

    header a.hamburger{
        display: block;
    }

    header nav{
        position: absolute;
        display: none;
        width: 92.72727272727273%;
        top: 95px;
        left: 3.636363636363636%;
        float: none;
        z-index: 20;
        overflow: hidden;
        background: #fff;
        border-top: 5px solid #bfd9f2;
    }

    header nav.active{
        display: block;
    }

    header nav .login_btn{
        float: none;
        display: inline-block;
        width: 100%;
        border: 0;
        margin: 0;
        padding: 20px 0;
        text-align: center;
        background: #f2f3f3;
    }

    header nav ul{
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    header nav ul li{
        display: block;
        width: 100%;
        float: none;
        margin-left: 0;
    }

    header nav ul li a{
        display: block;
        padding: 25px 0;
        border-bottom: 1px solid #f2f3f3;

        transition: background .2s linear;
        -webkit-transition: background .2s linear;
        -moz-transition: background .2s linear;
        -o-transition: background .2s linear;
    }

    header nav ul li a:active{
        background: #f2f3f3;
    }

    header nav ul li a,
    header nav .login_btn{
        color: #1c3655;
    }

    header nav .login_btn:hover{
        background: #eaebeb;
    }

    header nav ul li:last-child{
        border: 0;
    }

    .listings ul.properties_list {
        column-count: 2;
    }

    .listings ul.properties_list li{
        /*width: 46.36363636363636%;*/
        margin: 0 7.272727272727273% 7.272727272727273% 0;
    }

    .listings ul.properties_list li a.property_img_container {
        height: 25vw;
    }

    .listings ul.properties_list li > a.sold::after {
        width: 33%;
    }

    /*.listings ul.properties_list li:nth-child(3n+0){*/
    /*    margin: 0 7.272727272727273% 7.272727272727273% 0;*/
    /*}*/

    /*.listings ul.properties_list li:nth-child(2n+0){*/
    /*    margin-right: 0;*/
    /*}*/

	.listings ul.properties_list li .price{
		padding: 12px 17px;
		font-size: 14px;
	}
	
	.listings ul li .property_details h1{
    font-size: 13px!important;
	}
	
	.listings ul li .property_details h2{
    color: #9d9d9d;
    font-family: "lato-regular", Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 26px;
    font-weight: normal;
	}
	
	.listings ul li .property_details .property_size{
	font-size:11px;
	}

	footer .footer > ul > li.links li a{
	font-size:13px;
    text-align: center;
	}
	
	footer .footer > ul > li.about p{
	font-size:13px;
    text-align: center;
	}
	
    footer .footer > ul > li.links {
        float: none;
        width: 100%!important;
        margin-right: 0;
        margin-bottom: 40px;
        padding-bottom: 40px;
		font-size: 11px;
		text-align:center;
    }
	
	    footer .footer > ul > li.about{
        float: none;
        width: 100%!important;
        margin-right: 0;
        margin-bottom: 0px;
        padding-bottom: 0px;
		font-size: 11px;
		text-align:center;
    }

    footer .footer > ul > li:last-child{
        padding-bottom: 0;
    }

    footer .footer > ul > li.links{
        border-bottom: 1px solid #707070;
		text-align:center;
    }
	
	footer .copyrights{
    font-size: 11px;
	}
}



@media (max-width:500px){
	.rg-image-wrapper{
		height:150px;
		overflow:hidden;
	}

	.hero{
		width: 100%;
		height: 400px;
		position: relative;
		background: url('../img/hero400.jpg') no-repeat bottom center;
		background-size: cover;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
	}
	
	.hero .caption{
    margin-top: -5px;
	}

    .hero .caption h2{
        font-size: 25px;
    }

    .hero .caption h3{
        font-size: 12px;
		margin-top:10px;
    }

    .search #search{
        width: 83%;
    }

    .listings ul.properties_list {
        column-count: 1;
    }

    .listings ul.properties_list li{
        width: 100%;
        margin-bottom: 60px!important;
    }

    .listings ul.properties_list li a.property_img_container {
        height: 50vw;
    }

    .listings ul.properties_list li > a.sold::after {
        width: 35%;
    }

    .listings ul.boat_list li {
        display: block;
        width: 100%;
        height: auto;
        position: relative;
        float: left;
        margin: 0 3.636363636363636% 0% 0;
    }

    .listings ul.properties_list li .price{
        padding: 12px 17px;
        font-size: 14px;

    }
	
    .listings ul.properties_list li:last-child{
        margin-bottom: 0!important;
    }


    /*.listings ul.properties_list li:nth-child(3n+0),*/
    /*.listings ul.properties_list li:nth-child(2n+0){*/
    /*    margin:0;*/
    /*}*/

    .listings .more_listing_btn{
        display: block;
        width: 100%; 
        padding-left: 0!important;
        padding-right: 0!important;
    }

    footer .footer > ul > li.links {
        float: none;
        width: 100%!important;
        margin-right: 0;
        margin-bottom: 40px;
        padding-bottom: 40px; 
    }
	
	footer .footer > ul > li.about{
		float: none;
		width: 100%!important;
		margin-right: 0;
		margin-bottom: 0px;
		padding-bottom: 0px;
    }

    footer .footer > ul > li:last-child{
        padding-bottom: 0;
    }

    footer .footer > ul > li.links{
        border-bottom: 1px solid #707070;;
    }
}