/* Reset CSS
 * --------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

table {
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

strong {
    font-weight: bold;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

caption,
th {
    text-align: left;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

/* GENERAL CSS
 * --------------------------------------- */

:root {
    --icon-group-size: 10em;
    --site-width: 1300px;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

img {
    max-width: 100%;
}

/** animated **/

.animated {
    opacity: 0;
}

.animatedParent {
    overflow: hidden;
}

div.file {
    position: relative;
    overflow: hidden;
}

input[type=file] {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    top: 0;
}

.form-control {
    background: transparent;
    border-radius: 0;
}

textarea.form-control {
    resize: none;
}

@media (max-width: 590px) {
    .animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        opacity: 1;
    }
}

/** no break **/

.nobr,
.nobr-small {
    white-space: nowrap;
}


@font-face {
    font-family: 'ProductSans';
    src: url('../fonts/ProductSansRegular.otf') format("opentype");
    font-weight: 400;
    font-style: 400;
}

@font-face {
    font-family: 'ProductSans';
    src: url('../fonts/ProductSansBold.otf') format("opentype");
    font-weight: 600;
    font-style: 600;
}


body {
    font-family: 'ProductSans', Arial, sans-serif;
    color: #0C2C53;
    text-align: center;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6rem;
}
.font-title{
    font-weight: 600;
}
.site-width {
    max-width: 1300px;
    margin: 0 auto;
}
.rounded-corners{
    border-radius: 25px;
}
.text-red {
    color: #AE3732;
}
.text-outline{
    text-shadow: 3px -1px 4px black;
}

.text-blue {
    color: #0C2C53 ;
}

a.text-blue:hover{
    color: #AE3732;
}

.bg-red {
    background-color: #AE3732 ;
}
.bg-blue {
    background-color: #0C2C53 ;
}
.bg-medium-blue {
    background-color: #A5C1C5;
}

.bg-light-blue {
    background-color: #E9ECEF;
}

.bg-pink {
    background-color: #F9F0EF;
}
.bg-pattern{
    background-image: url("../images/Pattern.png");
    background-size: cover;
    position: relative;
}
#our-mission .bg-pattern::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
    background-color: #0C2C53 ;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}
.favicon, .icon {
    max-height: 18px;
    margin: 2px;
}
.large-favicon{
    max-height: 30px;
}
.small-icon {
    max-height: 48px;
}
.large-icon{
    max-height: 90px;
}
.inline-icon{    
    height: 2.5rem;
    margin-right: 5px;
    margin-bottom: 2px;
}
.btn{
    padding: 10px 30px;
    border-radius: 25px;
}
.btn-primary {
    background-color: #0C2C53 ;
    border-color: #0C2C53 ;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #AE3732;
    border-color: #AE3732;
}


.btn-secondary {
    background-color: #AE3732;
    border-color: #AE3732;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    background-color: #0C2C53 ;
    border-color: #0C2C53 ;
}

.bg-blue .btn-secondary:hover,
.bg-blue .btn-secondary:active,
.bg-blue .btn-secondary:focus {
    border-color: #8199b6 ;
}
#mobile-navbar ul li {
    padding: 10px;
    text-align: left;
}

#mobile-navbar ul li a {
    position: relative;
}

#mobile-navbar ul li i {
    float: right;
}

#mobile-navbar ul li.show i.fa-angle-right,
#mobile-navbar ul li i.fa-angle-down {
    display: none;
}

#mobile-navbar ul li i.fa-angle-right,
#mobile-navbar ul li.show i.fa-angle-down {
    display: inline-block;
}

#mobile-navbar ul.dropdown-menu {
    position: unset !important;
    border: none;
    transform: none !important;
    display: none;
}

#mobile-navbar ul.dropdown-menu.show {
    display: block;
}

.dropdown-menu {
    z-index: 2000;
}

.dropdown-toggle::after {
    border: none;
}

:not(.mobile) .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: transparent;
    color: #0F2957;
}

.mobile-menu .dropdown-toggle::after {
    content: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header.fixed {
    background-color: #ffffffcf;
}
header.white .logo,
header.white.fixed .logo-white,
header.white.bg-white .logo-white{
    display:none;
}

header.white.fixed .logo,
header.white.bg-white .logo{
    display:block;
}


header.fixed .logo-container img {
    max-width: min(100%, 200px);
}

header nav a, 
header.white #mobile-navbar a,
header.white.fixed nav a.mx-3{
    color: #AE3732 ;
    text-transform: uppercase;
    font-weight: 600;
}

header nav a:hover:not(.dropdown-toggle,.btn),
header nav a.active:not(.dropdown-toggle,.btn),
header nav a:focus:not(.dropdown-toggle,.btn),
header nav a:active:not(.dropdown-toggle,.btn) {
    color: #AE3732;
    border-bottom: 1px solid #AE3732;
    text-decoration: none;
}

footer nav a{
    color: #0C2C53 ;
    text-transform: uppercase;
    font-weight: 600;
}

footer nav a:hover,
footer nav a.active,
footer nav a:focus,
footer nav a:active {
    color: #0C2C53;
    border-bottom: 1px solid #0C2C53;
    text-decoration: none;
}
header.white nav a{
    color: #FFF ;
}

h1 {
    font-size: 5rem;
    line-height: 5.5rem;
}

h2 {
    font-size: 3rem;
    line-height: 3.5rem;
}

h3 {
    font-size: 1.7rem;
    line-height: 2.3rem;
}

.full-banner {
    height: 70vh;
    min-height: 700px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    background-position: right;
}
.full-banner:not(.home-banner,.virtual-tour-banner) {
    background-image: url('../images/BackgroundIcon.png');
}
.home-banner {
    background-image: url('../images/Home_Page_Banner.jpg?v=2');
    background-position: right top;
    background-size: cover;
    height: 90vh;
    min-height: 800px;
}

.virtual-tour-banner{   
    height: auto;
    padding-top: 100px;
    min-height: auto;
}
.border-red {
    border: 2px solid #AE3732;
}
.bg-blue.box{
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 25px;
}
#what-we-do .bg-blue{
    background-image: url('../images/OurValues.png');
}
#our-values .bg-blue{
    background-image: url('../images/OurValues.png');
}

a.box{
    cursor: pointer;
    text-decoration: none;
}

a.box:hover h3{
    color: #AE3732;
}

.box .img-container{
    display: flex;
    align-items: center;
    justify-content: center;
}


.box .img-container .icon-circle{
    background-color: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#testimonials{
    background-image: url("../images/Testimonials.jpg");
    background-size: cover;
}

#testimonials .bg-transparent-white{
    background-color: rgba(255,255,255, 0.7);
    border-radius: 25px;
}


.icon-list li {
    padding-left: 35px;
    position: relative;
}

.icon-list li::before {
    width: 25px;
    height: 25px;
    background-image: url('../images/favicon.png');
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
}
.bg-blue .icon-list li::before {
    background-image: url('../images/favicon-white.png');
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 15px;
    border: none;
    margin: 0.3rem;
    border-radius: 50%;
    background: #AE3732;
}

.slick-dots li button:focus {
    outline: none;
}

.slick-dots li.slick-active button {
    background: #0C2C53;
}

.slick-list.draggable {
    height: auto !important;
}
.slick-arrow {
    background: transparent;
    border: none;
    font-size: 0;
    height: 40px;
    margin: .3rem;
    position: absolute;
    top: 75px;
    width: 40px;
}

.slick-arrow:before {
    border-bottom: 1px solid #AE3732;
    border-right: 1px solid #AE3732;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    top: 50%;
    width: 20px;
}

.slick-arrow:hover,.slick-arrow:hover:before {
    border-color: #0C2C53;
}

.slick-arrow.slick-prev {
    left: -50px;
    z-index: 1
}

.slick-arrow.slick-prev:before {
    left: 21px;
    transform: translate(-50%,-50%) rotate(135deg)
}

.slick-arrow.slick-next {
    right: -50px
}

.slick-arrow.slick-next:before {
    left: 17px;
    transform: translate(-50%,-50%) rotate(-45deg)
}

blockquote .read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
}

blockquote .read-more-target.show {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
}

blockquote .read-more-trigger {
    cursor: pointer;
    display: inline-block;
    color: #0C2C53;
    font-size: .9em;
    line-height: 2;
    text-decoration: underline;
}

.team-member .read-more-trigger{
    display: none;
}

blockquote p {
    position: relative;
}

.form-control {
    border-color: #0C2C53 ;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #0C2C53 ;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: #0C2C53 ;
}

input,
textarea {
    font-size: 1.3rem;
    padding: 1.3rem;
}

.two-col{
    columns: 2;
}

.text-col{
    max-width: 800px;
}

.text-col p{    
    font-size: 1.8rem;
    line-height: 2.2rem;
}
#get-in-touch .img-col{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
    background-image: url("../images/full-icon-red.png");
}
#get-in-touch .footer-img{
    max-height: 350px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.half-img{
    overflow: hidden;
}
footer img.logo{
    max-width: 230px;
}
.contact-us-banner img {
    max-height: 60vh;
}

.full-banner.contact-us-banner{
    min-height: 90vh;
}

.panel {
	margin: 0 auto;
	height: 500px;  
	width: 100%;
	position: relative;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
}

.panel .front,
.panel .back {
	text-align: center;
}
	
.panel .front {
	height: inherit;
	position: absolute;
	top: 0;
	z-index: 900;
	text-align: center;
	width: 100%;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	   -moz-transform: rotateX(0deg) rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}

.panel .back {
	height: inherit;
	position: absolute;
	top: 0;
	left: -25px;
	z-index: 1000;
	width: 100%;
    display: flex;
    align-items: center;
	-webkit-transform: rotateY(-180deg);
	   -moz-transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.flipped .panel.flip {
	z-index: 1;
}
.flipped .panel.flip .front {
	z-index: 900;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}
.panel.flip .back {
	z-index: 1000;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotateY(0deg);
}
.box1{
	max-width: 500px;
	height: 550px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
.box2{
	width: 400px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
.flipped .panel {
	z-index: 0;
}

.slick-arrow {
    background: transparent;
    border: none;
    font-size: 0;
    height: 40px;
    margin: .3rem;
    position: absolute;
    top: 45%;
    width: 40px;
}

.slick-arrow:before {
    border-bottom: 1px solid #FFF;
    border-right: 1px solid #FFF;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    top: 50%;
    width: 20px;
}

.slick-arrow:hover,.slick-arrow:hover:before {
    border-color: #0C2C53;
}

.slick-arrow.slick-prev {
    left: 0;
    z-index: 1;
}

.slick-arrow.slick-prev:before {
    left: 21px;
    transform: translate(-50%,-50%) rotate(135deg)
}

.slick-arrow.slick-next {
    right: 0;
}

.slick-arrow.slick-next:before {
    left: 17px;
    transform: translate(-50%,-50%) rotate(-45deg)
}

@media (max-width: 1200px) {
    .full-banner:not(.home-banner,.virtual-tour-banner) {
        height: auto;
        min-height: unset;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    #get-in-touch .footer-img{
        max-height: 70%;
        margin-top: 0;
        margin-bottom: 0;
    }
    .panel{
        height: 450px;
    }
    .box1{
        max-width: 450px;
        height: 450px;
    }
    .box2{
        width: 280px;
        font-size: 1rem;
    }
}
@media (max-width: 1024px) {
    .half-img .img-col img {
        max-height: 700px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        height: 100%;
    }
    .panel{
        height: 350px;
    }
    .box1{
        max-width: 350px;
        height: 350px;
    }
    .box2{
        width: 300px;
        font-size: 0.8rem;
        line-height: 1.2rem;
    }
    .panel .back{
        left: 5px;
    }
}
@media (max-width: 992px) {

    h1 {
        font-size: 3rem;
        line-height: 3.8rem;
    }

    h2 {
        font-size: 1.7rem;
        line-height: 2.3rem;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    h4.h5 {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }

    .full-banner.home-banner {
        height: 70vh;
        min-height: auto;
    }
    .full-banner:not(.home-banner,.virtual-tour-banner) {
        height: 40vh;
        min-height: auto;
    }
    .large-icon{
        max-height: 50px;
    }
    #get-in-touch .btn{
        padding: 10px 15px;
    }

    #virtual-tour iframe{
        max-height: 90vh;
    }
    .text-col p{    
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
    #welcome .d-md-block .small-icon,
    #outpatient-therapy .d-md-block .small-icon,
    #built-with-your .d-md-block .small-icon {
        max-height: 30px;
    }
    .inline-icon {
        height: 1.7rem;
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .team-member  .read-more-target {
        opacity: 0;
        max-height: 0;
        font-size: 0;
        transition: .25s ease;
    }
    
    .team-member  .read-more-target.show {
        opacity: 1;
        font-size: inherit;
        max-height: 999em;
    }
    
    .team-member  .read-more-trigger {
        cursor: pointer;
        display: inline-block;
        color: #0C2C53;
        font-size: .9em;
        line-height: 2;
        text-decoration: underline;
    }
    .icon-list li {
        padding-left: 30px;
    }
    .icon-list li::before{
        top: 2px;
    }
    .box .img-container .icon-circle{
        width: 75px;
        height: 75px;
    }
    .box .img-container .icon-circle .small-icon {
        max-height: 40px;
    }
    .slick-arrow.slick-next {
        right: -25px;
    }
    .slick-arrow.slick-prev {
        left: -25px;
    }
    .contact-us-banner img{
        max-width: 300px;
    }
    .two-md-col{
        columns:2;
    }
}
@media (max-width: 767px) {
    .full-banner h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .full-banner.contact-us-banner{
        height: auto;
        padding-top: 100px;
        background-size: cover;
    }
    .full-banner.careers-banner h1{
        padding-top: 100px;
        line-height: 3.3rem;
    }
    .full-banner:not(.home-banner,.virtual-tour-banner) h1{
        padding-top: 150px;
    }
    #virtual-tour iframe{
        max-height: 50vh;
    }
    .contact-us-banner img{
        max-width: 90%;
    }
    .home-banner{
        background-position: bottom 0 right -100px;
    }
    .two-md-col{
        columns:1;
    }

    .home-banner h1{
        color: #FFF;
    }
    .panel{
        height: 450px;
    }
    .box1{
        max-width: 450px;
        height: 450px;
    }
    .box2{
        width: 400px;
    }
}

@media (max-width: 575px) {
    .full-banner:not(.home-banner,.virtual-tour-banner) h1{
        color: #FFF;
        -webkit-text-stroke: 1px #F8F8F8;
        text-shadow: 0px 1px 4px #23430C;
    }
    .full-banner:not(.home-banner,.virtual-tour-banner,.contact-us-banner) {
        height: 80vh;
        background-size: cover;
    }
    .full-banner:not(.home-banner,.virtual-tour-banner,.contact-us-banner) .fadeInRight{
        position: absolute;
    }
    .contact-us-banner .fadeInLeft{
        position: absolute;
    }
    .contact-us-banner img{
        max-width: 80%;
    }
    .two-col{
        columns: 1;
    }
    header:not(.white){
        background-color: #ffffffcf;
    }
    .btn {
        padding: 8px 20px;
        border-radius: 25px;
    }
    .small-icon {
        max-height: 40px;
    }
    .box .img-container .icon-circle{
        width: 60px;
        height: 60px;
    }
    .box .img-container .icon-circle .small-icon {
        max-height: 30px;
    }
    .row .lg-img{
        max-width: 70vw;
    }
    .half-img .img-col img {
        display: none;
    }
    #get-in-touch .footer-img{
        max-height: unset;
    }
    .team-member .img-container {
        max-width: 70%;
        margin: 0 auto;
    }
    #our-mission .rounded-corners{
        border-radius: 0;
    }
    .panel{
        height: 400px;
    }
    .box1{
        max-width: 400px;
        height:400px;
    }
    .box2{
        width: 400px;
    }
}
@media (max-width: 375px) {
    .panel{
        height: 300px;
    }
    .box1{
        max-width: 300px;
        height:300px;
    }
    .box2{
        width: 300px;
    }
}