/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */


/* Font Face Settings
==================================================
*/

@font-face {
font-family: Brandon;
src: url('fonts/Brandon_reg.otf'); 
}

@font-face {
font-family: Brandon_bold;
src: url('fonts/Brandon_bld.otf'); 
}


/* #Base 960 Grid
================================================== */

    .container                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; }
    .container .column,
    .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column,
    .container .one.columns                     { width: 40px;  }
    .container .two.columns                     { width: 100px; }
    .container .three.columns                   { width: 160px; }
    .container .four.columns                    { width: 220px; }
    .container .five.columns                    { width: 280px; }
    .container .six.columns                     { width: 340px; }
    .container .seven.columns                   { width: 400px; }
    .container .eight.columns                   { width: 460px; }
    .container .nine.columns                    { width: 520px; }
    .container .ten.columns                     { width: 580px; }
    .container .eleven.columns                  { width: 640px; }
    .container .twelve.columns                  { width: 730px; }
    .container .thirteen.columns                { width: 760px; }
    .container .fourteen.columns                { width: 820px; }
    .container .fifteen.columns                 { width: 880px; }
    .container .sixteen.columns                 { width: 940px; }

    .container .half.column                     { width: 460px; }

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }

    .container .one-five                        { width: 172px; }


    /* Offsets */
    .container .offset-by-one                   { padding-left: 60px;  }
    .container .offset-by-two                   { padding-left: 120px; }
    .container .offset-by-three                 { padding-left: 180px; }
    .container .offset-by-four                  { padding-left: 240px; }
    .container .offset-by-five                  { padding-left: 300px; }
    .container .offset-by-six                   { padding-left: 360px; }
    .container .offset-by-seven                 { padding-left: 420px; }
    .container .offset-by-eight                 { padding-left: 480px; }
    .container .offset-by-nine                  { padding-left: 540px; }
    .container .offset-by-ten                   { padding-left: 600px; }
    .container .offset-by-eleven                { padding-left: 660px; }
    .container .offset-by-twelve                { padding-left: 720px; }
    .container .offset-by-thirteen              { padding-left: 780px; }
    .container .offset-by-fourteen              { padding-left: 840px; }
    .container .offset-by-fifteen               { padding-left: 900px; }


    #container{
        width:100%;
        font-family: 'Source Sans Pro', sans-serif;
        background-color: transparent;
    }

    #header{
        width:100%;
        background-color: #000;
        height: 120px;
        position: relative;
        z-index: 100;
        padding-top:0px;
        color: #FFF;
    }

    #navigation {
        float: right;
    }

    #logo{
        position: relative;
        z-index: 100;
        text-align: center;
        top: 0;
    }

    #logo img {
        max-width: 185px;
        width: 100%;
    }

    #nav_soc{
        margin-top:5px;
    }

    #menu {
        float: right !important;
    }

    #menu ul{
        padding:0px;
        margin:0px;
        position: relative;
        z-index: 200;
        text-align: left;
        margin: 0;
        padding: 7px 0 0 23px;
        list-style: none;
        float: left;
        width:100%;
/*
        display: flex;
        justify-content: space-around;
*/   
    }

    #menu ul li {
        display: inline-block;
        margin-right: 10px;
        margin-left: 10px;
        position: relative;
        font-size: 16px;
        margin-bottom:0px;
        cursor: pointer;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
        cursor: pointer;
        text-transform: uppercase;
    }

    #menu ul li:last-child {
    	margin-right: 0;
    }


    #menu ul li:last-child a{
    	padding-right: 0;
    }

    #menu ul li a{
        font-weight: 600;
        color: #FFF;
        text-decoration: none;
        padding: 18px 5px;
        display: block;
        cursor: pointer;
    }

    #menu ul li:hover {
    }

    #menu ul li a:hover{
        color: #ddd;
    }

    #menu ul li ul {
        padding: 0;
        position: absolute;
        top: 53px;
        left: 0;
        width: 200px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        display: none;
        opacity: 0;
        visibility: hidden;
        border: #ddd solid 1px;
        -webkit-transiton: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        -ms-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        -transition: opacity 0.2s;
    }

    #menu ul li ul:after, #menu ul li ul:before { 
        bottom: 100%; 
        left: 25%; 
        border: solid transparent; 
        content: " "; 
        height: 0; 
        width: 0; 
        position: absolute; 
        pointer-events: none; 
    } 
    
    #menu ul li ul:after { 
        border-color: rgba(244, 244, 244, 0); 
        border-bottom-color: #fff; 
        border-width: 10px; 
        margin-left: -10px; 
    }

    #menu ul li ul:before { 
        border-color: rgba(204, 204, 204, 0); 
        border-bottom-color: #ddd; 
        border-width: 11px; 
        margin-left: -11px; 
    }
    
    #menu ul li ul li { 
        background: #FFF;
        display: block; 
        color: #fff;
        margin-left:0px;
        cursor: pointer;
    }

    #menu ul li ul li:hover { 
        background: #FFF; 
        padding-left: 5px;
        list-style: circle;
    }

    #menu ul li ul li a{ 
        font-size: 14px;
        padding:18px 15px;
    }    

    #menu ul li:hover ul {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    #info{
        float: right;
        text-align: right;
        margin-top:20px;
    }

    .phone{
        font-size: 19px;
        position: relative;
        bottom: 6px;
        text-decoration: none;
        padding-right:15px;
    }

    #icons{
        text-align: center;
        margin-top: 15px;
    }
    #icons div{
        background-color: #f4f4f4;
        height: 60px;
        padding-top: 47px;
    }

    #feature-map{
        width: 100%;
        height: 500px;
        margin-bottom: 40px;
    }
    #showmap{
        height: 500px;
    }

    #search{
        margin:54px 20px 20px 20%;
        background-color: rgba(255,255,255,0.8);
        padding: 10px;
    }
    .search-row{
        margin-bottom:10px;
    }

    .search-row input[type=radio] + label, input[type=checkbox] + label{
        padding:7px 42px !important;
    }

    #wrapper{
    }

    #banner{
        width: 100%;
        height: calc(100vh - 100px);
        background-size:cover;
        background-position: top center;
        background-attachment: fixed;
        background-repeat: no-repeat;
    }

    #content{
    	background-color: rgba(255,255,255, 0.7);
        padding: 20px 40px 40px;
        text-align: justify;
        font-family: 'Source Sans Pro', sans-serif;
        font-size:17px;
        line-height: 30px;        
    }

    #content h1{
        text-align: center;
        font-weight: 100;
        text-transform: uppercase;
    }

    #content h2{
        text-align: center;
        font-weight: bolder;
    }

    #content h3{
        text-align: center;
    }

    #content .blog p img{
        max-width: 100%;
    }

    #content b{
        font-weight:bold;
    }

    #content ul{
    	margin-left: 25px;
    }

    #content li{
    	padding-left:10px;
    	list-style: disc;
    	line-height: 22px;
    }

    #content div {
        font-family: 'Source Sans Pro', sans-serif;
        font-size:17px;
    }

    #content p{
        font-family: 'Source Sans Pro', sans-serif;
        font-size:17px;
        line-height: 21px;
    }

    #content ul, #content ol{
        font-family: 'Source Sans Pro', sans-serif;
        font-size:17px;        
    }

    #content table{
        font-family: 'Source Sans Pro', sans-serif;
        font-size:17px;        
    }

    #content .service_list{
        background-color:#eaeaea;
        padding:20px;
        margin-bottom:20px;
        border-radius: 5px;
    }

    .article{
        margin-left:0px !important;
    }

    .article li{
        padding:0px !important;
    }

    .article li ul li{
        padding:0px !important;
        min-height: auto;
    }

    .hr {  
        text-align: center; 
    }

    .hr img { 
        position: relative; 
        top: -20px; 
    }

    .footer-top{
        height:105px;
        width: 100%;
        text-align: center;
    }

    #footer{
        color: #FFF;
        width: 100%;
        background-color: #000;
        /*background-image:url("../images/footer_bg.png");*/
        background-position: top center;
        background-attachment: fixed;
        background-size:cover;
        /*height:100%; */
        text-align: center;
        padding:20px 0px;
    }

    #footer a{
        color:#FFF !important;
        text-decoration: none;
    }

    #footer a:hover{
        color:#fff;
    }
    #footer .btn{
        color:#fff !important;
    }

    #footer-content{
        color:#FFF;
    }

    #footer-content h3{
        color:#fff;
    }

    #social{
        float:left;
        width:100%;
        margin-top: 20px;      
    }
    #social img{
        padding: 2px;
    }

    #footer-content h2{
        color:#999;
        text-align: center;
    }    

    #mobile-header {
        display: none;
    }

    #mobile-header span {
        display: block;
        width: 19px;
        height: 3px;
        margin: 4px 0;
        background: rgb(255,255,255);
        z-index: 99;
    }

    .sticky {
        position: fixed !important;
        top: 0 !important;
        z-index: 1000 !important;
        box-shadow: 0 -1px 14px 0 rgba(0, 0, 0, 0.1), 0 1px 0 0 rgba(0, 0, 0, 0.1);
    }

    #map{
        float:left;
    }

    .grid {
        width: 300px;      
    }

    .grid h3{
    }

    .grid p{
        padding: 10px;
    }
    .featured{
        height:220px;
        font-size: 20px;
        margin-bottom:20px !important;
        background-color: #eaeaea;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 0 0 rgba(0, 0, 0, 0.1);
    }
    .featured img{
        max-width: 100%;
    }    
    .featured span{
        float:left;
        width: 87%;
        padding: 20px;
        vertical-align: middle;
    }
    .featured a.btn{
        float:right;
    }

    .team-container {
        margin-bottom: 20px;
        border-bottom: #ccc solid 1px;
        padding-bottom: 20px;
    }

    .team-info{
        position: relative;
        text-align: left;
        top: 22px;
    }

    .feat-info{
        text-align: left;
    }

    .service-item{
        width:100%; 
        text-align:left;
    }

    .service-item li{
        padding-left: 95px;
        font-size:20px;
    }

    #tooltip
    {
        text-align: center;
        color: #fff;
        background: #111;
        position: absolute;
        z-index: 100;
        padding: 15px;
    }
 
    #tooltip:after /* triangle decoration */
    {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #111;
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        margin-left: -10px;
    }
 
    #tooltip.top:after
    {
        border-top-color: transparent;
        border-bottom: 10px solid #111;
        top: -20px;
        bottom: auto;
    }

    #tooltip.left:after
    {
        left: 10px;
        margin: 0;
    }

    #tooltip.right:after
    {
        right: 10px;
        left: auto;
        margin: 0;
    }

    .team_photo{
        float:left;
        margin-right:20px;
    }

    .team_name{
        text-align: left !important;
    }

    .team_bio{
    }

    .team_portfolio{
        float: right;
    }

    .listing-gallery img{
        min-width: 100%;
    }

    .listing-photo img{
        min-width: 100%;
    }

    #listmap{
        height:450px;
        width: 645px;
    }

    .view-map{
        position: relative;
        text-align: center;
        top:-121px;
        background-color: #000;
        padding:11px;
        width:50px;
        float: right;
        color:#FFF;
    }

    .view-map a{
        color: #FFF;
        text-decoration: none;
    }

    .view-map a:hover{
        color: #DDD;
        text-decoration: none;
    }     

    #gallery{
        margin-left:0px !important; 
    }

    #gallery li{
        list-style: none !important;
        padding-left: 0px !important;
    }

    .list-header{
        border-bottom:#ddd solid 1px;
        font-size: 19px;
        text-transform: uppercase;

    }
    .listing-info{
        border: 1px solid #ddd;
        margin: 10px 0px 10px 0px;
        padding: 13px;
        background: #fafafa;
        background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
        background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);

        -moz-border-radius:3px;
        -webkit-border-radius:3px;
        border-radius:3px;

        -moz-box-shadow: 0 1px 2px #d1d1d1;
        -webkit-box-shadow: 0 1px 2px #d1d1d1;
        box-shadow: 0 1px 2px #d1d1d1;

    }

    .listing-desc{
        background: #fafafa;
        background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
        background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
        border: 1px solid #ddd;
        margin-top:-4px;
        position: relative;
    }

    .listing-desc table td{
        padding:10px;
    }

    .listing-desc h3{
        border-bottom:#ddd solid 1px;
        margin-bottom: 0px;
    }    

    .listing-desc a{
        width: 100%;
    }   

    .listing-info span{
        font-size:18px;
    }

    .align-left{
        text-align: left !important;
    }

    #youtube{
       
    }

    .refine_search{
        padding:0 23px !important;
    }

    .listing_search{
        width: 100%;
        float:left;
        border:#ddd solid 1px;
        background-color:#f4f4f4;
    }

    .listing_search h3{
        font-weight:bold;
    }

    #search_loading{
        width: 100%;
        text-align: center;
        padding:30px 0px;
        float: left;
    }

    #featured-listing{
    }

    #featured-listing ul{
        float:left;
    }
    #featured-listing ul li{
       width: 100%;
       float:left;
    }
    #featured-listing .button{
        width: 100%;
    }

    /* Vertigo Style Settings */

    .vertigo{
        padding: 0;
        margin: 0;
        height:380px;
        overflow: hidden;
    }

    .vertigo li{
        list-style: none;
        border-bottom:#ddd solid 1px;
        padding: 15px 0px;
        display: inline-block;
        position: relative;
        margin-bottom:0px;
    }


    .vertigo li img{
        float:left;
        margin-right:10px;    
    }

    .vertigo li p{
        margin:0px;
        text-align: justify;  
    }

    .btn-pre, .btn-next{
        text-decoration: none;
        color:#FFF;
        font-size:12px;
        padding: 3px;
    }

    /* End Vertigo Style Settings */

    #team .button{
        margin:18px 0px;
    }

    .team-name{
        padding:5px 0px;
    }

    .team-tel{
        padding:5px 0px;
    }

    .hide{
        display: none;
    }

    .youtubeVid{
        height:250px;
    }

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {

        .container                                  { width: 768px; }
        .container .column,
        .container .columns                         { margin-left: 10px; margin-right: 10px;  }
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }
        .alpha.omega                                { margin-left: 0; margin-right: 0; }

        .container .one.column,
        .container .one.columns                     { width: 28px; }
        .container .two.columns                     { width: 76px; }
        .container .three.columns                   { width: 124px; }
        .container .four.columns                    { width: 172px; }
        .container .five.columns                    { width: 220px; }
        .container .six.columns                     { width: 268px; }
        .container .seven.columns                   { width: 316px; }
        .container .eight.columns                   { width: 364px; }
        .container .nine.columns                    { width: 412px; }
        .container .ten.columns                     { width: 460px; }
        .container .eleven.columns                  { width: 508px; }
        .container .twelve.columns                  { width: 556px; }
        .container .thirteen.columns                { width: 604px; }
        .container .fourteen.columns                { width: 652px; }
        .container .fifteen.columns                 { width: 700px; }
        .container .sixteen.columns                 { width: 708px; }

        .container .half.column                     { width: 340px; }

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }
        .container .one-five                        { width: 133px; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 48px; }
        .container .offset-by-two                   { padding-left: 96px; }
        .container .offset-by-three                 { padding-left: 144px; }
        .container .offset-by-four                  { padding-left: 192px; }
        .container .offset-by-five                  { padding-left: 240px; }
        .container .offset-by-six                   { padding-left: 288px; }
        .container .offset-by-seven                 { padding-left: 336px; }
        .container .offset-by-eight                 { padding-left: 384px; }
        .container .offset-by-nine                  { padding-left: 432px; }
        .container .offset-by-ten                   { padding-left: 480px; }
        .container .offset-by-eleven                { padding-left: 528px; }
        .container .offset-by-twelve                { padding-left: 576px; }
        .container .offset-by-thirteen              { padding-left: 624px; }
        .container .offset-by-fourteen              { padding-left: 672px; }
        .container .offset-by-fifteen               { padding-left: 720px; }

        #content{
            padding: 20px 0px;
            text-align: justify;
            min-height: 300px;
        }
        #content p{
            padding:0px;
            line-height: 24px;
        }
        #nav_soc{
            float:right !important;
        }

        #search{
            margin: 60px 20px 20px 37px;
            width:280px !important;
        }

        .search-row{
            width: 280px !important;
        }

        #mobile-header {
            /*display: block;*/
            float:right;
            margin:9px;
            position: relative;
            z-index: 1000;
        }
        #mobile-header a{
            color:#fff;
            text-decoration: none;
        }
        #info {
            margin-right: 10px;
        }
        #menu {
        	width: 556px !important;
        }

        #menu ul{
            padding: 7px 0 0 0;
        }

	    #menu ul li:last-child {
	    	margin-right: 10px;
	    }
	    #menu ul li:last-child a{
	    	padding-right: 5px;
	    }
        .one-third img{
		    max-width:100% !important;
        }
        .footer-top{
            height: 70px;
        }
        .table th{
            padding: 21px 18px !important;
        }

        .listing-gallery img{
            max-width: 100%;
        }
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
        .container { width: 300px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .half.column,
        .container .one-third.column,
        .container .two-thirds.column,
        .container .one-five  { width: 300px; }

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { padding-left: 0; }
        
        #logo {
            text-align: left;
        }

        #logo img{
            /*max-width: 100%;*/
        }

        #nav_soc {
            display: none;
        }

        .button-primary{
            width: 100%;
        }
        .button{
            width: 100%;
        }
        #header{
            padding-top: 0;
        }
        #header #wrapper {
            height: 130px;
        }
        .home_search{
            margin-bottom: 0px;
        }
        #nav_soc{
            height:35px;
            margin-top:23px;
        }
        #search{
            margin: 0px;
            padding: 0 0 5px !important;
        }
        #search h2{
            text-align: center;
        }
        .search-row input[type=radio] + label, input[type=checkbox] + label{
            padding:7px 44px !important;
        }
        #banner{
            height:275px;
        }
        #menu{
            position: relative;
            top:-88px;
            z-index: 1000;
        }
        #content{
            padding: 10px;
            text-align: justify;
            min-height: auto;
        }
        #content h1{
        	font-size: 26px;
        }
        #content p img{
            max-width: 100%;
        }       
        #mobile-header {
            display: block;
            float:right;
            margin:12px;
            position: relative;
            z-index: 1000;
        }
        #mobile-header a{
            color:#fff;
            text-decoration: none;
        }
        #navigation{
            display: none;
        }
        .footer-top{
            height:30px;
        }
        #icons div {
            background-color: #f4f4f4;
            height: 24px;
            padding-top: 12px;
            border-top:#ddd solid 1px;
            border-bottom:#ddd solid 1px;
            margin-top: 5px;
        }
        #info{
            margin-top:0px;
            text-align: center;
        }
        #header{
            /*height: 130px;*/
        }

        .vertigo li img{
            float:nonel;
        }
        
        .team_photo{
            width: 100%;
        }

        .team_name{
            text-align: center !important;
            margin:5px 0px;
            float:left;
        }

        .team_portfolio{
            float: left;
            width: 100%;
            margin:10px 0px;
        }

        .ls-slide-wrapper{
            /*height: 215px;*/
        }

        .no{
            display: none;
        }

        #featured-listing{
            margin-top:40px;
        }

        #feature-map{
            height: 250px;
        }

        #showmap{ 
            height:250px;
        }

        .listing_search{
            border:none !important;
            background-color:#fff !important;
        }

        .button, button, input[type="submit"], input[type="reset"], input[type="button"]{
            padding:0px 10px !important;
        }            
    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .container { width: 420px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .half.column,
        .container .one-third.column,
        .container .two-thirds.column { width: 420px; }
        
        #banner{
            height:200px;
        }
        #menu{
            position: relative;
            top:-130px;
            z-index: 1000;
        }
        #content{
            padding: 5px;
            text-align: justify;
            min-height: auto;
        }
        #mobile-header {
            display: block;
            float:right;
            margin:12px;
            position: relative;
            z-index: 1000;
            top:45px;
        }
        #mobile-header a{
            color:#fff;
            text-decoration: none;
        }
        #navigation{
            display: none;
        }
        
        .img-left{
          float:left;
          margin-right:15px;
        }

        .no{
            display: none;
        }   

        .listing_search{
            border:none !important;
            background-color:#fff !important;
        }  
    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }
