﻿html {
	padding: 0;
	margin: 0;
}
body {
    font-size: 1em;
    width: auto;
}

section {
    padding: 8em 0;
}

.box {
    background-color: white;
    padding: 2em;
    border-radius: 10px;
}

img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/*========================================
    WRAPPERS
========================================*/

[class*="-wrapper"]{
    margin:0 auto;
    width:100%;
}

.content-wrapper{
    max-width:1500px;
}

.small-content-wrapper{
    max-width:1400px;
}

.padding-top-bottom-1em{
    padding-top:1em;
    padding-bottom:1em;
}


/*========================================
    ICONS
========================================*/
.icon {
    font-family: "Ionicons" !important;
    color: #0095d5;
    margin-right: 10px;
    font-size: 1.5em;
}
.icon-big {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 2em;
    color: #ffffff;
    background-color: #3a84df;
    border-radius: 50%;
    padding: 10px;
}

footer .icon {
    margin: 0 auto;
}

/*========================================
    TYPOGRAPHY
========================================*/
body,
h1,
h2,
h3,
h4,
p,
a {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 1.5em;
}

h2 {
    font-size: 2.5em;
    font-weight: 800;
}
.h2-small {
    font-size: 1em;
    font-weight: 700;
}
h3 {
    font-size: 2.5em;
    font-weight: 700;
    color: #0d4185;
    margin-bottom: 25px;
    padding-bottom: .5em;
}

h4 {
    font-size: 1.4em;
    font-weight: 700;
    color: #3a84df;
    text-align: center;
}


p {
    text-align: left;
    font-size: 1em;
    line-height: 30px;
    color: #002049;
    font-weight: 600;
    margin: 15px 0;
}

a {
    color: #0095d5;
    text-decoration: none;
    font-weight: 700;
}

.space {
    font-size: 1.2em;
    color: #0095d5;
    padding: 0.3em;
}

/*========================================
    BUTTONS
========================================*/
.btn-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
    padding: 2em 0;
}

.button {
    display: inline-block;
    text-decoration: none;
    border: 2px solid;
    padding: 20px 57px;
    text-align: center;
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
}

.primeBtn {
    background-color: #0095d5;
    border: unset;
}

    .primeBtn:hover {
        background-color: #0d609a;
        border-color: #0d609a;
        transition: all ease-in-out .3s;
    }


.secondaryBtn {
    
    background-color: rgba(255, 255, 255, 0.20);
    border-color: #fff;
}

    .secondaryBtn:hover {
        background-color: #0d609a;
        border-color: #0d609a;
        color: #fff;
        transition: all ease-in-out .3s;
    }

.collapse {
    display: none;
    height: 0;
}

.collapse.show {
    display:block;
    height: auto;
    transition: all ease-in-out .3s;
}

/*========================================
    HEADER
========================================*/
header {
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 0px;
    width: 100%;
    width: -webkit-fill-available;
    background-image: linear-gradient(to bottom, rgb(255 255 255), rgb(255 255 255 / 0%));
    transition: all ease-in-out .3s;
    z-index: 10;
    padding: 1em;
}

.body-scroll .header {
    background-color: #ffffff;
    transition: all ease-in-out .3s;
    background-image: unset;
}

.headerRow {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: normal;
    align-content: normal;
    width: 100%;
    z-index: 11;
    margin: 0 auto;
}

.headerLogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: normal;
    align-content: normal;
    padding: 1em 0;
    opacity: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 14;
}

.logoImg {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .navWrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-line-pack: normal;
    align-content: normal;
}

.header .navBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-line-pack: normal;
    align-content: normal;
}

.navTop {
    padding-top: .5em;
    position: relative;
}

.nav .ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: normal;
    align-content: normal;
    padding: 0;
    margin: 0;
}

.nav .li {
    list-style: none;
    margin-left: 25px;
}

.header .topBar {
    margin-bottom: .2em;
   
}

.header .topBar a,
.header .topBar .icon {
    font-size: 16px;
}

.nav a {
    font-size: 20px;
    text-decoration: none;
    font-weight: 700;
    color: #0D4185;
}

.nav a:hover {
    color: #0095d5;
}

/*---Mobile Nav Active---*/



/*========================================
	NAV BUTTON
========================================*/

.navButtonTop {
    display: none;
    width: 60px;
    height: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
 
}

.navButton {
    display: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #0D4185;
    position: relative;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    border-radius: 50px;
    z-index: 14;
}

.navButtonBars {
    position: absolute;
   
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50%;
    height: 40%;
    max-height: 2em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.navButtonBars i {
    display: block;
    height: 2.5px;
    border-radius: 1.5px;
    background: #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.navButtonBars i:nth-child(1) {
    top: 4px;
    -webkit-transform: none;
    transform: none;
}

.navButtonBars i:nth-child(2) {
    opacity: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navButtonBars i:nth-child(3) {
    bottom: 4px;
    -webkit-transform: none;
    transform: none;
}

.navButtonBars.active i:nth-child(1) {
    top: 9px;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.navButtonBars.active i:nth-child(2) {
    background: transparent;
}

.navButtonBars.active i:nth-child(3) {
    bottom: 9px;
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

/*========================================
	HOME SECTION
========================================*/
.hero-image {
    background-image: url('../images/_DSC4344.jpg');
    /*background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-origin: content-box;
    min-height: calc(100vh + 5em);
    width: 100%;
    position: relative;
    display: flex;
    padding: 0 !important;*/
    background-color: #212121;
    background-size: cover;
    background-position: 80%;
   /* width: 100%;*/
    height: 100%;
    flex: 1 1 auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -js-display: flex;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100%;
    position: relative;
}

.hero-content {
    border-radius: 10px;
    text-align: left;
    color: #0D4185;
    margin-left: 1em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.welcome-text {
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    text-align: left;
    padding-bottom: 43px;
    padding-right: 352px;
}

.mobile-hero {
    display: none;
    width: 100%;
}

/*========================================
	ABOUT SECTION
========================================*/
.about-section {
    background-color: #fff;
}

.logo-print {
    display: none;
}

/*========================================
	TESTIMONIAL SECTION
========================================*/
.testimonial-section {
    background-color: #00233e;
    padding: 4em;
}

.quote-text {
    font-size: 2.2em;
    color: #ffffff;
    text-align: center;
    line-height: 53px;
}

.quote-author {
    text-align: center;
}

.quote-author-left {
    text-align: left;
}

.testimonial-text img {
    border-radius: 50%;
    max-width: 7em;
    margin: auto auto;
}

/*========================================
	PRIVATE PRACTICE SECTION
========================================*/
.private-practice {
    background-color: #f0f0f0;
}
.private-practice h3 {
    text-align: center;
}
    .private-practice .box .content {
        padding-top: 2em;
    }
.pricing {
    font-size: 1em;
    line-height: 1.6em;
    color: #3a84df;
    font-weight: 600;
}

.private-practice .box {
    padding: 3em;
    margin: .5em 0;
    max-width: 30em;
}

.private-practice .col-flex {
    margin: 1em;
    padding: 0;
}

.steve-photo {
    max-height: 30em;
    object-fit: cover;
}

.private-practice img, .private-practice .box {
    margin: 1em 0;
}
/*========================================
	CONTACT SECTION
========================================*/
.contact-section {
    background-color: #fff;
}

.contact-links {
    padding: 0;
    margin: 0;
}

    .contact-links li {
        list-style: none;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1em 0;
    }

.link-youtube {
    display: flex;
    align-content: center;
}

.contact-text {
    margin: 0;
    padding: 0;
    text-align: left;
}

.location-photo {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}

iframe {
    width: 100%;
    height: 250px;
}

/*========================================
	PRODUCT SECTION
========================================*/
.product-section {
    background-color: #f0f0f0;
}
    .product-section h3 {
        text-align: center;
    }

    .product-info li {
        list-style: none;
    }

.product-section .btn-wrap {
    justify-content: center;
}

.product-info p {
    text-align: center;
}

.product-section .box {
    text-align: center;
    min-width: 7em;
}
.store-box {
    margin: 1em;
}
.product-section img {
    padding-bottom: 1em;
    max-width: 3em;
    margin: 0 auto;
}
.product-section ion-icon {
    margin-bottom: .3em;
}
/*========================================
	FOOTER
========================================*/
footer {
    background-color: #00233e;
    padding: 30px;
    font-size: .9em;

}
.footer-nav-wrp {
    max-width: 725px;
    margin: 0 auto;
}

.footer-nav {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
    padding-right: 8px;
    margin-right: 5px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin: 0;
    border-right: none;
}

    .footer-nav li a:link,
    .footer-nav li a:visited,
    .social-links li a:link,
    .social-links li a:visited {
        text-decoration: none;
        border: 0;
        color: #0095d5;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

footer p {
    color: #999;
    text-align: center;
    margin: 0;
    font-size: .9em;
    line-height: 2em;
}


