/*
Theme Name: Davis Child
Theme URI: 
Description: Davis Child Theme
Author: Nick Wignall
Author URI: 
Template: davis
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: davis-child
Update
*/


/* -------------------------------------------------------------------------------- */


/*  0. CSS Reset
/* -------------------------------------------------------------------------------- */

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    line-height: 1;
    text-align: left;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,
ul {
    list-style: none;
}

blockquote:before,
blockquote:after {
    content: "";
}

a {
    outline: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}


/* Screen Reader Text */

.screen-reader-text {
    clip: rect( 1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* -------------------------------------------------------------------------------- */


/*  1. Document Setup
/* -------------------------------------------------------------------------------- */

body {
    background: #fff;
    border: none;
    color: #111;
    font-size: 18px;
}

body.dark-mode {
    background: #111;
    color: #fff;
}

body * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Open Sans', helvetica, serif;
}

a {
    text-decoration: none;
}

a,
a:hover {
    color: #111;
}

.dark-mode a,
.dark-mode a:hover {
    color: #fff;
}

body a:hover {
    text-decoration: underline;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

.clear {
    clear: both;
}

::selection {
    background: #111;
    color: #FFF;
}

input::-webkit-input-placeholder {
    color: #999;
}

input:-ms-input-placeholder {
    color: #999;
}

input::-moz-placeholder {
    color: #999;
}


/* -------------------------------------------------------------------------------- */


/*  2.  Structure
/* -------------------------------------------------------------------------------- */

.wrapper {
    margin: 0px auto;
    max-width: 100%;
    width: 100%;
}


/* -------------------------------------------------------------------------------- */


/*  3.  Header
/* -------------------------------------------------------------------------------- */

header {
    margin: 0 auto 0 auto;
    width: 100%;
    background-image: url("/app/uploads/2018/02/Blue-Wave-5.svg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
}

.menu {
    margin: 30px 0 0;
    text-align: center;
    display: none;
}

@media ( min-width: 620px) {
    .toggle-menu {
        display: none;
    }
    .menu li {
        position: relative;
    }
    .menu>li {
        display: inline-block;
    }
    .menu>li+li {
        margin-left: 30px;
    }
    .menu .page_item_has_children>a:after,
    .menu .menu-item-has-children>a:after {
        content: " ↓";
        font-family: 'Helvetica', sans-serif;
    }
    .menu ul {
        position: absolute;
        left: -10000px;
        top: 15px;
        width: 200px;
    }
    .menu>li>ul {
        font-size: 0.9em;
        padding-top: 20px;
    }
    .menu li ul:before {
        border: 6px solid transparent;
        border-bottom-color: #111;
        content: "";
        display: block;
        margin-left: -6px;
        position: absolute;
        left: 50%;
        top: 8px;
    }
    .dark-mode .menu li ul:before {
        border-bottom-color: #fff;
    }
    .menu ul a {
        background: #111;
        color: #fff;
        display: block;
        padding: 15px;
        text-align: center;
    }
    .dark-mode .menu ul a {
        background: #fff;
        color: #111;
    }
    .menu ul li:first-child>a {
        border-radius: 3px 3px 0 0;
    }
    .menu ul li:last-child>a {
        border-radius: 0 0 3px 3px;
    }
    .menu ul li:last-child:first-child>a {
        border-radius: 3px 3px 3px 3px;
    }
    .menu ul a:hover {
        color: #fff;
    }
    .dark-mode .menu ul a:hover {
        color: #111;
    }
    .menu>li:hover>ul {
        left: 50%;
        margin-left: -100px;
    }
    .menu ul li ul {
        margin: 0;
        padding-left: 20px;
        top: 0;
        width: 220px;
    }
    .menu ul li ul:before {
        border-color: transparent;
        border-right-color: #111;
        left: 14px;
        top: 18px;
    }
    .dark-mode .menu ul li ul:before {
        border-color: transparent;
        border-right-color: #fff;
    }
    .menu ul li:hover>ul {
        left: 200px;
    }
}

header h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 80px;
    text-align: center;
    display: none;
}

/* -------------------------------------------------------------------------------- */


/*  4.  Blog
/* -------------------------------------------------------------------------------- */

.post:before,
.comments:before,
.comment-respond:before,
.comments .comment-respond:after,
.pagination:before,
footer:before {
    background: url(../davis/assets/images/sep.png ) no-repeat center;
    background-size: auto 100%;
    content: "";
    display: block;
    height: 0px;
    margin: 0px auto;
}

.dark-mode .post:before,
.dark-mode .comments:before,
.dark-mode .comment-respond:before,
.dark-mode .comments .comment-respond:after,
.dark-mode .pagination:before,
.dark-mode footer:before {
    background-image: url(../davis/assets/images/dark-sep.png );
}

.title {
    line-height: 1.4;
    text-align: center;
}

.featured-image {
    display: block;
    margin: 0 auto 30px auto;
}

.meta {
    color: #999;
    margin-top: 30px;
}

.post .meta p {
    line-height: 1.55;
    margin-bottom: 0;
    text-align: center;
}

span.sep {
    margin: 0 15px;
}

.meta p:first-child+p {
    margin-top: 15px;
}

.meta a,
.meta a:hover {
    color: #999;
}

.sticky {}


/* -------------------------------------------------------------------------------- */


/*  5.  Post Content
/* -------------------------------------------------------------------------------- */

.content * {
    max-width: 100%;
}

.content a {
    border-bottom: 1px solid #111;
}

.content a:hover {
    border-color: #666;
    color: #666;
    text-decoration: none;
}

.dark-mode .content a {
    border-bottom-color: #fff;
}

.dark-mode .content a:hover {
    border-color: #999;
    color: #999;
}

em {
    font-style: italic;
}

.post p {
    line-height: 1.55;
    margin-bottom: 30px;
}

.post p:last-child {
    margin-bottom: 0;
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
    font-weight: 700;
    margin-bottom: 30px;
}

.post hr {
    border: none;
    margin: 40px 0;
    text-align: center;
}

.post hr:before {
    content: "***";
}

.content>ol,
.content>ul {
    margin-bottom: 30px;
}

.post ol,
.post ul {
    margin-left: 1.5rem;
}

.post ul {
    list-style: disc;
}

.post ul ul {
    list-style: circle;
}

.post ul ul ul {
    list-style: square;
}

.post ol {
    list-style: decimal;
}

.post ol ol {
    list-style: lower-alpha;
}

.post ol ol ol {
    list-style: lower-roman;
}

.post li {
    line-height: 1.5;
    margin-top: 0.5em;
}

dd,
dt {
    line-height: 1.5;
}

dd+dt {
    margin-top: 15px;
}


/* Quotes ----------------------------- */

blockquote {
    border-left: 1px solid #ccc;
    margin: 0 0 30px 0;
    padding: 0 0 0 30px;
}

.dark-mode blockquote {
    border-left-color: #444;
}

blockquote p {
    font-style: italic;
}

blockquote cite:before {
    content: "— ";
}


/* Media ------------------------------ */

div.wp-caption {
    display: block;
    margin-bottom: 30px;
}

.alignleft,
.alignright {
    margin-bottom: 20px;
    max-width: 50%;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 30px;
}

.aligncenter,
.alignnone {
    margin: 0 auto;
}

.gallery-caption,
.wp-caption-text {
    font-size: 0.9em;
    font-style: italic;
    margin-top: 10px;
}

.aligncenter .wp-caption-text {
    text-align: center;
}

.alignright .wp-caption-text {
    text-align: right;
}


/* Inputs ----------------------------- */

fieldset {
    border: 1px solid #ddd;
    padding: 25px;
}

.dark-mode fieldset {
    border-color: #444;
}

fieldset legend {
    font-size: 0.9em;
    font-style: italic;
    padding: 0 15px;
}

label {
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 10px;
}

textarea,
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="url"] {
    border: 1px solid #ddd;
    color: #111;
    display: block;
    font-size: 0.9em;
    margin: 0 0 15px 0;
    padding: 15px;
    width: 100%;
}

.dark-mode textarea,
.dark-mode input[type="email"],
.dark-mode input[type="password"],
.dark-mode input[type="tel"],
.dark-mode input[type="text"],
.dark-mode input[type="url"] {
    background: #111;
    border-color: #444;
    color: #fff;
}

textarea {
    line-height: 1.5;
    height: 200px;
}

input[type="button"],
input.button,
input[type="submit"] {
    background: #111;
    border: none;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 14px 24px;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.dark-mode input[type="button"],
.dark-mode input.button,
.dark-mode input[type="submit"] {
    background: #fff;
    color: #111;
}

input[type="button"]:hover,
input.button:hover,
input[type="submit"]:hover {
    background: #333;
    cursor: pointer;
}

.dark-mode input[type="button"]:hover,
.dark-mode input.button:hover,
.dark-mode input[type="submit"]:hover {
    background: #ddd;
    cursor: pointer;
}


/* Tables ----------------------------- */

table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 0.9em;
    margin-bottom: 30px;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

th,
td {
    line-height: 1.4;
    margin: 0;
    overflow: visible;
    padding: 2.5%;
}

caption {
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 2.5%;
    text-align: center;
    text-transform: uppercase;
}

thead {
    vertical-align: bottom;
    white-space: nowrap;
}

th {
    border-bottom: 1px solid #ddd;
    font-weight: 700;
}

tbody>tr:nth-child(even) {
    background-color: #f6f6f6;
}

.dark-mode tbody>tr:nth-child(even) {
    background-color: #222;
}

.dark-mode caption,
.dark-mode th {
    border-bottom-color: #444;
}


/* -------------------------------------------------------------------------------- */


/*  6.  Comments
/* -------------------------------------------------------------------------------- */

.comment {
    margin-top: 40px;
}

.comment a {
    text-decoration: underline;
}

.commentlist>.comment:first-child {
    margin-top: 0;
}

.comment .comment {
    margin: 40px 0 0 30px;
}

.comment-author a,
.comment-meta a,
.comment .reply a {
    text-decoration: none;
}

.comment-author {
    padding-left: 50px;
    position: relative;
}

.bypostauthor .comment-author cite {
    font-weight: 700;
}

.comment-author .says {
    display: none;
}

.comment-author .avatar {
    position: absolute;
    left: 0;
    top: 1px;
    width: 40px;
}

.comment-awaiting-moderation {
    font-size: 14px;
    font-style: italic;
    padding-left: 50px;
}

.comment-meta {
    font-size: 14px;
    margin: 2px 0 20px 0;
    padding-left: 50px;
}

.comment-meta a,
.comment-meta a:hover {
    color: #999;
}

.comment .reply {
    font-size: 14px;
    font-style: italic;
    margin-top: 15px;
    text-align: right;
}

.comment .reply a {
    color: #999;
}

.comment .reply a:hover {
    text-decoration: underline;
}


/* Respond ---------------------------- */

.comment-respond p+p {
    margin-top: 20px;
}

.post .comment-reply-title {
    text-align: center;
}

.logged-in-as {
    margin: -10px 0 30px;
    text-align: center;
}

.comment-respond label {
    display: block;
}


/* -------------------------------------------------------------------------------- */


/*  7.  Pagination
/* -------------------------------------------------------------------------------- */

.pagination {
    text-align: center;
}

.pagination *+* {
    margin-left: 30px;
}


/* -------------------------------------------------------------------------------- */


/*  8.  Footer
/* -------------------------------------------------------------------------------- */

footer {
    clear: both;
    padding: 0;
    text-align: center;
}

footer p {
    line-height: 1;
    text-align: center;
}

footer p+p {
    font-style: italic;
    margin-top: 15px;
}


/* -------------------------------------------------------------------------------- */


/*  8.5 Page-Specific Modifications
/* -------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */


/*  Home (page-id-123)
/* -------------------------------------------------------------------------------- */

.page-id-6 h1.title {
    display: none;
}

.lsc-icon {
    width: 75px;
    text-align: left;
    vertical-align: middle;
    line-height: 30px;
}

.lsc-icon-small {
    margin: 20px auto 20px auto;
    text-align: center;
    width: 50px;
}

.mobile-logo {
    display: none;
}

.flexContainer {
    display: flex;
    padding: 10px 50px;
    align-items: center;
}

.flexEnd {
    justify-content: flex-end;
    padding-right: 0px;
    flex-wrap: nowrap;
}

.flexMenu {
    display: none;
}

.blueBackground {
    background: none;
}

.nav {
    list-style: none;
    width: 100%;
    padding: 0;
}

.logo img {
    width: 160px;
    padding: 0;
    float: left;
}

.nav a {
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize !important;
    display: inline-block;
    padding: 10px 10px;
    color: #f1f1f1;
    margin: 0px 10px;
    font-family: 'Open Sans';
    letter-spacing: 0px;
}

.nav li a:hover {
    text-decoration: none;
    color: #fff;
    opacity: .8;
}

.nav li {
    list-style-type: none;
}

.post-230 h1.title,
.page-id-123 h1.title {
    display: none;
}

.landing {
    width: 100%;
    background-image: url("/app/uploads/2018/02/Blue-Wave-5.svg");
    padding: 0 0px 185px 0px;
    margin-top: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -115px; 
}

.landing h1 {
    font-size: 40px;
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 400;
    /* text-transform: ; */
    max-width: 67%;
    line-height: 1.2;
    padding: 100px 0px 0px 150px;
}

.landing p {
    font-size: 18px;
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 400;
    /* text-transform: ; */
    max-width: 60%;
    padding-left: 150px;
    line-height: 28px;
}

.landing a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 400;
    text-transform: uppercase;
    line-height: 2;
    text-decoration: none;
    border-bottom: 0px;
    text-align: center;
}

.landing .home-buttons {
    padding-left: 150px;
}

.landing .home-button-1 {
    background: #28D185;
    color: #fff;
    padding: 13px 10px;
    margin-right: 30px;
    width: 26%;
    border-radius: 3px;
    font-weight: 400;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    transition: all .15s ease
}

.landing .home-button-1:hover {
    background: #3FE097;
    color: #fff;
    cursor: pointer;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08)
}

.who-we-are {
    display: flex;
    margin: 0px auto;
    padding: 50px 0px 100px 0px;
    max-width: 90%;
    justify-content: center;
}

.who-we-are-section {
    order: 1;
    max-width: 45%;
    padding: 50px 50px 0px 0px;
}

.who-we-are h2 {
    padding: 0px 0px 0px 0px;
    font-size: 32px;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #0769CE;
    text-transform: capitalize;
    line-height: 32px;
}

.who-we-are p {
    color: #677388;
    font-size: 17px;
}

.how-it-works-section {
    order: 2;
    max-width: 45%;
    padding: 50px 0px 0px 50px;
}

.benefits {
    margin: 0px auto 0px auto;
    background: #F3F7FA;
    padding: 80px 0px 100px 0px;
}

.benefits h2 {
    padding: 0px 0px 0px 0px;
    font-size: 32px;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #0769CE;
    margin: 0px auto 20px auto;
    text-align: center;
}

.benefits p {
    padding: 0px 0px 0px 0px;
    max-width: 35%;
    font-family: 'Open Sans';
    font-weight: 400;
    margin: 0px auto 30px auto;
    text-align: center;
    color: #677388;
}

.benefits-big-box, .products-big-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.benefits-box, .products-box {
    max-width: 25%;
    align-self: auto;
    margin: 0px 20px;
    background: #fff;
    padding: 20px 15px 30px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
}

.products-box {
    margin-top: -70px;
}

.benefits-box h3, .products-box h3 {
    font-size: 17px;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #1DAA71;
    text-transform: uppercase;
    margin: 0px auto 10px auto;
    text-align: center;
}

.benefits-box p, .products-box p {
    font-size: 15px;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #677388;
    margin: 0px auto 10px auto;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.products-box a {
    text-decoration: none;
    border-bottom: none;
}
.contact-us {
    display: flex;
    margin: 0px auto;
    padding: 0px 0px;
    max-width: 100%;
    justify-content: center;
}

.contact-us-locations {
    order: 1;
    width: 50%;
    padding: 50px;
    border-right: 2px solid #F5F9FC;
    padding: 50px 50px 50px 100px;
}

.contact-us-locations h2 {
    padding: 0px 0px 0px 0px;
    font-size: 32px;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #0769CE;
}

.contact-us-locations p {
    text-align: left;
    font-family: 'Open Sans';
    font-weight: 400;
    margin: 0px auto 20px auto;
    color: #677388;
}

.contact-us-locations ul {
    margin: 10px auto 0px auto;
}

.contact-us-locations li {
    text-align: left;
    margin: 0px auto 20px auto;
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400;
    list-style-type: none;
    color: #677388;
    text-transform: uppercase;
}

.contact-us-locations li a {
    border-bottom: 0px;
    color: gray;
    opacity: .8;
    text-transform: none;
    font-style: italic;
    text-decoration: underline;
}

.contact-us-locations li a:hover {
    text-decoration: underline;
    opacity: 1;
}

.contact-us-contact {
    order: 2;
    width: 50%;
    padding: 50px 50px 50px 100px;
    border-left: 2px solid #F5F9FC;
}

.contact-us-contact h2 {
    padding: 0px 0px 0px 0px;
    font-size: 32px;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #0769CE;
}

.contact-us-contact p {
    color: #677388;
}

.contact-us-contact span {
    font-style: italic;
}

.partner {
    margin: 0px auto;
    padding: 100px 0px 50px 0px;
    background: #F5F9FC;
}

.partner-box {
    background: #fff;
    padding: 50px 50px 50px 50px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    width: 50%;
    margin: 0px auto;
}

.partner-box h2 {
    margin: 0px auto 20px auto;
    padding: 30px 0px 0px 0px;
    font-size: 32px;
    text-align: center;
    color: #0769CE;
    font-family: 'Open Sans';
    font-weight: 400;
}

.partner-box p {
    text-align: center;
    margin: 0px auto;
    color: #677388;
    font-family: 'Open Sans';
    font-weight: 400;
}

.nf-form-cont {
    width: 600px;
    margin: 50px auto;
}

.nf-form-cont label {
    font-family: 'Open Sans';
    font-style: normal;
    color: #677388;
    font-weight: 400 !important;
}

#nf-field-1,
#nf-field-2,
#nf-field-3 {
    background: #F5F9FC;
    border-radius: 5px;
    border: #E4E7EB solid 1px;
}

.ninja-forms-req-symbol {
    display: none;
}

.nf-field-element {
    margin: 0px auto;
    text-align: center;
}

.content #nf-field-4, .content a.button {
    background: #28D185;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 0px auto;
}

.content #nf-field-4:hover, .content a.button:hover {
    color: #fff;
}

.content a.button {
    display: block;
    padding: 8px 24px;
    margin-top: 24px;
    box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
    transition: all .15s ease;
}
.content a.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgb(50 50 93 / 10%), 0 3px 6px rgb(0 0 0 / 8%);
}
.content a.button.wide {
    width: 100%;
}

.partner-form-button {
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    transition: all .15s ease
}

.partner-form-button:hover {
    background: #3FE097;
    cursor: pointer;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08)
}

.nf-form-fields-required {
    display: none;
}

.foot {
    padding: 50px 0px;
    background: #F5F9FC;
}

.foot p {
    text-align: center;
    margin: 0px auto 10px auto;
    color: #677388;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 15px;
}

.foot a {
    color: #677388;
    border-bottom: none;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 15px;
}

.foot a:hover {
    color: #677388;
    opacity: .9;
    border-bottom: none;
    text-decoration: none;
    cursor: pointer;
}

.foot-copyright {
    text-transform: uppercase;
}

p.foot-copyright {
    margin-top: 10px;
    font-size: 11px;
    color: #677388;
}

/* Shop page */
.woocommerce-result-count, .woocommerce-ordering {
    display: none;
}
/* Product/Cart Pages */
.single-product .title {
    text-align: left;
}
.products .type-product {
    margin: 0px 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    min-height: 140px;
}
.products .type-product h2 {
    padding: 50px 20px 50px 20px !important;
    font-size: 17px;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #1DAA71;
    text-transform: none;
    margin: 0px auto 10px auto;
    text-align: center;
}
.products .type-product p {
    margin: -12px 24px 24px 24px;
    font-size: 16px;
}

.woocommerce-page .post {
    max-width: 1250px;
    padding: 0 25px;
    margin: 30px auto;
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    float: left !important;
}
.woocommerce .content .yith-wcbk-booking-map-container {
    float: left;
    width: 48%;
    margin-left: 4%;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #28D185;
}

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: #39E296;    
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #17C074;
}
.shop_table .product-thumbnail {
    display: none;
}
.woocommerce td.product-name .wc-item-meta dd, .woocommerce td.product-name dl.variation dd {
    margin-top:  15px;
}
.yith-wcbk-bookable.not-bookable {
    display: none;
}
.woocommerce-checkout #payment ul.payment_methods li img.stripe-icon {
    float:  left;
    margin-right:  10px;
}
/* -------------------------------------------------------------------------------- */


/*  9.  Media Queries
/* -------------------------------------------------------------------------------- */

@media ( min-width: 1001px) {}

@media ( max-width: 1000px) {
    .landing h1 {
        max-width: 90%;
        padding: 80px 0px 0px 100px;
    }
    .landing p {
        max-width: 90%;
        padding-left: 100px;
    }
    .landing .home-buttons {
        padding-left: 100px;
    }
}
@media ( max-width: 768px) {
    .nav.logo {
        padding-left:  0;
    }
    .woocommerce .content .yith-wcbk-booking-map-container {
        width:  100%;
        margin-left: 0;
    }

}
@media ( max-width: 620px) {
    header {
        margin: 0px 0px 0px auto;
        height: 100px;
    }
    body {
        font-size: 16px;
    }
    .mobile-logo {
        display: block;
        width: 130px;
        margin: 0px auto 0px auto;
        z-index: 2;
        padding: 20px 0px 0px 20px;
        float: left;
    }
    .mobile-logo img {
        display: inline-block;
        width: 100%;
        margin: 0px auto;
    }
    .toggle-menu {
        color: #fff;
        display: inline;
        ;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 5px 5px 5px 5px;
        margin: 20px 20px 10px auto;
        width: 60px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 14;
        border: 1px #fff solid;
        border-radius: 3px;
    }
    .show-menu .toggle-menu {
        color: #1578DC;
        border: 1px #1578DC solid;
        background: #fff;
        text-decoration: none;
    }
    .show-menu .menu {
        display: block;
    }
    .menu {
        background: #1377DA;
        width: 100%;
        margin: -55px auto 0px auto;
        padding: 30px 0px 30px 0px;
        z-index: 2;
    }
    .menu-mobile-menu-container {
        background: #1377DA;
        background-color: #1377DA;
        z-index: 2;
    }
    #menu-mobile-menu ul {
        background: #1377DA;
        background-color: #1377DA;
    }
    .show-menu .menu {
        width: 100%;
        margin: 0px auto;
        background: #1377DA;
        background-color: none;
        position: absolute;
        top: 0;
        right: 0;
    }
    .menu-item {
        padding: 10px 0px;
    }
    .menu-item a {
        color: #fff;
    }
    .flexContainer {
        display: none;
        padding: 0px 0px;
        margin-top: 0px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: left;
        width: 200px;
    }
    .flexEnd {
        justify-content: flex-end;
        padding-right: 0px;
        flex-direction: row;
        display: none;
        text-align: left;
    }
    .blueBackground {
        /* background: ; */
    }
    .nav {
        list-style: none;
        width: 100%;
        padding: 0px 0px 0px 0px;
        background: #1377DA;
    }
    .logo img {
        width: 160px;
        padding: 30px 0px 0px 10px;
    }
    .nav li a:hover {
        text-decoration: none;
        color: #fff;
        opacity: .8;
    }
    .nav ul {
        list-style-type: none;
    }
    .nav li {
        list-style-type: none;
        margin-top: 0px;
    }
    ul.nav {
        margin-left: 0px;
    }
    li.nav {
        margin-left: none;
    }
    ul.nav.logo {
        width: 40%;
        order: 1;
        margin-top: 50px;
    }
    .post:before,
    .comments:before,
    .comment-respond:before,
    .comments .comment-respond:after,
    .pagination:before,
    footer:before {
        margin: 0px auto;
        display: none;
    }
    .landing {
        padding: 200px 0px 200px 0px;
        margin-top: 0px;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .benefits-big-box, .products-big-box {
        flex-direction: column;
    }
    .products-big-box {
        margin-top:  -70px;
    }
    .benefits-box, .products-box {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .products-box {
        margin-top:  0;
    }
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100%;
        margin:  0 0 20px 0;
    }
    .woocommerce .content .yith-wcbk-booking-map-container {
        width:  100%;
        margin-left: 0;
    }
}

@media ( max-width: 500px) {
    header {
        margin: 0px 0px 0px auto;
        height: 100px;
    }
    body {
        font-size: 16px;
    }
    .mobile-logo {
        display: block;
        width: 130px;
        margin: 0px auto 0px auto;
        z-index: 2;
        padding: 20px 0px 0px 20px;
        float: left;
    }
    .mobile-logo img {
        display: inline-block;
        width: 100%;
        margin: 0px auto;
    }
    .toggle-menu {
        color: #fff;
        display: inline;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 5px 5px 5px 5px;
        margin: 20px 20px 10px auto;
        width: 60px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 14;
        border: 1px #fff solid;
        border-radius: 3px;
    }
    .show-menu .toggle-menu {
        color: #1578DC;
        border: 1px #1578DC solid;
        background: #fff;
        text-decoration: none;
    }
    .menu {
        background: #1377DA;
        width: 100%;
        margin: -55px auto 0px auto;
        padding: 30px 0px 30px 0px;
        z-index: 2;
    }
    .menu-mobile-menu-container {
        background: #1377DA;
        background-color: #1377DA;
        z-index: 2;
    }
    #menu-mobile-menu ul {
        background: #1377DA;
        background-color: #1377DA;
    }
    .show-menu .menu {
        width: 100%;
        margin: 0px auto;
        background: #1377DA;
        background-color: none;
        position: absolute;
        top: 0;
        right: 0;
    }
    .menu-item {
        padding: 10px 0px;
    }
    .menu-item a {
        color: #fff;
    }
    .flexContainer {
        display: none;
        padding: 0px 0px;
        margin-top: 0px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: left;
        width: 200px;
    }
    .flexEnd {
        justify-content: flex-end;
        padding-right: 0px;
        flex-direction: row;
        display: none;
        text-align: left;
    }
    .blueBackground {
        /* background: ; */
    }
    .nav {
        list-style: none;
        width: 100%;
        padding: 0px 0px 0px 0px;
        background: #1377DA;
    }
    .logo img {
        width: 160px;
        padding: 30px 0px 0px 10px;
    }
    .nav li a:hover {
        text-decoration: none;
        color: #fff;
        opacity: .8;
    }
    .nav ul {
        list-style-type: none;
    }
    .nav li {
        list-style-type: none;
        margin-top: 0px;
    }
    ul.nav {
        margin-left: 0px;
    }
    li.nav {
        margin-left: none;
    }
    ul.nav.logo {
        width: 40%;
        order: 1;
        margin-top: 50px;
    }
    .page-id-123 h1.title {
        display: none;
    }
    .landing {
        width: 100%;
        background-image: url("/app/uploads/2018/02/Blue-Wave-5.svg");
        padding: 50px 0px 200px 0px;
        margin-top: 0px;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .landing h1 {
        font-size: 28px;
        max-width: 90%;
        line-height: 1.25;
        padding: 0px 0px 0px 20px;
    }
    .landing p {
        font-size: 17px;
        max-width: 90%;
        line-height: 24px;
        padding-left: 20px;
    }
    .landing .home-buttons {
        padding-left: 20px;
    }
    .landing .home-button-1 {
        background: #28D185;
        color: #fff;
        padding: 13px 10px;
        width: 90%;
    }
    .who-we-are {
        display: flex;
        margin: 0px auto;
        padding: 50px 0px 70px 0px;
        max-width: 90%;
        justify-content: center;
        flex-direction: column;
    }
    .who-we-are-section {
        order: 1;
        max-width: 94%;
        padding: 30px 0px 50px 20px;
    }
    .who-we-are h2 {
        padding: 0px 0px 0px 0px;
        font-size: 28px;
        line-height: 24px;
        margin: -10px auto 10px auto;
    }
    .who-we-are p {
        color: #677388;
        font-size: 17px;
    }
    .how-it-works-section {
        order: 2;
        max-width: 90%;
        padding: 30px 0px 0px 20px;
    }
    .benefits {
        padding: 70px 0px 70px 0px;
    }
    .benefits h2 {
        font-size: 32px;
        margin: 0px auto 20px auto;
    }
    .benefits p {
        max-width: 90%;
        margin: 0px auto 30px auto;
    }
    .benefits-big-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .benefits-box {
        max-width: 90%;
        margin: 0px 20px;
        padding: 20px 15px 30px 20px;
        margin: 10px auto;
    }
    .benefits-box h3 {
        font-size: 17px;
        margin: 0px auto 10px auto;
    }
    .benefits-box p {
        font-size: 17px;
        margin: 0px auto 10px auto;
        text-align: center;
        max-width: 96%;
        width: 96%;
    }
    .contact-us {
        display: flex;
        margin: 0px auto;
        padding: 0px 0px;
        max-width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .contact-us-locations {
        order: 1;
        width: 100%;
        border-bottom: 2px solid #F5F9FC;
        padding: 50px 50px 50px 30px;
    }
    .contact-us-locations h2 {
        font-size: 32px;
    }
    .contact-us-locations p {
        margin: 0px auto 20px auto;
    }
    .contact-us-locations ul {
        margin: 10px auto 0px auto;
    }
    .contact-us-locations li {
        margin: 0px auto 20px auto;
        font-size: 16px;
    }
    .contact-us-locations li a {}
    .contact-us-locations li a:hover {}
    .contact-us-contact {
        order: 2;
        width: 100%;
        padding: 50px 50px 50px 30px;
        border-left: 0px solid #F5F9FC;
    }
    .contact-us-contact h2 {
        padding: 0px 0px 0px 0px;
        font-size: 32px;
    }
    .contact-us-contact p {}
    .contact-us-contact span {}
    .partner {
        margin: 0px auto;
        padding: 30px 0px 15px 0px;
    }
    .partner-box {
        padding: 50px 15px 15px 15px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
        width: 90%;
    }
    .partner-box h2 {
        margin: 0px auto 20px auto;
        padding: 20px 0px 0px 0px;
    }
    .partner-box p {}
    .nf-form-cont {
        width: 600px;
        margin: 50px auto 0px auto;
    }
    .nf-form-cont label {}
    #nf-field-1,
    #nf-field-2,
    #nf-field-3 {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .nf-field-element {}
    #nf-field-4 {}
    #nf-field-4-container {
        margin-bottom: 15px;
    }
    #nf-field-4:hover {}
    .partner-form-button {
        box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
        transition: all .15s ease
    }
    .partner-form-button:hover {
        background: #3FE097;
        cursor: pointer;
        transform: translateY(-1px);
        box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08)
    }
    .foot {
        padding: 40px 0px 0px 0px;
        background: #F5F9FC;
    }
    .foot p {
        margin: 0px auto 0px auto;
        color: #677388;
        padding-bottom: 5px;
        opacity: .7;
    }
    .foot a {
        display: none;
        color: #677388;
        padding: 20px 15px;
        opacity: .7;
    }
    .foot a:hover {}
    .foot-copyright {
        padding: 0px 0px 10px 0px;
        max-width: 80%;
    }
    p.foot-copyright {
        margin-top: 0px;
        padding-bottom: 25px;
        font-size: 11px;
        opacity: .7;
    }
    .woocommerce-checkout #payment div.payment_box.payment_method_stripe {
        top:  2em;
    }

}