﻿@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/*#region Master*/
:root {
    --main-colour: #013059;
    --text-black: #3a3a3a;
    --text-gray: #737373;
    --light-cyan: #8cd2d4;
    --light-beige: #f3efea;
    --pale-aqua-mist: #F3FAFA;
    --screen-sm-padding: 45px 0;
    --screen-lg-padding: 75px 0;
}

body {
    position: relative;
    padding: 0;
    text-rendering: optimizeSpeed;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    color: var(--text-gray);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a, input {
    outline: 0;
    text-decoration: none;
}

    /* Change Autocomplete styles in Chrome*/
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        -webkit-text-fill-color: #353535;
        -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
        transition: background-color 5000s ease-in-out 0s;
    }

a {
    color: var(--main-colour);
}

    a:hover {
        text-decoration: none;
        color: var(--main-colour);
    }

ul {
    list-style: none;
}

li {
    font-size: 14px
}

.modal-loading {
    position: fixed;
    z-index: 1056;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background-color: Black;
    opacity: 0.85;
    -moz-opacity: 0.85;
}


#Progress {
    position: fixed;
    width: 64px;
    height: 64px;
    text-align: center;
    z-index: 1058;
    top: 40%;
    margin: 0 auto;
    display: flex;
    left: 0;
    right: 0;
    color: #fff;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 1rem;
    z-index: 99999;
}

    #back-top a {
        background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
        height: 40px;
        text-decoration: none;
        width: 40px;
        transition: all 200ms linear 0s;
        border-radius: 10px;
        align-items: center;
        display: grid;
    }

        #back-top a:hover, #back-top a:active {
            background-color: var(--main-colour);
            color: var(--darker-text-gray);
        }

        #back-top a svg {
            color: #fff;
            display: block;
            font-size: 15px;
            margin: 0 auto;
            text-align: center;
            height: 25px;
        }

.back-top-captcha {
    bottom: 6.5rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--blue);
    opacity: 1;
}

.form-switch .form-check-input {
    margin-top: 2.3px !important;
    width: 2.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(69, 85, 96,1)'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: var(--text-gray) !important;
    border-color: var(--text-gray) !important;
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255,1)'/%3e%3c/svg%3e");
}

p {
    font-size: 14px;
}

.section-title {
    margin-bottom: 20px;
}

    .section-title p {
        font-family: "Marcellus", serif !important;
        font-size: 13px;
        font-weight: 500;
        padding: 0;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        color: var(--text-black);
        margin-bottom: 10px;
    }

        .section-title p::after {
            content: "";
            width: 120px;
            height: 4px;
            display: inline-block;
            background: var(--light-cyan);
            margin: 2px 10px;
        }

    .section-title h2 {
        font-family: "Marcellus", serif !important;
        margin: unset;
        font-size: 26px;
        font-weight: 700;
        color: var(--text-black);
    }

    .section-title span {
        font-family: "Marcellus", serif !important;
    }


.btn-main {
    display: inline-block;
    font-weight: 700;
    background-color: #F4F4F4;
    border: 2px solid var(--light-cyan);
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    color: var(--light-cyan);
    font-size: 14px;
    padding: 15px 25px;
    transition: all 235ms ease-in-out;
}

    .btn-main:hover {
        background-color: #fff;
        color: var(--main-colour);
        box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
        transform: translate3d(0, 2px, 0);
        border: 2px solid var(--main-colour);
    }

.block-icon {
    height: 30px;
    width: 30px;
    color: var(--light-cyan);
    transition: 0.5s;
    margin-right: 20px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light-cyan);
    flex: none;
}

    .block-icon svg {
        color: var(--light-cyan);
        width: 16px;
    }

.text-blue {
    color: var(--main-colour) !important;
}

.text-light-cyan {
    color: var(--light-cyan) !important;
}

/*#endregion*/

/*#region Navbar*/

.navbar {
    background: #fff;
    padding: 15px 0;
    transition: all 0.5s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    .navbar .navbar-brand img {
        max-width: 65px;
    }

    .navbar .navbar-nav .nav-item {
        border-bottom: 1px solid #f3f3f3;
    }

        .navbar .navbar-nav .nav-item .nav-link {
            font-size: 14px;
            position: relative;
            font-weight: 700;
            padding: 10px 20px;
        }

/*#endregion*/

/*#region Banner*/

.banner {
    padding: var(--screen-sm-padding);
    background-color: var(--light-beige);
}

    .banner img {
        max-height: 330px;
    }

    .banner .section-title h2 {
        font-size: 40px;
        font-weight: 800;
        color: var(--main-colour);
    }

    .banner p {
        font-size: 18px;
        font-weight: 300;
        color: var(--text-gray);
    }

/*#endregion*/

/*#region About*/

.about {
    padding: var(--screen-sm-padding);
    background-color: #fff;
}

    .about .about-content {
        padding: 30px;
        border-radius: 15px;
        background-color: var(--light-beige);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    }

    .about p {
        color: var(--text-gray);
    }

/*#endregion*/

/*#region Play Therapy*/

.play-therapy {
    padding: var(--screen-sm-padding);
    background-color: var(--pale-aqua-mist);
}

    .play-therapy .play-therapy-content {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    }

.play-therapy-info {
    margin-bottom: 40px;
}

.play-therapy-notice {
    background-color: var(--light-beige);
    padding: 30px;
    border-radius: 15px;
}

    .play-therapy-notice h3 {
        font-family: "Marcellus", serif !important;
        color: var(--main-colour);
        font-size: 18px;
        margin-bottom: 20px;
    }

.play-therapy .play-therapy-notice label {
    font-size: 14px;
}

/*#endregion*/

/*#region Dog Therapy*/

.dog-therapy {
    padding: var(--screen-sm-padding);
    background-color: var(--light-beige);
}

    .dog-therapy .dog-therapy-content {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    }

/*#endregion*/

/*#region Parenting*/

.parenting {
    padding: var(--screen-sm-padding);
}

/*#endregion*/

/*#region Teachers*/

.teachers {
    padding: var(--screen-sm-padding);
    background-color: var(--light-beige);
}

/*#endregion*/

/*#region Contact*/

.contact {
    padding: var(--screen-sm-padding);
    background-color: var(--light-beige);
}

    .contact .form-floating textarea.form-control {
        height: 150px !important;
    }

    .contact i {
        color: var(--text-gray);
        font-style: italic;
        font-size: 13px;
    }

    .contact .contact-notice {
        background-color: #fff;
        padding: 30px;
        border-radius: 15px;
    }

        .contact .contact-notice h3 {
            font-family: "Marcellus", serif !important;
            color: var(--main-colour);
            font-size: 18px;
            margin-bottom: 20px;
        }

        .contact .contact-notice label {
            font-size: 14px;
        }

    .contact .form-floating > label {
        font-size: 13px;
    }

/*#endregion*/

/*#region About Owner*/

.about-owner {
    padding: var(--screen-sm-padding);
}

.about-owner {
    padding: var(--screen-sm-padding);
}

    .about-owner .about-owner-qualifications {
        margin-top: 30px;
        padding: 25px;
        background-color: var(--pale-aqua-mist);
        border-radius: 15px;
    }

        .about-owner .about-owner-qualifications h3 {
            font-family: "Marcellus", serif !important;
            color: var(--main-colour);
            font-size: 18px;
            margin-bottom: 15px;
        }

        .about-owner .about-owner-qualifications label {
            font-size: 14px;
        }

/*#endregion*/

/*#region Footer*/

.footer {
    padding-top: 25px;
    background-color: #f7f7f7;
}

    .footer .container {
        padding-bottom: 25px;
    }

    .footer .footer-block img {
        margin-bottom: unset;
        max-width: 65px;
    }

    .footer .footer-block h2 {
        font-size: 14px;
        color: var(--light-cyan);
        font-weight: 800;
    }

    .footer .footer-block ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .footer .footer-block ul li {
            margin-bottom: 10px;
        }

            .footer .footer-block ul li:last-child {
                margin: unset;
            }

    .footer .footer-block label {
        font-size: 14px;
    }

    .footer .footer-block ul li a {
        position: relative;
        color: var(--text-black);
        transition: 0.5s;
        font-size: 12px;
    }

        .footer .footer-block ul li a::before {
            content: "\f061";
            font-weight: 600;
            left: 0;
            opacity: 0;
            transition: 0.5s;
            position: absolute;
            font-family: "Font Awesome 6 Free";
        }

        .footer .footer-block ul li a:hover {
            padding-left: 20px;
            text-decoration: underline;
            color: var(--light-cyan);
        }

            .footer .footer-block ul li a:hover::before {
                opacity: 1;
                color: var(--light-cyan);
            }

    .footer .footer-block svg {
        width: 16px;
    }

    .footer .copyright_area {
        background: #fff;
        color: var(--text-black);
        text-align: center;
        padding: 20px 15px;
        font-size: 12px;
    }

        .footer .copyright_area a {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--main-colour);
            transition: 0.5s;
        }

            .footer .copyright_area a:hover {
                color: var(--light-cyan);
            }

/*#endregion*/

/*#region Privacy Policy*/

.privacy {
    padding-top: 45px; /*80px for navbar height*/
    padding-bottom: 50px;
    position: relative;
}

    .privacy h2 {
        font-size: 30px;
        font-weight: bold;
    }

    .privacy p {
        font-size: 16px;
        line-height: 33px;
    }

/*#endregion*/

/*#region Error*/

.error {
    padding: 50px 0;
}

    .error img {
        margin-bottom: 25px;
    }

    .error h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .error h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .error p {
        font-size: 14px;
    }

/*#endregion*/





/*RESPONSIVE STYLES PER BREAK POINT*/

/* SM Screen (600px and up) */
@media (min-width: 600px) {
}

/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {

    /*#region Footer*/

        .footer .footer-block img {
            max-width: 120px;
        }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 35px;
    }

    /*#endregion*/
}

/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {

    /*#region Navbar*/

    .navbar .navbar-nav .nav-item {
        border: unset;
    }

        .navbar .navbar-nav .nav-item .nav-link {
            font-size: 16px;
        }

            .navbar .navbar-nav .nav-item .nav-link::after {
                content: "";
                display: block;
                position: absolute;
                bottom: 0;
                left: 0;
                right: 100%;
                top: 100%;
                transition: transform 0.6s cubic-bezier(0.19,1,0.22,1);
                border-bottom: 3px solid var(--light-cyan);
                transition: right 0.5s;
                margin: 0px 10px 0 10px;
            }

            .navbar .navbar-nav .nav-item .nav-link:hover {
                color: var(--light-cyan);
            }

                .navbar .navbar-nav .nav-item .nav-link:hover::after {
                    right: 0;
                    transform: scaleX(1);
                    transform-origin: left center;
                    transition-duration: 0.4s;
                }

            .navbar .navbar-nav .nav-item .nav-link.active::after {
                right: 0;
            }

            .navbar .navbar-nav .nav-item .nav-link.active {
                color: var(--light-cyan);
            }

    /*#endregion*/

    /*#region Banner*/

    .banner {
        padding: var(--screen-lg-padding);
    }

        .banner img {
            max-height: 100%;
        }

        .banner .section-title {
            margin-bottom: 25px;
        }

    /*#endregion*/

    /*#region About*/

    .about {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Play Therapy*/

    .play-therapy {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Dog Therapy*/

    .dog-therapy {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Parenting*/

    .parenting {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Teachers*/

    .teachers {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Contact*/

    .contact {
        padding: var(--screen-lg-padding);
    }


        .contact .form-floating > label {
            font-size: 14px;
        }

    /*#endregion*/

    /*#region About Owner*/

    .about-owner {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

        .footer .container {
            padding-bottom: 50px;
        }


        .footer .footer-block ul li a {
            font-size: 14px;
        }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy {
        padding: var(--screen-lg-padding);
    }

        .privacy h2 {
            font-size: 40px;
        }

    /*#endregion*/
}

/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 40px;
        }

        .section-title p {
            font-size: 22px;
        }

    p {
        font-size: 16px;
    }

    /*#region Banner*/

    .banner {
        padding: var(--screen-lg-padding);
    }

        .banner .section-title h2 {
            font-size: 70px;
        }

        .banner p {
            font-size: 22px;
        }

    /*#endregion*/

    /*#region About*/

    about .about-content {
        padding: 40px;
    }

    /*#endregion*/

    /*#region Play Therapy*/

    .play-therapy .play-therapy-content {
        padding: 60px;
    }

    .play-therapy .play-therapy-notice h3 {
        font-size: 24px;
    }

    .play-therapy .play-therapy-notice label {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Dog Therapy*/

    .dog-therapy .dog-therapy-content {
        padding: 60px;
    }

    /*#endregion*/

    /*#region Parenting*/

    .parenting {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region About Owner*/

    .about-owner .about-owner-qualifications h3 {
        font-size: 24px;
    }

    .about-owner .about-owner-qualifications label {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Contact*/

    .contact .contact-notice h3 {
        font-size: 24px;
    }

    .contact .contact-notice label {
        font-size: 16px;
    }

    .contact .contact-notice label {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer .copyright_area {
        font-size: 14px;
    }

    /*#endregion*/

    /*#region Error Page*/

    .error h1 {
        font-size: 85px;
    }

    .error h2 {
        font-size: 75px;
        margin-bottom: 30px;
    }

    .error p {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 45px;
    }

    /*#endregion*/
}

/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {
}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {
}

/*Extra Large Screen 32 Inch ( (Resolution 3840x2160 ) 3840px and up) */
@media (min-width: 3840px) {
}
