/*=============================
    General
==============================*/

html, body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    z-index: -1;
}

body {
    font-family: 'proxima-nova', sans-serif;
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
}


/*=============================
    Headings & Text
==============================*/

h1, h2, h3, h4, h5, h6, body, p, a {
    font-family: 'proxima-nova', sans-serif !important;
    }


        em {
            font-style: italic;
        }

        p {
            font-size: 14px;
            text-align: left;
            line-height: 24px;
        }



        a, article h2 a /* blog post title */ {
            text-decoration: none;
            color: #000;

             -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

        a:hover {
            color: #ccc;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }


        a:focus, input:focus, textarea:focus {
            outline:none;
        }

        p a, article a {
            text-decoration: underline;
            color: #000;
        }

        #footer-container a {
            color: #fff;
            text-decoration: underline;
        }

        p a:hover, li a:hover, #footer-container a:hover {
            color: #ccc;
        }

        .content-section p, article p { /* covers basic paragraphs in main content */
            margin-bottom: 20px;
        }

        .content-section ul  {
            list-style: disc;
            margin: -20px 0 20px 35px;
        }

        article ul {
            list-style: disc;
            margin: 20px 0 20px 35px;
        }

        .content-section li, article li {
            list-style: disc;
            padding-left: 10px;
            font-size: 14px;
            text-align: left;
            line-height: 24px;
        }


h1, h2, h3, h4, h5, h6 {
        }

        h1 {
            display: inline-block;
            padding: 14px 32px;
            background: #fff;
            text-align: center;
            margin: 65px 0;
            border: 1px solid #000;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.5em;
            line-height: 1em;
        }


                h1:before {
                    content: "";
                    width: 100%;
                    border-top: 1px solid #000;
                    height: 1px;
                    left: 0;
                    margin-top: 10px;
                    display: block;
                    position: absolute;
                    background: #fff;
                    z-index: -1;
                    text-align: center;
                }

        h2 {
            font-weight: 700;
            font-size: 1.25em;
            line-height: 1.3em;
            margin-bottom: 6px;
            text-transform: uppercase;
            text-align: left;
        }



        h3 {
            font-size: .9375em;
            text-transform: uppercase;
            line-height: 1.3em;
            margin-bottom: 6px;
            font-weight: 400;
            letter-spacing: 1.5px;
        }

        h4 {
            font-weight: 700;
            font-size: 1em;
            line-height: 1.3em;
            margin-bottom: 6px;
            text-transform: uppercase;
            text-align: left;

        }

        h5 {
            font-weight: 700;
            font-size: .8125em;
            line-height: 1.3em;
            margin-bottom: 6px;
            text-transform: uppercase;
            text-align: left;
        }


@media all and (max-width: 600px) {
    h1 {
        margin: 35px 0;
    }
}


/*=============================
    Layout
==============================*/

.main-wrapper {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    z-index: -1;
    position: relative;
    }


        .content-section {
            text-align: center;
            overflow:visible;

                }

                .content-section img {
                    width: 100%;
                    height: auto;
                }

        .container {
       
        }

                @media all and (max-width: 600px) {
                    .container {
                 
                    }
                }


        #main-wrapper-inner {
            height: auto;
            background-color: #fff;
            z-index: -1;
            overflow: auto;
            padding: 70px;

        }

   

                #contact, #wedding-members-title {
                    margin-top: -50px; /* reverses #main-wrapper-inner padding to avoid weird negative space */
                }


        .title { /* keeps title on its own line */
            width: 100%;
        }

        .col {
            float:left;
            }

                .col1 {
                    margin: 0 8.5%;
                    float:none;

                }

                .col2 {
                	width: 37%;
                    /* width: 46%; */
                    margin-left: 8%;
                }

                .col3 {
                    width: 32%;
                    margin-left: 2%;
                }

                /* removes margin:left from first column */
                .first {
                    margin-left: 0;
                }

                .col1of2 {
                	padding-left: 8.5%;
                }

                .col2of2 {
                	padding-right: 8.5%;
                }

        /*
        title-id (process) = class of .content-section with title in it /
        the first .content-section is the title, the second is the text /
        .title-id (selects first content-section) + .content-section (selects sibling of first .content-section, which is the second .content-section, where the .col is targeted)
        */
        .process + .content-section .col1 { 
            margin: 0 15%; /* creates wider margins for centered text */
        }

        @media all and (max-width: 800px) {

            .col3 {
                margin-left: 10%;
                margin-right: 10%;
                width: 80%;
            }

            .col3 p, .col3 h2 {
                text-align: center;
            }

            .col3 h2 {
                margin-top: 40px;
            }

            .col3 h2:first-child {
                margin-top: 20px;
            }
        }

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

            .col1, .col2 {
                margin-left: 0;
                margin-right: 0;
                padding-left: 0;
                padding-right: 0;
            }

            .col2 {
                width: 100%;
            }
        }


/*=============================
    Forms
==============================*/

input[type='submit'], input[type='text'], input[type='number'], textarea {
        font-family: 'proxima-nova', sans-serif !important;
        width: 100%;
         }


        input[type='submit'] {
            background-color: #2b2b2b;
            color: #ffffff;
            border: 1px solid #2b2b2b;
            display: inline-block;
            height: 34px;
            padding: 4px;
            line-height: 1em;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: .75em;


            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease; 
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

        input[type='submit']:hover {
            background-color: #ccc;
            border-color: #ccc;

            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

        input[type=text], input[type='tel'], input[type='number'], input[type='email'], textarea {
            height: 24px;
            padding: 4px;
            display: inline-block;
            border: 1px solid #2b2b2b;
            color: #000;
            font-size: .9em;
            width: 100%;

        }

        textarea {
            height: 100px;
        }


/*=============================
    Header
==============================*/

header {
    text-align: center;
    max-width: 930px;
    padding: 30px 7% 45px;
    margin: 0 auto;
}

#logo {
    width: 230px;
    height: auto;
    text-align: center;
    margin: 40px auto 70px;
}

#logo img {
    max-width: 230px;
}


/*=============================
    Navigation
==============================*/

#main-nav {
    text-align: center;
    position: relative;
    margin: 20px auto 0;
    display: block;
    width: 100%;
    border: 1px solid #000;
    z-index: 999;

    }

        #main-nav a {
            font-weight: 600;
            color: #000;
            letter-spacing: 3px;
            font-size: .8125em;
            text-transform: uppercase;
            text-align: center;
            padding: 12px 30px;
            line-height: 1.5em;

            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

                @media all and (max-width: 1100px) { /* scoots nav closer together */
                    #main-nav a {
                        padding: 12px 27px;
                    }
                }

                @media all and (max-width: 1000px) {
                    #main-nav a {
                        padding: 12px 23px;
                    }
                }

                @media all and (max-width: 940px) {
                    #main-nav a {
                        padding: 12px 19px;
                    }
                }

        #main-nav a:hover {
            color: #959595;

            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

#main-nav ul {}

        #main-nav li {
            display: inline-block;
            height: auto; /* this should be the same as your #main-nav height */
            position: relative; /* this is needed in order to position sub menus */
        }

                #main-nav li a {
                    display: block;
                    height: auto;
                }

        #main-nav ul li ul {
            border: 1px solid #fff;
            border-top: none;
            background-color: #2b2b2b;
            padding: 0;
            top: 43px;
            position: absolute;
            width: 150px;

            /* centers submenus under parent li */
            left: 50%; /*bumps to middle*/
            margin-left: -75px; /* width:150px in half is 75px */

            /* hides submenu */
            visibility:hidden;
            opacity:0;

            -webkit-transition: all .5s ease;
            -moz-transition: all .5s ease;
            -ms-transition: all .5s ease;
            -o-transition: all .5s ease;
            transition: all .5s ease;
        }

                #main-nav ul li:hover ul {
                    /* reveals submenu*/
                    visibility:visible;
                    opacity:1;

                    -webkit-transition: all .5s ease;
                    -moz-transition: all .5s ease;
                    -ms-transition: all .5s ease;
                    -o-transition: all .5s ease;
                    transition: all .5s ease;
                }

        #main-nav ul li ul li {
            border-top: 1px solid #fff;
            width: 150px;

        }

                #main-nav ul li ul li a {
                    font-weight: normal; /* overrides "#main-nav a" */
                    line-height: 2em;

                    /* fills 150px width of ul and li 120px + padding 15px = 150px */
                    width: 120px;
                    padding: 10px 15px; /* overrides "#main-nav a" */
                }

#mobile-nav {
    text-align: center;
    position: relative;
    margin: 20px auto 0;
    display: block;
    width: 100%;
    z-index: 999;
    }   

        #mobile-nav nav {
            border: 0;
            border-right: 1px solid white;
            background-color: #2b2b2b;
        }


        #mobile-nav a.ubermenu-responsive-toggle {
            border: 1px solid #fff;
            font-size: .8125em;
        }

        #mobile-nav a {
            font-weight: 600;
            color: #fff;
            letter-spacing: 3px;
            font-size: 1em;
            text-transform: uppercase;
            text-align: center;
            padding: 12px 30px;
            line-height: 1.5em;
            background-color: #2b2b2b;

            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

        #mobile-nav a:hover {
            color: #ccc;
            background-color: #2b2b2b;
        }

        #mobile-nav nav ul li {
            background-color: #2b2b2b;
            border: 1px solid #fff;
            border-right: none;
            border-top: none;
            width: 100%;
        }

        #mobile-nav nav ul li ul {
            border-right: 1px solid #fff!important;
            border-left: none!important;
        }

        #mobile-nav nav ul li ul li a {
            background-color: #ccc;
        }


        #mobile-nav .fa { /* hamburger bars */
            display: none;
        }

/********** NAV SWITCH **********/

#mobile-nav {
    display: none;
     }

    #main-nav {
        display: block;
    }

    @media all and (max-width:910px) {
        #mobile-nav {
            display: block;
        }

        #main-nav {
            display: none;
        }
    }


/*=============================
    Flexslider
==============================*/

.flexslider {
    margin: 0;
    background-color: none;
        }

        .image-slider { /* actual images on slider */
            width: 100%;
            padding-bottom: 45%; /* holds aspect ratio of slider */
         
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        p.credit-slider { /* inside .image-slider div */
            position: absolute;
            bottom: 30px;
            left: 40px;
            font-size: .8125em;
        }

                @media all and (max-width: 600px) {
                    p.credit-slider {
                        bottom: 10px;
                        left: 20px;
                    }
                }


/*=============================
    Home
==============================*/

.home #main-wrapper-inner {
    display: none;
}

/*=============================
    The Farm
==============================*/

iframe.walkthroughtour {
    width: 120%;
    height: 600px;
    margin-left: -10%;
    margin-bottom:  -20px;
}


/*=============================
    Blog
==============================*/

.blog.main-wrapper {}

        .blog .article-header {
            margin-bottom: 10px;
        }

        .container.blog {
            width: 70%;
            margin: 0 auto;
            padding-top: 80px!important;
        }

        .blog article img {
                clear: both;
            display: block;
            margin: 10px auto;
            margin-top: 10px;
            margin-right: auto;
            margin-bottom: 10px;
            margin-left: auto;
            padding: 10px 0;
            max-width: 100%;
            height: auto;
        }

        .blog article p {
            margin-bottom: 10px;
        }


        .blog.content-section, .search.content-section, .author.content-section, .categories.content-section {
            margin-top: -50px;
        }

        .blog-sidebar-container {
            width: 25%;
            float: left;
            margin-left: 5%;
        }

        .blog-content-container {
            width: 100%;
            margin: 0 auto;
        }

        .blog-content-container {
            margin-bottom: 50px; /* space between posts */
        }


        .blog h3, .blog h2 {   
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.5em;
            line-height: 1em;
            margin-bottom: 15px;
            letter-spacing: 0;
        }

        .blog .wp-caption {
            width: 100%!important;
        }

        .blog .wp-caption-text {
            text-align: center;
        }


        .blog .separator {
            width: 100%;
            margin: 100px auto;


        }

        .blog .separator img {
                width: 70px;
                margin: 0 auto;
                display: block;
                padding: 0 6px 0 16px;
                background-color: #fff;
        }

                .blog  .separator:before {
                            content: "";
                            width: 100%;
                            border-top: 1px solid #000;
                            height: 1px;
                            left: 0;
                            margin-top: 20px;
                            display: block;
                            position: absolute;
                            background: #fff;
                            z-index: -1;
                            text-align: center;
                        }


        .blog .widget {
            padding: 0px 0 40px;
            font-size: 1em;
            line-height: 1.875em; /* 30px/16px */
        }

                .blog .widget.widget_categories {
                        text-transform: uppercase;
                }

                .widget #searchform {
                    width: 100%;
                    position: relative;
                }


                .widget #searchform label {
                    display: none;
                }


                .widget input[type="text"] {
                    width: 60%;
                }

                .widget input[type='submit'] {
                    width: 35%;
                }

                .widget #searchform input[type='submit'] {
                    margin-left: -9px;
                }

                .widget #subscribe-submit input[type='submit'] {
                    margin-left: 0;
                    margin-top: 15px;
                }

                #subscribe-email input { /* overrides jetpack */
                    width: 100%!important;
                    padding: 4px!important; /* repeats general input styling to override jetpack */
                }

                p.error { /* error alert for incorrect email on follow input */
                    margin-bottom: 15px;
                    color: red;
                }






        @media all and (max-width: 900px) {
            .blog-sidebar-container {
                width: 100%;
                float: left;
                margin-left: 0;
                text-align: center;

            }

            .blog-content-container {
                width: 100%;
            }

            .widget #searchform {
                    max-width: 500px;
                    margin: 0 auto;
            }

            .widget .blog-follow {
                max-width: 500px;
            }

             .widget #subscribe-submit input[type='submit'] {
                width: 100%;
            }

            p#subscribe-email { /* overrides jetpack */
                padding-right: 10px;
            }      

            #subscribe-blog-blog_subscription-2 {
                max-width: 500px;
                margin: 0 auto;
            }


        }

/*=============================
    Weddings Page
==============================*/

.wedding-thumb-container {
    margin-left:  -3%;
    }

        .wedding-thumb {
            width: 30%;
            margin-left: 2.5%;
            display: inline-block;
            margin-bottom: 30px;
            vertical-align: top;

            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

        .weddings a:hover{
            color: #000;
        }

        .wedding-thumb-image {
            height: 170px;
            width: 100%;
            margin-bottom: 20px;
            -webkit-background-size: cover;
              -moz-background-size: cover;
              -o-background-size: cover;
              background-size: cover;
              background-position: center;
              background-repeat: no-repeat;
        }

                .wedding-thumb-image:hover {
                    opacity: .7;
                    -webkit-transition: all .3s ease;
                    -moz-transition: all .3s ease;
                    -ms-transition: all .3s ease;
                    -o-transition: all .3s ease;
                    transition: all .3s ease;
                }

        .wedding-thumb h4, .wedding-thumb h5 {
            text-align: center;
        }

                .wedding-thumb h4 {
                    font-size: 1.125em;
                }

                .wedding-thumb h5 {
                    font-size: .8125em;
                }




        @media all and (max-width: 600px) {
            .wedding-thumb {
                width: 45%;
            }
        }




/********** WEDDINGS SINGLE PAGE **********/

.wedding-gallery {}

        .wedding-gallery li { /* wedding-single page */
            display: inline-block;
            width: 22.5%;
            height: auto;
            margin: 1%;
            min-width: 100px;

        }

        .wedding-gallery li img {
            width: 100%;
            height: auto;
            opacity: 1;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;

        }

        .wedding-gallery li img:hover {
            opacity: .7;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;



        }

        p.photo-credit { /* photo by on wedding pages */
            text-align: center;
            margin-top: -30px;
            margin-bottom: 40px;
        }

        ul.wedding-gallery-grid {
            text-align:center;
        }


         .wedding-description {
            padding-top: 30px; 
        }

/********** Lightbox Navigation **********/

.tos-caption-0 { /* gets rid of weird caption above thumbnails on lightbox */
    display: none;
     }

        .tos-next, .tos-prev {
            margin-top: 0!important;
            top: 0!important;
            height: 100%;
            width: 50%;
            background:none!important;
        }


       .tos-next span {
            right: 3%;
        }

        .tos-close span {
            top: 100px!important;
            right: 100px;

        }



        .tos-prev span {
            left: 3%;
        }

        .tos-close {
            border: 2px solid white;
            padding: 0 3px 3px 3px;
        }

        .tos-close span:after, .tos-close span:before { /* the X close button */
                width: 10px;
                height:10px;
                margin-top: -7px;
        }

        .tos-close {
            height: 40px;
            top: 5%;
            right: 5%;
        }

/*=============================
    Contact Page
==============================*/

/* Contact Form 7 // cft=labels cf=inputs */

#Contact .content-section-2 { /*bumps down form and map, which have no title that would normally bump it down */
    margin-top: 65px;
    }

    @media all and (min-width: 900px) {

    .wpcf7-form {
        width: 70%;
    margin: 0 auto;
    }

}
        .wpcf7-list-item-label { /* check boxes for Event Location */
            text-transform: uppercase;
            font-weight: 700;
            font-size: .9em;
            padding-left: 5px;
            margin-right:10px;

        }

        .wpcf7-form .cft {
            width: 20%;
            text-align: right;
            text-transform: uppercase;
            font-weight: 700;
            font-size: .75em;
            margin-right: 1%;
        }



        .wpcf7-form p {
            display: inline-block;
        }

        .cf {
            width: 77%;
            text-align: left;
        }

        .asterisk {
            color: red;
        }


        .cf-submit {
                display: inline-block!important;
    width: 78.5%;
    margin-right: -5px;
    float: right;
        }

        .cf-submit-space {
            width: 33%;
            display:inline-block;    

        }

        .cf-submit img {
            display: none;
        }



        .wpcf7-not-valid-tip {
            display: none!important;
        }


        .wpcf7-not-valid {
            border-color: red!important;
        }

        #Contact iframe {
            width: 100%;
        }

        @media all and (max-width: 900px) { /* triggers col2 mobile layout earlier than the rest fo the site (700px) */

            #Contact .col1, #Contact .col2 {
                margin-left: 0;
                margin-right: 0;
            }

            #Contact .col2 {
                width: 100%;
            }

            .wpcf7-form p {
            display: block;
            width: 100%;
            text-align: left!important;
            }   

            #Contact iframe {
            margin-top: 75px;
            }

            #Contact .content-section-2 {
                overflow: visible;
            }

            .wpcf7-form .cft { 
                width: 100%;
            }

        }

/*=============================
    Footer
==============================*/

#footer-container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    z-index: -1;
    position: relative;
    padding-top: 30px;
    padding-bottom: 58px;
    overflow: auto;
}

        #footer-container-inner.container {
            color: #fff;
            padding-bottom: 0;
        }


        .footer-col {
            width: 30%;
            margin-left: 5%;
            float: left;
            display: none;
        }

                .footer-col:first-child {
                    margin-left: 0;
                }

                #footer-container .textwidget {
                    font-size: .75em;
                    line-height: 1.45em;
                    font-weight: 200;
                    margin: 20px 0;
                }

                #footer-container .widget {
                    padding-top: 10px;
                }

                .footer-colophon {
                    text-align: center;
                    clear:both;
                    color: #666;
                }

                #footer-container .footer-colophon a {
                    color: #666;
                }




                .google-review a {
                    font-size: .8em;
                    text-transform: uppercase;
                    font-weight: 400;
                    letter-spacing: 2px;
                    text-decoration: none!important;
                    padding: 13px;
                    border: 1px solid #fff;
                }


                .google-review a:hover {
                    background-color: #464646;
                }

                @media all and (max-width: 830px) {
                    .footer-col {
                        width: 90%;
                        margin: 0 auto;
                        text-align: left;
                    }

                    #footer-container-inner {
                        margin: 0 auto;
                        width: 92%;
                    }

                    .footer-colophon {
                        margin-top: 0px;
                        width: 100%;
                    }
            
                }           

        .lgbt, .lgbt img {
            max-width: 100%;
            height: auto;
            margin-left: -6px;
            padding-top: 0;
        }

                @media all and (max-width: 830px) {
                    .lgbt, .lgbt img {
                        margin-bottom: 10px;
                    }
                }


        .social-icon {
            float:left;
            margin-right: 8%;
            opacity: 1;

            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

                .social-icon:hover {
                    opacity: .7;

                    -webkit-transition: all .3s ease;
                    -moz-transition: all .3s ease;
                    -ms-transition: all .3s ease;
                    -o-transition: all .3s ease;
                    transition: all .3s ease;
                }

                .social-icon:last-child {
                    margin-right: 0;
                }

                .social-icon:first-child {
                    margin-left: 5%;
                }

                .instagram-feed {
                    margin-top: 50px;
                }


                 @media all and (max-width: 1150px) {
                    .social-icon {
                        margin-right: 7%;
                    }

                    .social-icon:first-child {
                    margin-left: 4%;
                    }   

                }

                @media all and (max-width: 1000px) {
                    .social-icon:first-child {
                        margin-left: 0;
                    }
                }

                @media all and (max-width: 950px) {
                    .social-icon {
                        margin-right: 5%;
                    }

                    .social-icon:first-child {
                        margin-left: 0;
                    }
                }

                @media all and (max-width: 830px) {
                    .instagram-feed {
                    margin-top: 60px;
                }
                
                    }  

/*=============================
    Exceptions
==============================*/

#Catering .content-section-3 .col1 {
    margin-bottom: 30px;
}


/* lightbox for Aerial Map */

.featherlight img {
    height: auto!important;
    max-width: 100%;
}

@media all and (max-width: 660px) {
    .hotspots-image-container {
        width: 100%!important;
    } 
}
 
 

/*** Flexslider Override ***/
.flex-direction-nav a {


}

 
.flex-control-nav {
    display: none!important; /* removes paging dots */
}


.flex-direction-nav {
    position: absolute!important;
    top: 50%!important;
    width: 100%!important;
}

@media all and (max-width: 700px) {
    .flex-direction-nav a {
    }
    
    .flex-direction-nav a:before {
    font-size: 20px!important; /* arrow size */
     }         
}


/* aerial map images consistent width and margins*/
.featherlight img {
    width: 100%!important;
    max-width: 1000px!important;
    margin: 10px 0!important;
}

.featherlight-inner {
    max-width: 1000px!important;
    margin: 20px!important;
}






/*
#aerial-map {
    display: none;
}


.aerial-map ~ .content-section-2 .col1 {
    margin: 0;
}


.aerial-map ~ .content-section-2 {
    display: none;
}

.hotspots-image-container {
    width: 60%!important;
}



*/