/*------------- Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Belleza&family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*------------- CSS variables --*/
:root {
    --tiffany-blue: #0cb6a2;
    --middle-blue: #76e1d4;
    --indigo-rainbow: #1f3c73;
    --indigo-rainbow-thin: rgba(31, 60, 115, 0.7);
    --cqc-purple: rgb(109, 39, 106);
    --cqc-green: #458f00;
    --iceberg: #6db4d5;
    --primary-font: 'Comfortaa';
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: var(--primary-font), sans-serif;
}

h1 {
    text-transform: capitalize;
}

h2,
h3 {
    text-transform: capitalize;
}

h1,
h2 {
    color: var(--indigo-rainbow);
    letter-spacing: 0.7px;
}

.text-blue {
    color: var(--indigo-rainbow);
}

.site {
    min-height: 100dvh;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    -ms-grid-rows: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
}

.site > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.site > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.site > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.desktop {
    display: none;
}

.mobile {
    display: block;
}

.header-main {
    z-index: 99;
    position: fixed;
    width: 100%;
    background: #FFF;
    border-bottom: 1px solid var(--indigo-rainbow);
}

.nav-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 70px;
    padding: 6px 15px;
    background-color: var(--tiffany-blue);
}

.nav-top .contact-link {
    margin: 0 12px;
    font-size: 14px;
}

.nav-top .button-style {
    margin: 5px;
    text-transform: capitalize;
    font-size: 14px;
}

.navbar-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
}

.navbar {
    padding: 0;
}

.navbar-logo img {
    width: 230px;
}

.navbar-item a::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    -o-transition: transform 0.8s ease;
    transition: transform 0.8s ease;
    transition: transform 0.8s ease, -webkit-transform 0.8s ease;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    background-color: white;
}

.navbar-item.active a::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    -o-transition: transform 0.8s ease;
    transition: transform 0.8s ease;
    transition: transform 0.8s ease, -webkit-transform 0.8s ease;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.navbar-item a:hover::after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    background-color: white;
}

.hamb-btn {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    cursor: pointer;
    margin: 10px 8px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: none;
    outline: none;
    border: 2px solid var(--indigo-rainbow);
    padding: 1px 4px;
    border-radius: 6px;
}

.hamb-btn .bar,
.hamb-btn::after,
.hamb-btn::before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--indigo-rainbow);
    margin: 6px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 98;
}

.hamb-btn.is-active::before {
    -webkit-transform: rotate(-45deg) translate(-8px, 6px);
        -ms-transform: rotate(-45deg) translate(-8px, 6px);
            transform: rotate(-45deg) translate(-8px, 6px);
    background-color: red;
}

.hamb-btn.is-active::after {
    -webkit-transform: rotate(45deg) translate(-9px, -8px);
        -ms-transform: rotate(45deg) translate(-9px, -8px);
            transform: rotate(45deg) translate(-9px, -8px);
    background-color: red;
}

.hamb-btn.is-active .bar {
    opacity: 0;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    background-color: var(--indigo-rainbow);
    margin-top: 130px;
    display: block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 15px;
}

.mobile-nav.is-active {
    left: 0;
}


.mobile-nav li {
    text-align: center;
    margin: 0 auto 16px;
    padding: 12px 16px;
    background-color: var(--tiffany-blue);
    color: white;
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.mobile-nav li:hover {
    background-color: var(--middle-blue);
    color: var(--indigo-rainbow);
}



.logo-text {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 5px;
}

.logo-name {
    color: var(--tiffany-blue);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    font-family: "Archivo Black", sans-serif;
}

.logo-motto {
    color: var(--indigo-rainbow);
    font-size: 13px;
    text-transform: capitalize;
    font-family: "Belleza", sans-serif;
}

.nav-list {
    display: none;
    padding: 0 15px;
}

.nav-list .nav-link {
    color: var(--tiffany-blue);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 10px 15px;
}

.navbar-item.active .nav-link,
.nav-list .nav-link:hover {
    font-weight: 700;
}

.section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 5px;
    margin: 0 auto;
    max-width: 1200px;
}

.section.top {
    padding-top: 140px;
}

.hero-head,
.hero-body {
    width: 100%;
}

.hero-head {
    margin: 0 0 20px;
}

.hero-head img {
    border-radius: 8px;
}

.hero-image {
    margin-bottom: 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: rgb(241, 240, 240);
    padding: 10px;
}

.hero-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.page-heading {
    font-weight: 800;
    font-size: 32px;
    text-align: center;
}

.hero p {
    padding: 12px 25px;
    text-align: center;
    /* width: 80%; */
}

.hero-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 10px 25px;
}

.button-style {
    margin: 5px 10px;
    border-radius: 6px;
    padding: 8px 12px;
    height: 42px;
    font-weight: 600;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    letter-spacing: 0.7px;
}

.button-style:hover {
    -webkit-transform: scale(1.04);
        -ms-transform: scale(1.04);
            transform: scale(1.04);
    -webkit-box-shadow: 0 4px #091f0a88;
            box-shadow: 0 4px #091f0a88;
}

.button-tiffany,
.button-tiffany-light:hover {
    background-color: var(--tiffany-blue);
    color: white;
    border: 2px solid var(--tiffany-blue);
}

.button-tiffany-light,
.button-tiffany:hover {
    color: var(--tiffany-blue);
    background-color: white;
    border: 2px solid var(--tiffany-blue);
}

.button-white {
    color: white;
    border: 2px solid white;
    font-weight: 700;
}

.button-white:hover {
    color: var(--tiffany-blue);
    background-color: white;
}

.button-purple {
    color: white;
    background-color: var(--cqc-green);
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
}

.button-blue {
    color: var(--indigo-rainbow);
    background-color: white;
    font-weight: 800;
    text-transform: capitalize;
}


.button-indigo,
.button-indigo-light:hover {
    background-color: var(--indigo-rainbow);
    color: white;
    border: 2px solid var(--indigo-rainbow);
}

.button-indigo-light,
.button-indigo:hover {
    color: var(--indigo-rainbow);
    background-color: white;
    border: 2px solid var(--indigo-rainbow);
}

.section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.section p {
    font-size: 18px;
}

/* start intro  */

.intro-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.intro-wrap.left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

.intro-wrap img {
    border-radius: 8px 0 0 0;
}

.intro-wrap.left img {
    border-radius: 0 8px 0 0;
}

.intro-head {
    width: 100%;
}

.intro-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 20px 10px;
    margin: 0 0 5px;
    position: relative;
}

.intro-item.float-image {
    padding: 20px 10px;
}

.intro-item p {
    text-align: center;
}

.intro-item img {
    width: 90%;
}

.float-back {
    background-color: var(--tiffany-blue);
    width: 70%;
    height: 150px;
    position: absolute;
    right: 5px;
    bottom: -5px;
    z-index: -1;
}

.float-back.left {
    left: 5px;
}

/* end intro  */

/* start purpose and values */
.section.purpose {
    background-image:
        -webkit-gradient(linear,
            left top, left bottom,
            from(rgba(31, 60, 115, 0.75)),
            to(rgba(31, 60, 115, 0.75))),
        url("/static/images/nurse-standing-disabled-senior-woman-reading-book.jpg");
    background-image:
        -o-linear-gradient(rgba(31, 60, 115, 0.75),
            rgba(31, 60, 115, 0.75)),
        url("/static/images/nurse-standing-disabled-senior-woman-reading-book.jpg");
    background-image:
        linear-gradient(rgba(31, 60, 115, 0.75),
            rgba(31, 60, 115, 0.75)),
        url("/static/images/nurse-standing-disabled-senior-woman-reading-book.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.section.purpose h2 {
    color: var(--middle-blue);
}

.purpose-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(31, 60, 115, 0.8);
    margin: 20px 0;
    padding: 10px;
    border-radius: 8px;
}

.section.purpose h3 {
    color: var(--tiffany-blue);
    text-align: center;
    font-weight: 800;
    padding: 15px;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

p {
    letter-spacing: 1px;
}

.section.purpose p {
    color: white;
    text-align: center;
}

/* end purpose and values */

/* start footer */

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--tiffany-blue);
    position: relative;
    color: var(--indigo-rainbow);
}

.text-bold {
    font-weight: 600;
}

.wrapper-cqc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.wrapper-cqc .overlap {
    height: 200px;
    width: 100%;
    background-color: var(--tiffany-blue);
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: -1;
}

.footer-cqc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
    padding: 10px 15px;
    background-color: var(--indigo-rainbow);
    border-radius: 10px;
    margin-bottom: 40px;
}

.footer-cqc p {
    color: white;
    margin: 15px 10px 10px;
    text-align: center;
}

.img-cqc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.img-cqc img {
    max-height: 110px;
    margin: 15px;
}

.text-cqc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.text-cqc a,
.text-cqc a:hover,
.text-cqc a:visited,
.text-cqc a:active {
    margin: 20px;
    color: white;
}

.footer-logo {
    width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.footer-logo img {
    margin-bottom: 20px;
}

.footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 30px;
    padding-top: 10px;
}

.footer-item {
    margin: 10px 15px;
}

.footer-item h4 {
    margin: 15px 0 30px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.footer-item h4::after {
    content: "";
    width: 20%;
    height: 5px;
    background-color: var(--indigo-rainbow);
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.footer-item p.contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer-item p.contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 3px solid var(--indigo-rainbow);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 25px;
    color: var(--indigo-rainbow);
    margin: 15px 0 10px;
}

.footer-item p.contact span {
    font-size: 16px;
}

.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 15px;
    text-align: center;
}

.quick-links .footer-link,
.business-hours td,
.business-hours th {
    color: var(--indigo-rainbow);
}

.business-hours tr {
    border-bottom: 1px solid lightgrey;
}

.business-hours th {
    padding: 10px;
    text-align: left;
}

.business-hours td,
.business-hours .top {
    padding: 10px;
    text-align: center;
}


.footer-item address {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
}

.footer-item.address p {
    margin: 5px 0;
}

/*--- video footer ---*/
.footer-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    height: 250px;
    width: 290px;
    padding: 0;
}

.footer-video p {
    color: white;
}

.video-bg {
    width: 100%;
    height: 80%;
    -webkit-filter: brightness(50%);
            filter: brightness(50%);
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}

.footer-video .cta-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 70%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    width: 295px;
    -ms-flex-line-pack: center;
        align-content: center;
}

.footer-video p {
    font-weight: bold;
    font-style: italic;
    margin-bottom: 8px;
    font-size: 14px;
}

.cta-video a {
    margin: 10px 0;
}

/* end footer */


.choose-us {
    padding: 30px;
}

.choose-us h2,
.choose-us h3,
.choose-us p {
    color: var(--indigo-rainbow);
    text-align: center;
}

.choose-us h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.choose-header {
    margin: 10px 0 30px;
}

.choose-header p {
    padding: 10px 20px;
}

.choose-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 45%;
    margin: 10px 0 20px;
}

.value-icon img {
    height: 90px;
    width: 90px;
    -webkit-filter: invert(18%) sepia(14%) saturate(7167%) hue-rotate(200deg) brightness(95%) contrast(88%);
            filter: invert(18%) sepia(14%) saturate(7167%) hue-rotate(200deg) brightness(95%) contrast(88%);
}

.value-title {
    font-weight: 600;
    margin: 10px 0;
    text-transform: capitalize;
    font-size: 1.3rem;
}

.choose-cta {
    margin: 30px 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/* start onboarding section  */
.section.onboard p {
    color: var(--indigo-rainbow);
}

.onboard-intro {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.onboard-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 10px 0;
}

.onboard-body {
    border-radius: 10px 10px 0 0;
    padding: 10px;
}

.onboard-step .onboard-title {
    color: var(--indigo-rainbow);
    font-weight: 800;
}

.onboard-step .onboard-text {
    padding: 8px;
    text-align: left;
}

.onboard-step img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.onboard-last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.onboard-last p {
    padding: 0 5px;
    text-align: left;
    width: 100%;
    margin-bottom: 18px;
}

/* end onboarding section  */

/* start mission and vision */

.history-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.history-image {
    margin: 10px 5px 15px;
}

.history-image img {
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.history-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.history-body p {
    margin: 0;
    padding: 10px;
    text-align: center;
}

.statement {
    margin-bottom: 20px;
}

.row-sep {
    width: 80%;
    height: 1px;
    background-color: gray;
    margin: 30px 0;
}

/* end mission and vision */

/* start services */

.services-head p {
    padding: 15px 15px 0;
    text-align: center;
}

.service-item {
    padding: 10px;
    margin: 10px 0;
}

.service-item .service-image {
    height: auto;
    width: 100%;
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
}

.service-body {
    background-color: var(--tiffany-blue);
    border-radius: 0 0 10px 10px;
    border-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.service-body .row-sep {
    margin: 0 0 10px;
    background-color: white;
    width: 60%;
}

.service-text {
    padding: 0 8px;
    margin: 0;
    color: white;
    text-align: center;
}

.service-text span {
    text-transform: capitalize;
    font-weight: 600;
}

.service-title {
    padding: 5px 10px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.service-title h3 {
    font-size: 1.4rem;
    display: inline-block;
    margin-left: 5px;
    color: white;
}

.service-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 0 15px;
}

.detail-head {
    color: white;
    padding: 5px 8px;
    text-transform: capitalize;
    font-weight: 800;
}

.icon-service {
    width: 50px;
    height: 50px;
    padding: 8px;
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(100%) contrast(104%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(100%) contrast(104%);
}

.detail-list {
    list-style-type: disc;
    list-style-position: inside;
    padding: 3px 10px;
}

.detail-list li {
    margin-bottom: 10px;
}

.detail-list li::marker {
    color: white;
    font-size: 20px;
}

.detail-list p {
    display: inline;
    color: white;
}

.detail-title {
    font-weight: 700;
    text-transform: capitalize;
}

.section.support .row-sep {
    margin: 0 0 10px;
}


.support-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: 100%;
    padding: 0 18px;
    color: var(--indigo-rainbow);
}

.support-item {
    padding-left: 15%;
}

.support-item h3 {
    margin-top: 10px;
    padding: 10px 0;
    font-weight: 700;
    font-size: 1.2rem;
}

.support-item ul {
    padding: 0 15px;
}

.support-item li {
    padding-bottom: 10px;
    text-transform: capitalize;
    font-size: 1rem;
}

.support-item i {
    font-size: 1.2rem;
    padding-right: 10px;
}

/* end services */

/* start contact */
.box-parent {
    padding: 120px 20px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.box-wrapper {
    background-color: white;
    border-radius: 1rem;
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 20px 5px 30px;
    max-width: 550px;
    margin-bottom: 30px;
}

.box-wrapper h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--indigo-rainbow);
    text-transform: capitalize;
}

.box-form {
    padding: 10px 20px;
    color: var(--indigo-rainbow);
}

.form-label {
    font-weight: 700;
}

.form-control {
    color: var(--indigo-rainbow);
    border: 1px solid var(--indigo-rainbow-thin);
}

.form-control::-webkit-input-placeholder {
    color: var(--indigo-rainbow-thin);
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: var(--indigo-rainbow-thin);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: var(--indigo-rainbow-thin);
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: var(--indigo-rainbow-thin);
    opacity: 1;
}

.form-control::placeholder {
    color: var(--indigo-rainbow-thin);
    opacity: 1;
}

.box-form .custom-icon {
    width: 35px;
    margin-right: 10px;
    -webkit-filter: brightness(0) saturate(100%) invert(19%) sepia(12%) saturate(6485%) hue-rotate(196deg) brightness(95%) contrast(91%);
            filter: brightness(0) saturate(100%) invert(19%) sepia(12%) saturate(6485%) hue-rotate(196deg) brightness(95%) contrast(91%);
}

.box-form .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
}

.box-form .form-check-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: capitalize;
    margin-left: 12px;
}

input[type="radio"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

input[type="radio"]:checked,
.form-check-input:checked {
    background-color: var(--tiffany-blue);
    border: 2px solid #098879;
}

.success-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.success-container p {
    text-align: center;
    color: var(--indigo-rainbow);
    margin: 15px;
}

.success-container .button-style {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: capitalize;
    font-size: 1.2rem;
}

.success-container .button-style i {
    padding-right: 20px;
}

.button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* end contact  */

/* start careers */

.section.careers-head p {
    padding: 16px 25px;
    text-align: center;
}

.intro-wrap.benefits {
    background-image:
        -webkit-gradient(linear,
            left top, left bottom,
            from(rgba(31, 60, 115, 0.75)),
            to(rgba(31, 60, 115, 0.75))),
        url("/static/images/boy-child-with-parents-on-either-side.jpg");
    background-image:
        -o-linear-gradient(rgba(31, 60, 115, 0.75),
            rgba(31, 60, 115, 0.75)),
        url("/static/images/boy-child-with-parents-on-either-side.jpg");
    background-image:
        linear-gradient(rgba(31, 60, 115, 0.75),
            rgba(31, 60, 115, 0.75)),
        url("/static/images/boy-child-with-parents-on-either-side.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
}

.benefits-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    padding: 20px;
}

.benefit-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(31, 60, 115, 0.8);
    margin: 20px 0;
    padding: 10px;
    width: 290px;
}

.benefit-item p {
    color: var(--tiffany-blue);
    text-align: center;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.intro-wrap.apply {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 18px 18px 10px;
}

.intro-wrap.apply p {
    text-align: center;
}


/* end careers */

.hidden-item {
    display: none;
}

.auto-show {
    -webkit-animation: autoShowAnimation both;
            animation: autoShowAnimation both;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
}

@media screen and (min-width: 375px) {

    .box-wrapper {
        width: 90%;
    }
}

@media screen and (min-width: 768px) {
    .hamb-btn {
        display: none;
    }

    .header-main {
        background: #FFF;
    }

    .nav-list .nav-link {
        padding: 10px 5px;
        font-weight: 500;
    }

    .navbar-logo img {
        width: 260px;
    }


    .nav-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .section.hero {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }

    .section {
        padding: 30px 20px;
    }

    .hero-head,
    .hero-body {
        width: 50%;
    }

    .page-heading {
        font-size: 2rem;
        padding-bottom: 15px;
    }

    .hero-buttons {
        margin: 25px 25px 10px;
    }

    .statement-wrapper {
        width: 45%;
    }

    .intro-wrap,
    .intro-wrap.left {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .intro-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin: 20px 0;
        width: 50%;
    }

    .float-back {
        height: 230px;
        right: 15px;
        bottom: -10px;
    }

    .float-back.left {
        left: 15px;
    }

    .section.onboard {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;

        -ms-flex-wrap: wrap;

            flex-wrap: wrap;
        gap: 10px 30px;
    }

    .onboard-step {
        width: 45%;
    }

    .footer-cqc {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .img-cqc img {
        max-height: 300px;
    }

    .text-cqc {
        padding: 5px 10px;
        width: 85%;
    }

    .footer-item {
        margin: 30px 15px;
    }

    .footer-item h4 {
        margin: 15px 0 20px;
    }

    .history-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .history-body,
    .history-image {
        width: 50%;
    }

    .history-body h2 {
        margin-bottom: 10px;
    }

    .history-body p {
        margin: 10px 0;
        padding: 10px 10px 15px;
    }

    .section.vision-mission {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }

    .section.services {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .service-item {
        width: 45%;
    }

    .support-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .support-item {
        width: 50%;
        padding: 5%;
    }

    .box-wrapper {
        -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
        padding: 20px 20px 30px;
    }

    .section.careers-head p,
    .intro-wrap.apply p {
        width: 75%;
    }
}

@media screen and (min-width: 992px) {

    .img-cqc img {
        max-height: 150px;
    }

    .footer-top {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;

    }

    .footer-item {
        width: 40%;
    }

    .footer-item.address,
    .footer-item.business-hours {
        padding-left: 50px;
    }

    .footer-logo {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0 30px;
        width: 300px;
    }

    .footer-logo img {
        width: 80%;
    }

    .footer-logo p {
        text-align: center;
    }

    .footer-video {
        height: 280px;
    }

    .video-bg {
        width: 400px;
    }

}


/* ------------------------------
 --------------  Keyframes  ------
 ------------------------------- */

@-webkit-keyframes autoShowAnimation {
    from {
        opacity: 0;
        -webkit-transform: translateY(300px) scale(0.1);
                transform: translateY(300px) scale(0.1);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
                transform: translateY(0) scale(1);
    }
}

@keyframes autoShowAnimation {
    from {
        opacity: 0;
        -webkit-transform: translateY(300px) scale(0.1);
                transform: translateY(300px) scale(0.1);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
                transform: translateY(0) scale(1);
    }
}