/* 
 * Variables & Theme 
 */
:root {
    --text-color: #000000;
    --bg-color: #ffffff;
    --nav-color: rgba(74, 79, 77, 1);
    --nav-color-hover: rgba(217, 154, 108, 1);
    --heading-color: #CE7914;
    --btn-color-orange: #D9996C;
    --box-color-orange: #E9DCC9;
    --box-color-green: #A8C3A0;
    --box-color-black: #B8C9CC;
    --box-color-yellow: #ece0b8;
    --box-color-blue: #c1d6e9;
    --box-color-red: #efd6c4;
    --font-heading: 'Bubblegum Sans', sans-serif;
    --font-sub-heading: 'Montserrat', sans-serif;
    --font-body: 'Ubuntu', sans-serif;
    --transition-speed: 0.3s;
}
/* 
 * Global Resets & Styles 
 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 0px;
}
a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}
img {
    max-width: 100%;
    height: auto;
}
/* 
 * Button Orange 
 */
.btn-orange {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid var(--btn-color-orange);
    background-color: var(--btn-color-orange);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/* White sweep animation with 5px spacing - left to right */
.btn-orange::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: calc(-100% - 5px);
    width: calc(100% - 10px);
    background-color: #F9F7F3;
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}
.btn-orange:hover::before {
    left: 5px;
}
.btn-orange:hover {
    color: var(--btn-color-orange);
    background-color: var(--btn-color-orange);
    border: 1px solid var(--btn-color-orange);
}
.btn-orange i.icofont-arrow-right {
    font-family: "icofont";
    margin-left: 10px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--btn-color-orange);
    color: #F9F7F3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.btn-orange:hover i.icofont-arrow-right {
    background-color: var(--btn-color-orange);
    color: #ffffff;
}
/* 
 * Button Black 
 */
.btn-black {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid var(--nav-color);
    background-color: var(--nav-color);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-black::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: calc(-100% - 5px);
    width: calc(100% - 10px);
    background-color: #F9F7F3;
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}
.btn-black:hover::before {
    left: 5px;
}
.btn-black:hover {
    color: var(--nav-color);
    background-color: var(--nav-color);
    border: 1px solid var(--nav-color);
}
.wide-container {
    max-width: 1200px;
    margin: 0 auto;
}
.container {
    max-width: 1100px;
}
/* Banner Animation */
.carousel-item {
    background-size: 150%;
    background-position: center;
    transition: background-size 1.6s ease, background-position 1.6s ease;
}
.carousel-item.active {
    background-size: 125%;
    background-position: center;
}
.carousel-caption-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}
.carousel-item.active .carousel-caption-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}
/* 
 * Header Section
 */
.navbar-brand {
    display: inline-block;
    margin-right: 50px;
    max-width: 150px;
}
.nav-item {
    position: relative;
}
.nav-item a {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 14.6px;
    line-height: 16.7px;
    margin: 0px 10px;
    color: var(--nav-color);
    text-transform: uppercase;
    padding-top: 20px;
}
.nav-item.dropdown a::after {
    content: none;
}
.nav-item.active > a, .nav-item > a:hover, .navbar-nav li.nav-item.dropdown:hover > a {
    color: var(--nav-color-hover);
}
.navbar-nav > .nav-item.active > a::before, .navbar-nav > .nav-item > a:hover::before, .navbar-nav > .nav-item:hover > a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
    width: 15px;
    height: 25px;
    background-image: url('../img/icon.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
.navbar-nav .dropdown-menu li {
    display: flex;
}
.navbar-nav .dropdown-menu li .dropdown-item:focus, .navbar-nav .dropdown-menu li .dropdown-item:hover {
    background-color: transparent;
}
.navbar-nav li.nav-item.dropdown > ul {
	padding-top: 16px;
	padding-bottom: 16px;
	border-bottom-right-radius: 32px;
    margin-top: 0;
}
.navbar-nav li.nav-item.dropdown .dropdown-menu .nav-item a {
	padding: 8px;
}
.navbar-nav .dropdown-menu li {
	margin-bottom: 8px;
}
.navbar-nav .dropdown-menu li:last-child {
	margin-bottom: 0;
}
/* 
 * Footer Section
 */
#footer-section.footer-box {
    padding: 20px;
    background-color: rgba(217, 154, 108, 0.28);
}
#footer-section .footer-col-1 img {
    width: 80%;
    margin-bottom: 50px;
}
#footer-section .footer-col-1 p {
    width: 80%;
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    color: var(--nav-color);
    margin-bottom: 20px;
}
#footer-section .footer-col-2 h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 35px;
    color: var(--nav-color);
    margin-bottom: 20px;
}
#footer-section .footer-col-2 p {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 30px;
    color: var(--nav-color);
    margin-bottom: 20px;
}
#footer-section .footer-col-3 h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 35px;
    color: var(--nav-color);
    margin-bottom: 20px;
}
#footer-section .footer-col-3 ul {
    list-style: none;
    padding-left: 0px !important;
}
#footer-section .footer-col-3 ul li a {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 30px;
    color: var(--nav-color);
    margin-bottom: 8px;
}
#footer-section .footer-col-4 h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 35px;
    color: var(--nav-color);
    margin-bottom: 20px;
}
#footer-section .footer-col-4 ul {
    list-style: none;
    padding-left: 0px !important;
}
#footer-section .footer-col-4 ul li {
    display: inline-block;
    margin-right: 0px;
}
#footer-section .footer-col-4 ul li a i {
    font-size: 3em;
}
/**
 * Home Page Styles
 */
/* 
 * Hero Banner Section
 */
#hero-section .carousel-inner {
    border-radius: 0px 0px 90px 90px;
}
#hero-section .carousel-item {
    min-height: 400px;
    background-color: rgba(249, 247, 243, 0.4);
    background-repeat: no-repeat;
}
#hero-section .carousel-container {
    position: absolute;
    right: unset !important;
    bottom: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(249, 247, 247, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(253, 252, 250, 0) 50%);
}
#hero-section .carousel-caption {
    width: 1100px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}
#hero-section .carousel-caption .carousel-caption-container {
    width: 350px;
    text-align: left;
}
#hero-section .carousel-caption .carousel-caption-container h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 33.3px;
    line-height: 38.3px;
    color: var(--heading-color);
    margin-bottom: 15px;
}
#hero-section .carousel-control-next {
    right: 40px !important;
}
#hero-section .carousel-control-prev {
    left: 40px !important;
}
#hero-section .carousel-control-next,
#hero-section .carousel-control-prev {
    background-color: #d9996c;
    color: #4a4f4d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: unset !important;
    bottom: 20% !important;
}
#hero-section .carousel-control-next-icon,
#hero-section .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
}
/* 
 * About Us Section
 */
#about-section .about-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 50px 12px 50px 12px;
    text-align: center;
    width: 100%;
    cursor: pointer;
}
#about-section .about-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(350deg);
    transition: transform 0.8s ease;
    box-sizing: border-box;
    border-radius: 50px 12px 50px 12px;
}
#about-section .about-box:hover::before {
    transform: rotate(360deg);
}
#about-section .about-box-orange {
    position: relative;
    background-color: lab(88.32% 1.33 10.92);
}
#about-section .about-box-green {
    position: relative;
    background-color: #a8c3a0;
}
#about-section .about-box-black {
    position: relative;
    background-color: #b8c9cc;
}
#about-section .about-box-orange::before {
    border: 1px solid #ce7914;
}
#about-section .about-box-green::before {
    border: 1px solid #2b735b;
}
#about-section .about-box-black::before {
    border: 1px solid #525b5c;
}
#about-section .about-box h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
}
#about-section .about-box img {
    width: 70px;
    height: 70px;
}
#about-section .about-box h3 {
    font-family: var(--font-sub-heading);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 10px;
}
/* 
 * Vision Section
 */
#vision-section .vision-banner {
    max-width: 1080px;
    margin: 0 auto;
}
#vision-section .carousel-indicators {
    right: unset !important;
    margin-right: 0px !important;
    margin-left: 40px !important;
}
#vision-section .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ce7914;
}
#vision-section .carousel-indicators [data-bs-target].active {
    background-color: #ce7914;
}
#vision-section .carousel-inner {
    border-radius: 12px;
}
#vision-section .carousel-item {
    min-height: 400px;
    background-color: rgba(249, 247, 243, 0.4);
    background-repeat: no-repeat;
}
#vision-section .carousel-outer {
    position: absolute;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100%;
    background: linear-gradient(270deg, rgba(249, 247, 247, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(253, 252, 250, 0) 100%);
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
}
#location-page #banner-section {
    margin-bottom: 24px;
}
#vision-section .carousel-outer .carousel-outer-container {
    width: 400px;
    text-align: left;
    padding: 20px 20px 20px 0;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
#vision-section .carousel-outer .carousel-outer-container h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 33.3px;
    line-height: 38.3px;
    color: var(--nav-color);
    margin-bottom: 15px;
}
#vision-section .carousel-caption .carousel-caption-container p {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    color: var(--nav-color);
    margin-bottom: 15px;
}
/* 
 * calculate Section
 */
#calculate-section.calculate-box {
    padding: 20px;
    border-radius: 50px 50px 0px 0px;
    background-color: rgba(209, 180, 82, 0.28);
}
#calculate-section .calculate-box-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#calculate-section .calculate-box-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
#calculate-section .calculate-box-text h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 35px;
    color: var(--nav-color);
    margin-bottom: 10px;
}
#calculate-section .calculate-box-text p {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    color: var(--nav-color);
    margin-bottom: 10px;
}
#calculate-section .calculate-box-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* 
 * Testimonial Section
 */
#testimonial-section {
    padding: 20px;
    border-radius: 0px;
}
#testimonial-section .testimonial-img img {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 12px 12px 90px 90px;
}
#testimonial-section .testimonial-text h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 35px;
    color: var(--nav-color);
    margin-bottom: 20px;
}
#testimonial-section .testimonial-text p {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    color: var(--nav-color-hover);
    margin-bottom: 20px;
}
#testimonial-section .testimonial-text h3 {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: italic;
    font-size: 20px;
    line-height: 24px;
    color: var(--nav-color);
    margin-bottom: 0px;
}
#testimonial-section .carousel-control-next {
    right: -50px !important;
}
#testimonial-section .carousel-control-prev {
    left: -50px !important;
}
#testimonial-section .carousel-control-next,
#testimonial-section .carousel-control-prev {
    color: #4a4f4d;
    width: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
/**
 * Teams Page Styles
 */
/* 
 * Page Banner Section
 */
#team-page #banner-section .carousel-inner {
    border-radius: 0px 0px 90px 90px;
}
#team-page #banner-section .carousel-item {
    min-height: 200px;
    background-color: rgba(244, 225, 211, 1);
    background-repeat: no-repeat;
}
#team-page #banner-section .carousel-outer {
    position: absolute;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100%;
    background: linear-gradient(90deg, rgba(217, 154, 108, 1) 20%, rgba(217, 154, 108, 1) 22%, rgba(255, 255, 255, 0) 100%);
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0px 0px 90px 90px;
    z-index: 1;
}
#team-page #banner-section .carousel-outer .carousel-outer-container {
    width: 1000px;
    text-align: left;
    margin: 20px auto 20px auto;
}
#team-page #banner-section .carousel-outer .carousel-outer-container h1 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 72px;
    line-height: 84px;
    color: var(--nav-color);
    margin-bottom: 15px;
}
#team-page #banner-section .carousel-control-next {
    right: 40px !important;
}
#team-page #banner-section .carousel-control-prev {
    left: 40px !important;
}
#team-page #banner-section .carousel-control-next,
#team-page #banner-section .carousel-control-prev {
    background-color: #d9996c;
    color: #4a4f4d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: unset !important;
    bottom: 20% !important;
    opacity: 1;
}
#team-page #banner-section .carousel-control-next-icon,
#team-page #banner-section .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
}
/* 
 * Teams Section
 */
#team-page #teams-section h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 58px;
    line-height: 68px;
    color: var(--nav-color);
    text-align: center;
    margin-bottom: 20px;
}
#team-page #teams-section .teams-box {
    padding: 0px;
    margin-bottom: 20px;
    border-radius: 9px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}
#team-page #teams-section .teams-box-orange {
    position: relative;
    background-color: var(--box-color-orange);
}
#team-page #teams-section .teams-box-green {
    position: relative;
    background-color: var(--box-color-green);
}
#team-page #teams-section .teams-box-black {
    position: relative;
    background-color: var(--box-color-black);
}
#team-page #teams-section .teams-box .team-img {
    min-height: 230px;
    border-radius: 12px 12px 50px 12px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#team-page #teams-section .teams-box h3 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    line-height: 30px;
    text-align: left;
    color: var(--btn-color-orange);
    margin-bottom: 10px;
}
#team-page #teams-section .teams-box p {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 14px;
    text-align: left;
}
#team-page #teams-section .teams-box h4 {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    color: var(--btn-color-orange);
    margin-bottom: 20px;
}
/**
 * Childcare Page Styles
 */
/* 
 * Hero Banner Section
 */
#childcare-page #hero-section .carousel-indicators {
    margin-right: 0px !important;
    margin-left: 100px !important;
}
#childcare-page #hero-section .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ce7914;
}
#childcare-page #hero-section .carousel-indicators [data-bs-target].active {
    background-color: #ce7914;
}
#childcare-page #hero-section .carousel-inner {
    border-radius: 0px 0px 90px 90px;
}
#childcare-page #hero-section .carousel-item {
    min-height: 400px;
    background-color: rgba(247, 240, 232, 0.4);
    background-repeat: no-repeat;
}
#childcare-page #hero-section .carousel-container {
    position: absolute;
    right: unset !important;
    bottom: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100%;
    height: 100%;
}
#childcare-page #hero-section .carousel-caption {
    width: 1100px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}
#childcare-page #hero-section .carousel-caption .carousel-caption-container {
    width: 350px;
    text-align: left;
}
#childcare-page #hero-section .carousel-caption .carousel-caption-container h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 33.3px;
    line-height: 38.3px;
    color: var(--nav-color);
    margin-bottom: 15px;
}
#childcare-page #hero-section .carousel-caption .carousel-caption-container p {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    color: var(--nav-color);
    margin-bottom: 15px;
}
#childcare-page #hero-section .carousel-control-next {
    right: 40px !important;
}
#childcare-page #hero-section .carousel-control-prev {
    left: 40px !important;
}
#childcare-page #hero-section .carousel-control-next,
#childcare-page #hero-section .carousel-control-prev {
    background-color: #d9996c;
    color: #4a4f4d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: unset !important;
    bottom: 20% !important;
}
#childcare-page #hero-section .carousel-control-next-icon,
#childcare-page #hero-section .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
}
/* 
 * Location Section
 */
#childcare-page #location-section .location-heading h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    line-height: 70px;
    color: var(--heading-color);
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}
#childcare-page #location-section .location-sub-heading h3 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    color: var(--nav-color);
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}
#childcare-page #location-section .location-box {
    padding: 20px;
    border-radius: 0px 0px 50px 50px;
    width: 100%;
    background-color: #f5eee6;
}
#childcare-page #location-section .carousel-indicators {
    margin-right: 0px !important;
    margin-left: 100px !important;
}
#childcare-page #location-section .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ce7914;
}
#childcare-page #location-section .carousel-indicators [data-bs-target].active {
    background-color: #ce7914;
}
#childcare-page #location-section .carousel-inner {
    overflow: unset !important;
}
#childcare-page #location-section .carousel-inner-left .carousel-item {
    min-height: 400px;
    background-color: rgba(247, 240, 232, 0.4);
    background-repeat: no-repeat;
    margin-left: -30px;
    margin-top: -20px;
    border-radius: 0px 50px 50px 0px;
}
#childcare-page #location-section .carousel-inner-right .carousel-item {
    min-height: 400px;
    background-color: rgba(247, 240, 232, 0.4);
    background-repeat: no-repeat;
    margin-right: -30px;
    margin-top: -20px;
    border-radius: 50px 0px 0px 50px;
}
/* 
 * About Us Section
 */
#childcare-page #about-section .about-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 50px 12px 50px 12px;
    text-align: center;
    width: 100%;
    cursor: pointer;
}
#childcare-page #about-section .about-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(350deg);
    transition: transform 0.8s ease;
    box-sizing: border-box;
    border-radius: 50px 12px 50px 12px;
}
#childcare-page #about-section .about-box:hover::before {
    transform: rotate(360deg);
}
#childcare-page #about-section .about-box-yellow {
    position: relative;
    background-color: var(--box-color-yellow);
}
#childcare-page #about-section .about-box-blue {
    position: relative;
    background-color: var(--box-color-blue);
}
#childcare-page #about-section .about-box-red {
    position: relative;
    background-color: var(--box-color-red);
}
#childcare-page #about-section .about-box-yellow::before {
    border: 1px solid #d39c73;
    z-index: 1;
}
#childcare-page #about-section .about-box-blue::before {
    border: 1px solid #2d7abe;
    z-index: 1;
}
#childcare-page #about-section .about-box-red::before {
    border: 1px solid #d39c73;
    z-index: 1;
}
#childcare-page #about-section .about-box h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
}
#childcare-page #about-section .about-box img {
    width: 70px;
    height: 70px;
}
#childcare-page #about-section .about-box h3 {
    font-family: var(--font-sub-heading);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 10px;
}
#childcare-page #about-section .about-box i {
    font-size: 5em;
}
/* 
 * Vision Section
 */
#childcare-page #vision-section .vision-banner {
    max-width: 1080px;
    margin: 0 auto;
}
#childcare-page #vision-section .carousel-indicators {
    right: unset !important;
    margin-right: 0px !important;
    margin-left: 40px !important;
}
#childcare-page #vision-section .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ce7914;
}
#childcare-page #vision-section .carousel-indicators [data-bs-target].active {
    background-color: #ce7914;
}
#childcare-page #vision-section .carousel-inner {
    border-radius: 12px;
}
#childcare-page #vision-section .carousel-item {
    min-height: 400px;
    background-color: rgba(249, 247, 243, 0.4);
    background-repeat: no-repeat;
}
#childcare-page #vision-section .carousel-outer {
    position: absolute;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100%;
    background: linear-gradient(270deg, rgba(233, 220, 201, 1) 0%, rgba(233, 220, 201, 1) 35%, rgba(233, 220, 201, 0) 100%);
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
}
#childcare-page #vision-section .carousel-outer .carousel-outer-container {
    width: 400px;
    text-align: left;
    margin: 20px 20px 20px 0;
}
#childcare-page #vision-section .carousel-outer .carousel-outer-container h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 33.3px;
    line-height: 38.3px;
    color: var(--nav-color);
    margin-bottom: 5px !important;
}
#childcare-page #vision-section .carousel-caption .carousel-caption-container p {
    font-family: var(--font-sub-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    color: var(--nav-color);
    margin-bottom: 5px !important;
}
/**
 * Location Page Styles
 */
/* 
 * Page Banner Section
 */
#location-page #banner-section .carousel-inner {
    border-radius: 0px 0px 90px 90px;
}
#location-page #banner-section .carousel-item {
    min-height: 200px;
    background-color: rgba(244, 225, 211, 1);
    background-repeat: no-repeat;
}
#location-page #banner-section .carousel-outer {
    position: absolute;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100%;
    background: linear-gradient(90deg, rgba(217, 154, 108, 1) 20%, rgba(217, 154, 108, 1) 22%, rgba(255, 255, 255, 0) 100%);
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0px 0px 90px 90px;
    z-index: 1;
}
#location-page #banner-section .carousel-outer .carousel-outer-container {
    width: 1000px;
    text-align: left;
    margin: 20px auto 20px auto;
}
#location-page #banner-section .carousel-outer .carousel-outer-container h1 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 72px;
    line-height: 84px;
    color: var(--nav-color);
    margin-bottom: 15px;
}
#location-page #banner-section .carousel-control-next {
    right: 40px !important;
}
#location-page #banner-section .carousel-control-prev {
    left: 40px !important;
}
#location-page #banner-section .carousel-control-next,
#location-page #banner-section .carousel-control-prev {
    background-color: #d9996c;
    color: #4a4f4d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: unset !important;
    bottom: 20% !important;
    opacity: 1;
}
#location-page #banner-section .carousel-control-next-icon,
#location-page #banner-section .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
}
/* 
 * Location Section
 */
#location-page #location-section .location-heading h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    line-height: 70px;
    color: var(--heading-color);
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}
#location-page #location-section .location-sub-heading h3 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    color: var(--nav-color);
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}
#location-page #location-section .location-box {
    padding: 20px;
    border-radius: 0px 0px 50px 50px;
    width: 100%;
    background-color: #f5eee6;
}
#location-page #location-section .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ce7914;
}
#location-page #location-section .carousel-indicators [data-bs-target].active {
    background-color: #ce7914;
}
#location-page #location-section .carousel-inner {
    overflow: unset !important;
}
#location-page #location-section .carousel-inner-left .carousel-item {
    min-height: 400px;
    background-color: rgba(247, 240, 232, 0.4);
    background-repeat: no-repeat;
    margin-left: -30px;
    margin-top: -20px;
    border-radius: 0px 50px 50px 0px;
}
#location-page #location-section .carousel-inner-right .carousel-item {
    min-height: 400px;
    background-color: rgba(247, 240, 232, 0.4);
    background-repeat: no-repeat;
    margin-right: -30px;
    margin-top: -20px;
    border-radius: 50px 0px 0px 50px;
}
/* 
 * About Us Section
 */
#location-page #about-section .about-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 50px 12px 50px 12px;
    text-align: center;
    width: 100%;
    cursor: pointer;
}
#location-page #about-section .about-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(350deg);
    transition: transform 0.8s ease;
    box-sizing: border-box;
    border-radius: 50px 12px 50px 12px;
}
#location-page #about-section .about-box:hover::before {
    transform: rotate(360deg);
}
#location-page #about-section .about-box-orange {
    position: relative;
    background-color: lab(88.32% 1.33 10.92);
}
#location-page #about-section .about-box-green {
    position: relative;
    background-color: #a8c3a0;
}
#location-page #about-section .about-box-black {
    position: relative;
    background-color: #b8c9cc;
}
#location-page #about-section .about-box-orange::before {
    border: 1px solid #ce7914;
}
#location-page #about-section .about-box-green::before {
    border: 1px solid #2b735b;
}
#location-page #about-section .about-box-black::before {
    border: 1px solid #525b5c;
}
#location-page #about-section .about-box h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
}
#location-page #about-section .about-box img {
    width: 70px;
    height: 70px;
}
#location-page #about-section .about-box h3 {
    font-family: var(--font-sub-heading);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 10px;
}
/* 
 * Register Section
 */
#location-page #register-section .register-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px 12px 12px 12px;
    text-align: center;
    width: 100%;
}
#location-page #register-section .register-box-yellow {
    position: relative;
    background-color: var(--box-color-yellow);
}
#location-page #register-section .register-box-blue {
    position: relative;
    background-color: var(--box-color-blue);
}
#location-page #register-section .register-box-red {
    position: relative;
    background-color: var(--box-color-red);
}
#location-page #register-section .register-box h2 {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 24px;
}
#location-page #register-section .register-box p {
    font-family: var(--font-sub-heading);
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 20px;
}
#location-page #register-section .btn-category {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    text-align: center;
    justify-content: center;
}
#location-page #register-section .register-box-slider {
    margin-top: -20px;
    margin-bottom: 40px;
}
#location-page #register-section .carousel-inner {
    border-radius: 12px;
}
#location-page #register-section .carousel-indicators {
    top: 10px;
}
#location-page #register-section .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ce7914;
}
#location-page #register-section .carousel-indicators [data-bs-target].active {
    background-color: #ce7914;
}
#location-page #register-section .carousel-item {
    min-height: 200px;
    background-color: rgba(247, 240, 232, 0.4);
    background-repeat: no-repeat;
    border-radius: 0px 0px 50px 50px;
}
/* 
 * Knowledge Section
 */
#location-page #knowledge-section.knowledge-box {
    padding: 50px 0px;
    background-color: #b9c8cd;
    text-align: center;
    width: 100%;
}
#location-page #knowledge-section h2 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 20px;
}
#location-page #knowledge-section .btn-category {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    text-align: center;
    justify-content: center;
}

/**
 * Contact Page Styles
 */
/* 
 * Page Banner Section
 */
#contact-page #banner-section .carousel-inner {
    border-radius: 0px 0px 90px 90px;
}
#contact-page #banner-section .carousel-item {
    min-height: 200px;
    background-color: rgba(244, 225, 211, 1);
    background-repeat: no-repeat;
}
#contact-page #banner-section .carousel-outer {
    position: absolute;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100%;
    background: linear-gradient(90deg, rgba(185, 200, 205, 1) 20%, rgba(185, 200, 205, 1) 22%, rgba(255, 255, 255, 0) 100%);
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0px 0px 90px 90px;
    z-index: 1;
}
#contact-page #banner-section .carousel-outer .carousel-outer-container {
    width: 1000px;
    text-align: left;
    margin: 20px auto 20px auto;
}
#contact-page #banner-section .carousel-outer .carousel-outer-container h1 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 72px;
    line-height: 84px;
    color: var(--nav-color);
    margin-bottom: 15px;
}
#contact-page #banner-section .carousel-control-next {
    right: 40px !important;
}
#contact-page #banner-section .carousel-control-prev {
    left: 40px !important;
}
#contact-page #banner-section .carousel-control-next,
#contact-page #banner-section .carousel-control-prev {
    background-color: #d9996c;
    color: #4a4f4d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: unset !important;
    bottom: 20% !important;
    opacity: 1;
}
#contact-page #banner-section .carousel-control-next-icon,
#contact-page #banner-section .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
}
/* 
 * Location Section
 */
#contact-page #location-section .location-heading h2 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    line-height: 70px;
    color: var(--heading-color);
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}
#contact-page #location-section .location-sub-heading h3 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    color: var(--nav-color);
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}
#contact-page #location-section .location-box {
    padding: 20px;
    border-radius: 0px 0px 50px 50px;
    width: 100%;
    background-color: #f5eee6;
}
#contact-page #location-section .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ce7914;
}
#contact-page #location-section .carousel-indicators [data-bs-target].active {
    background-color: #ce7914;
}
#contact-page #location-section .carousel-inner {
    overflow: unset !important;
}
#contact-page #location-section .carousel-inner-left .carousel-item {
    min-height: 400px;
    background-color: rgba(247, 240, 232, 0.4);
    background-repeat: no-repeat;
    margin-left: -30px;
    margin-top: -20px;
    border-radius: 0px 50px 50px 0px;
}
#contact-page #location-section .carousel-inner-right .carousel-item {
    min-height: 400px;
    background-color: rgba(247, 240, 232, 0.4);
    background-repeat: no-repeat;
    margin-right: -30px;
    margin-top: -20px;
    border-radius: 50px 0px 0px 50px;
}
/* 
 * About Us Section
 */
#contact-page #about-section .about-box {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 50px 12px 50px 12px;
    text-align: center;
    width: 100%;
    cursor: pointer;
}
#contact-page #about-section .about-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(350deg);
    transition: transform 0.8s ease;
    box-sizing: border-box;
    border-radius: 50px 12px 50px 12px;
}
#contact-page #about-section .about-box:hover::before {
    transform: rotate(360deg);
}
#contact-page #about-section .about-box-orange {
    position: relative;
    background-color: lab(88.32% 1.33 10.92);
}
#contact-page #about-section .about-box-green {
    position: relative;
    background-color: #a8c3a0;
}
#contact-page #about-section .about-box-black {
    position: relative;
    background-color: #b8c9cc;
}
#contact-page #about-section .about-box-orange::before {
    border: 1px solid #ce7914;
}
#contact-page #about-section .about-box-green::before {
    border: 1px solid #2b735b;
}
#contact-page #about-section .about-box-black::before {
    border: 1px solid #525b5c;
}
#contact-page #about-section .about-box h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
}
#contact-page #about-section .about-box img {
    width: 70px;
    height: 70px;
}
#contact-page #about-section .about-box h3 {
    font-family: var(--font-sub-heading);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 10px;
}
/* 
 * Contact Us Section
 */
#contact-page #contact-section {
    padding: 50px 0px;
    background-color: #efd6c4;
    text-align: center;
    width: 100%;
}
#contact-page #contact-section h2 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 20px;
    text-align: left;
}
#contact-page #contact-section label {
    text-align: left;
}
#contact-page #contact-section .form-select {
    text-align: left;
}
#contact-page #contact-section .btn-category {
    border-radius: 12px;
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    text-align: center;
    justify-content: center;
    width: 250px;
}
#contact-page #contact-section form p {
    margin: 0;
    text-align: left;
}
#contact-page #contact-section form p span {
    font-size: 13px;
}
/* 
 * Knowledge Section
 */
#contact-page #knowledge-section.knowledge-box {
    padding: 50px 0px;
    background-color: #b9c8cd;
    text-align: center;
    width: 100%;
}
#contact-page #knowledge-section h2 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 20px;
}
#contact-page #knowledge-section .btn-category {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    text-align: center;
    justify-content: center;
}