/* 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 {
    --site-width: 1300px;
    --pale-orange: #FBF4EB;
    --medium-orange: #FBE6DC;
    --orange: #F19473;
    --light-orange: #F8C6B0;
    --brown: #665A54;
    --gray: #707070;
    --transparent-brown:rgba(102, 90, 84, 0.8);
}

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;
}

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;
}

.site-width{
    max-width: var(--site-width);
    margin: 0 auto;
}
/* specifics */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--brown);
    text-align: center;
    overflow-x: hidden;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6rem;
}

.font-title{
    font-family: 'abril-display', Arial, sans-serif;
}
.btn{
    border-radius: 25px;
    padding: 10px 25px;
}
.btn-primary{
    background-color: var(--orange);
    border-color: var(--orange);
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus
{
    background-color: var(--brown) !important;
    border-color: var(--brown) !important;
}
.btn-secondary{
    background-color: var(--brown);
    border-color: var(--brown);
}

.btn-secondary:active,
.btn-secondary:hover,
.btn-secondary:focus
{
    background-color: var(--orange) !important;
    border-color: var(--orange) !important;
}

.bg-pale-orange{
    background-color: var(--pale-orange);
}

.bg-light-orange{
    background-color: var(--light-orange);
}

.bg-medium-orange{
    background-color: var(--medium-orange);
}
.bg-pattern{
    background-position: center;
    background-size: cover;
    background-image: url("../images/Cadbury-pattern.png");
}
.bg-transparent-brown{
    background-color: var(--transparent-brown);
}
.text-brown{
    color: var(--brown);
}
.text-gray{
    color: var(--gray);
}
.text-orange{
    color: var(--orange);
}

/* header */
header.fixed{
    position: fixed;
    width: 100%;
    z-index: 2;
    background-color: white;
}
nav a{
    color: var(--brown);
}
nav a.active,
nav a:active,
nav a:hover,
nav a:focus,
a.text-brown:active,
a.text-brown:hover,
a.text-brown:focus
{
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid var(--orange);
}
nav a.dropdown-toggle{
    border-bottom: none;
}
.dropdown-toggle::after{
    display:none;
}


.h2{
    font-size: 2.5rem;
    line-height: 3rem;
}
.h6{
    font-size: 0.9rem;
}

.text-underline{
    text-decoration: underline;
}

.rounded-corners{
    border-radius: 25px;
}

.icon-overlay{
    position: relative;
    z-index: 0;
    display: inline-block;
}

.icon-overlay::after{
    content: '';
    background-image: url("../images/Cadbury-icon.png");
    width: 25%;
    height: 25%;
    position: absolute;
    right: -8%;
    top: -10%;
    z-index: 1;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.lg-icon.icon-overlay::after{
    width: 10rem;
    height: 10rem;
    top: -15%;
}
.xl-icon.icon-overlay::after{
    width: 100%;
    height: 100%;
    top: -25%;
    right: -32%;
    z-index: -1;
    background-image: url("../images/Icon-behind-pic.png");
}


.left.icon-overlay::after{
    right: unset;
    left: -8%;
}
.lg-icon.left.icon-overlay::after{
    left: -3rem;
}

.center.icon-overlay::after{
    width: 100%;
    left: 0;
}
.faded-icon{
    position: relative;
    z-index: 0;
}
.faded-icon::after{
    position: absolute;
    content: '';
    background-image: url("../images/cadbury-nursing-and-rehab-our-care-faded-icon.png");    
    width: 5rem;
    height: 5rem;
    left: -1rem;
    top: -1rem;
    z-index: -1;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.full-banner{
    height: 80vh;
    min-height: 800px;
    background-position: center;
    background-size: cover;
}

.home-banner{
    background-image: url("../images/Cadbury-Homepage-banner-picture-senior.jpg");
}
.about-banner{
    background-image: url("../images/Cadbury-about-us-senior-with-nurse-photo.jpg");
    background-position: center top;
}
.independent-living-banner{
    background-image: url("../images/Cadbury-independant-living-photo.jpg");
    background-position: center top;
}
.assisted-living-banner{
    background-image: url("../images/Cadbury-assisted-living-happy-senior-couple-photo.jpg");
}
.nursing-and-rehab-banner{
    background-image: url("../images/Cadbury-Nursing-and-Rehabilitation-photo-wheelchair-senior-aid-family.jpg");
    background-position: center top;
}
.our-facility-banner{
    background-image: url("../images/Cadbury-our-facility-photo-building.jpg");
}
.careers-banner{
    background-image: url("../images/Cadbury-join-our-team-photo-nurse-aid-assisting-senior-care.jpg");
    background-position: center top;
}


#testimonials{
    background-image: url("../images/Cadbury-testimonials-photo-senior-living-center.jpg");
    background-size: cover;
    background-position: center;
}

.two-col{
    columns: 2;
}
.three-col{
    columns: 3;
}


.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;
}



.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: var(--light-orange);
}

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

.slick-dots li.slick-active button {
    background: var(--orange);
}

.slick-list.draggable {
    height: auto !important;
}

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

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

.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    color: var(--orange);
    font-size: .9em;
    line-height: 2;
    text-decoration: underline;
}

blockquote p {
    position: relative;
}
.small-icon{
    height: 45px;
}
.modal-content{
    background: transparent;
    border:none;
}
.modal-header{
    border-bottom: none;
}
.modal-backdrop.show {
    opacity: .7;
}
.form-control{
    background-color: transparent;
    border-color: var(--gray);
    border-radius: 0;
}

.z-1{
    z-index:1;
}
@media (max-width: 1200px){
    .full-banner{
        min-height: unset;
        height: 50vh;
    }
}
@media (max-width: 992px){
    .display-4{
        font-size: 2.5rem;
    }
    .lg-icon.icon-overlay::after{
        width: 7rem;
        height: 7rem;
        top: -4rem;
    }
    .h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .faded-icon::after{
        top: -2rem;
    }
    .h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (max-width: 600px){
    .lg-icon.icon-overlay::after{
        width: 5rem;
        height: 5rem;
        right: -3rem;
        top: -2.3rem;
    }
    .lg-icon.icon-overlay.left::after{
        top: -3rem;
        left: -2rem;
    }
    .display-4{
        font-size: 2rem;
    }
    .h2{
        font-size: 1.8rem;
        line-height: 2.3rem;
    }
    .h3{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .two-col, .three-col{
        columns: 1;
    }
    .body-icon{
        max-width: 70%;
        margin: 0 auto;
    }
    .icon-overlay.center{
        max-width: 80%;
        margin: 0 auto;
    }
    .icon-overlay.center::after{
        height: 15%;
        top: -6%;
    }
    .faded-icon::after {
        width: 4rem;
        height: 4rem;
        top: -1rem;
    }
}