@import url('https://fonts.googleapis.com/css2?family=KoHo:wght@400;500;600;700&display=swap');
:root {
    --primary-color: #2e3190;
    --secondary-color: #6c2777;
    --color-01: #037134;
    --color-02: #017ec1;
    --color-03: #828387;
}

.text-blue {
    color: var(--primary-color);
}

.text-purple {
    color: var(--secondary-color);
}

body {
    font-family: 'KoHo', sans-serif;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 50px;
}

* {
    transition: all 500ms linear;
}

a,
a:hover {
    text-decoration: none;
    outline: 0 !important;
    transition: all 500ms linear;
}

p:last-child {
    margin-bottom: 0;
}

/* --------------------------- */

.top-strip {
    background: #fff;
    padding: 6px 0;
    border-top: 5px solid #6c2876;
}

.top-strip a {
    color: #6c2777;
    font-size: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: auto;
    left: 5%;
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
}

.navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 4px;
    position: absolute;
    background: #773b80;
    border-radius: 2px;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
    left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
    left: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
    top: 45%;
    transform: rotate(45deg);
}

.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
    left: 50%;
    width: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
    top: 45%;
    transform: rotate(-45deg);
}

header {
    background-color: #f6f6f6;
    position: relative;
    z-index: 5;
}

header nav {
    height: 100px;
}

.header-logo {
    max-width: 160px;
    border-radius: 5px;
    padding: 2px;
    background-color: #fff;
}

header .nav-link {
    color: #2e3290;
    position: relative;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link.active {
    color: #29a4ef;
}

header li.nav-item:not(:first-child) {
    margin: 0 0 0 20px;
}

/* ------------------------ */

.herobanner {
    background-color: #000;
}

.carousel-item {
    transform: scale(1);
    max-height: 100vh;
    height: 500px;
    overflow: hidden;
}

.sliderTitle {
    font-size: 55px;
    display: none;
    top: 50%;
    left: -10vw;
    color: #fff;
    position: absolute;
    transition: all 0.5s;
    backdrop-filter: blur(2px);
    padding: 5px 15px;
    font-weight: 700;
    opacity: 0;
}

.active .sliderTitle {
    display: block;
    top: 50%;
    left: 10vw;
    opacity: 1;
}

.sliderSubtitle {
    display: none;
    top: 50%;
    left: -10vw;
    color: white;
    position: absolute;
    transition: all 0.5s;
    backdrop-filter: blur(2px);
    padding: 5px 15px;
    opacity: 0;
}

.active .sliderSubtitle {
    display: block;
    top: 50%;
    margin-top: -40px;
    left: 10vw;
    opacity: 1;
}

#carouselExampleIndicators {
    position: relative;
}

.containerVideobg {
    background-color: #000000;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -2;
    padding: 0 !important;
    max-height: 100vh;
    overflow: hidden;
}

.videoSliderBackground {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    min-width: 100vh;
    min-height: 100vh;
}

.videoSlider {
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s;
}

.elVideo {
    width: 100%;
    height: 100%;
    margin-bottom: -8px;
}

.active .videoSlider {
    margin-top: 0;
    width: 100%;
    border: none;
    box-shadow: none;
}

.carousel-indicators {
    list-style: none;
}

/* ------------------------ */

.box-style-01 {
    background-color: #772774;
}

.box-01 {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
}

.box01-content h4 {
    margin-bottom: 0;
}

.box-01 span {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #974fa3;
    border-radius: 50%;
    outline: 1px solid #974fa3;
    outline-offset: 4px;
    margin: 5px auto 15px;
    font-size: 33px;
}

.border-right {
    border-right: 1px solid #974fa3;
}

.about-block h2 {
    color: var(--primary-color);
    font-weight: 700;
}

.disability {
    background-color: #e5ebeb;
}

.dss-block {
    margin-bottom: 30px;
}

.dss-block-single img {
    border-radius: 12px;
    border: 1px solid #bfbfbf;
}

.dss-block-single h5 {
    margin: 10px 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.dss-block-single {
    position: relative;
}

.dss-block-single h5 {
    position: absolute;
    bottom: 20px;
    font-size: 18px;
    padding: 6px 15px 8px;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(2px);
    line-height: 1;
    background-color: rgb(0 0 0 / 25%);
}

.dss-block-single:hover img {
    border-radius: 0;
    box-shadow: 5px 5px 5px #bfbfbf;
    transform: translateY(-5px);
    border-color: rgb(46 49 145 / 50%);
}

.dss-block-single:hover h5 {
    bottom: 5px;
    font-size: 20px;
    background-color: rgb(46 49 145 / 75%);
}

.career {
    background-color: var(--secondary-color);
    background-image: url(../images/career-bg.jpg);
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgb(108 39 119 / 80%);
    background-attachment: fixed;
    background-position: center;
}

.btn {
    min-width: 150px;
    text-align: center;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 500ms linear;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 12px #c7c7c7;
}

.theme-btn {
    box-shadow: 5px 5px 2px #471a4e;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.theme-btn:hover {
    box-shadow: none;
    transform: translateY(-3px);
}

.theme-btn.btn-warning:hover {
    background-color: var(--color-02);
    color: #fff;
}

/* -------------- */

.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #3190E7;
    padding: 9px 35px;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
    text-align: center;
    padding: 50px;
    margin-bottom: 0px;
    opacity: .65;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 5px auto 15px;
    border-radius: 50%;
    outline: 1px solid #f3f3f3;
    outline-offset: 5px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #3190E7;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #3190E7;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

/* ----------- */

.enquiry-form {
    padding: 35px;
    background: #fbfbfb;
    border-radius: 5px;
    box-shadow: 0px 15px 10px -15px #d1dae1;
    border: 1px solid rgb(46 49 144 / 10%);
}

.enquiry::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 50%;
    background-color: var(--primary-color);
    z-index: -1;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    height: 45px;
    border-radius: 0;
}

.enquiry-form textarea.form-control {
    height: 85px;
}

/* ------------ */

footer {
    background-color: var(--secondary-color);
    padding: 85px 0 50px;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer a {
    color: #fff;
}

footer ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
}

.footer-contact ul li i {
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    text-align: center;
}

.footer-links ul li::before {
    content: "\e05c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
}

.footer-links ul li:hover {
    transform: translateX(5px);
}

.copy-right {
    font-size: 15px;
    background: #4e1856;
    color: #fff;
    text-align: center;
    padding: 8px 0;
}

#scrollUp {
    background: #db2249;
    height: 45px;
    width: 45px;
    right: 20px;
    bottom: 50px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    font-size: 22px;
    line-height: 50px;
    transition: .3s;
}

header.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 5px 35px 5px rgb(0 0 0 / 5%);
    border-bottom: 1px solid #efefef;
}

header.sticky nav {
    height: 80px;
}

header.sticky .header-logo {
    max-width: 125px;
}

header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 6px;
    height: 4px;
    background-color: #6c2777;
    margin: auto;
    bottom: 1px;
    transition: .5s cubic-bezier(1, -0.47, 0, 1.83);
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    opacity: 0;
}

header .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 15px;
    height: 1px;
    background-color: #6c2777;
    margin: auto;
    bottom: 2px;
    transition: .5s cubic-bezier(1, -0.47, 0, 1.83);
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    opacity: 0.05;
}

header .nav-link:hover::before {
    width: calc(100% - 1rem);
    opacity: 1;
    height: 2px;
}

header .nav-link:hover::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    opacity: 1;
}

.nav-item.contact-link .nav-link::before,
.nav-item.contact-link .nav-link::after {
    display: none;
}

/* ----------------------- */

.page-banner {
    position: relative;
    min-height: 300px;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgb(108 39 119 / 20%);
}

.bg-01 {
    background-image: url(../images/banner/disability-support-banner.jpg);
}

.bg-02 {
    background-image: url(../images/banner/aged-care-banner.jpg);
}

.bg-03 {
    background-image: url(../images/banner/allied-health-nursing.jpg);
}

.bg-04 {
    background-image: url(../images/banner/about-banner.jpg);
}

.bg-05 {
    background-image: url(../images/banner/career-banner.jpg);
}

.bg-06 {
    background-image: url(../images/banner/contact-banner.jpg);
}

.page-banner .banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.page-banner .banner-content h1 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    backdrop-filter: blur(2px);
    padding: 1px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 10px #929497;
    line-height: 1;
    display: inline-block;
}

.page-banner ol :is(li,
a),
.page-banner .breadcrumb-item+.breadcrumb-item::before,
.page-banner .breadcrumb-item.active {
    color: #fff;
}

.service-list-single .text-head {
    background-color: #f3e9f5;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid #ecdcef;
    margin-bottom: 20px;
}

.service-list-single p {
    text-align: justify;
}

.service-list-single ul {
    padding-left: 0px;
}

.service-list-single ul li {
    position: relative;
    list-style: none;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-list-single ul li::before {
    content: "\e05c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #6c2777;
}

.options-list {
    position: sticky;
    top: 100px;
}

.options-list h4 {
    font-weight: 800;
    color: var(--primary-color);
}

.options-list ul {
    list-style: none;
}

.options-list ul li {
    display: block;
}

.options-list ul li a {
    margin-bottom: 8px;
    display: inline-block;
    color: var(--secondary-color);
}

.service-list-single {
    scroll-margin-top: 6rem;
}

.referral-form .form-control,
.referral-form .form-select {
    border-radius: 0;
    height: 45px;
    font-weight: 500;
}

.referral-form textarea.form-control {
    height: auto;
}

.referral-form .form-control:focus,
.referral-form .form-select:focus {
    box-shadow: none;
}

.referral-form {
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 6px;
}

.referral-form ::placeholder {
    color: #000;
}

.referral-form .form-check-input:checked {
    background-color: #01af4c;
    border-color: #01af4c;
}

.career-page-01 {
    background-image: url(../images/career-form-bg.jpg);
    background-size: cover;
    padding: 120px 25px;
    border-radius: 8px;
    background-position: center;
}

.career-enquire {
    padding: 35px 20px;
    background-color: rgb(108 39 119 / 75%);
    border-radius: 10px;
    outline: 1px solid rgb(108 39 119 / 75%);
    outline-offset: 5px;
}

.btn-style-02 {
    text-transform: unset;
    padding: 10px 15px;
    font-weight: 500;
}

.btn-style-02:hover {
    box-shadow: none;
}

.upload-block {
    background-color: #fff;
    padding: 20px 15px 55px;
    border-radius: 6px;
    border: 1px solid #f2f2f2;
    text-align: center;
}

.upload-btn {
    display: inline-flex;
}

.career-form {
    padding: 35px;
    background: #fbfbfb;
    border-radius: 5px;
    box-shadow: 0px 15px 10px -15px #d1dae1;
    border: 1px solid rgb(46 49 144 / 10%);
}

.career-form .form-control,
.career-form .form-select {
    height: 45px;
    border-radius: 0;
}

.career-form textarea.form-select {
    height: auto;
}

/* ------------------------ */

.et_pb_contact_form_label {
    display: block;
    color: black;
    font-weight: bold;
    letter-spacing: 1.2px;
    font-size: 18px;
    padding-bottom: 5px;
}

input[id="et_pb_contact_brand_file_request_0"] {
    display: none;
}

label[for="et_pb_contact_brand_file_request_0"] {
    background: #fff;
    height: 145px;
    background-image: url('https://www.svgrepo.com/show/9488/cloud-upload-signal.svg');
    background-repeat: no-repeat;
    background-position: top 18px center;
    background-size: 7%;
    color: transparent;
    margin: auto;
    width: 450px;
    border: 1px solid #a2a1a7;
    box-sizing: border-box;
}

label[for="et_pb_contact_brand_file_request_0"]:before {
    content: "Drag and Drop a file here";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #202020;
    font-weight: 400;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

label[for="et_pb_contact_brand_file_request_0"]:after {
    display: block;
    content: 'Browse';
    background: #16a317;
    width: 86px;
    height: 27px;
    line-height: 27px;
    position: absolute;
    bottom: 19px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

label[for="et_pb_contact_brand_request_0"]:after {
    content: " (Provide link or Upload files if you already have guidelines)";
    font-size: 12px;
    letter-spacing: -0.31px;
    color: #7a7a7a;
    font-weight: normal;
}

label[for="et_pb_contact_design_request_0"]:after {
    content: " (Provide link or Upload design files)";
    font-size: 12px;
    letter-spacing: -0.31px;
    color: #7a7a7a;
    font-weight: normal;
}

label[for="et_pb_contact_brand_file_request_0"].changed,
label[for="et_pb_contact_brand_file_request_0"]:hover {
    background-color: #e3f2fd;
}

label[for="et_pb_contact_brand_file_request_0"] {
    cursor: pointer;
    transition: 400ms ease;
}

.file_names {
    display: block;
    position: absolute;
    color: black;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -25px;
    font-size: 14px;
    font-weight: 300;
}

.file_names {
    text-align: center;
}

@media (max-width:575px) {
    label[for="et_pb_contact_brand_file_request_0"] {
        width: 260px;
    }
    .career-form {
        padding: 20px;
    }
}

/* ------------------------ */

.contact-details {
    padding: 25px;
    background: #fbfbfb;
    border-radius: 5px;
    box-shadow: 0px 15px 10px -15px #d1dae1;
    border: 1px solid rgb(46 49 144 / 10%);
    width: 100%;
}

.cd-single {
    display: flex;
    padding: 15px 0;
}

.cd-single:not(:last-child) {
    border-bottom: 1px solid #d7d7d7;
}

.cd-single,
.cd-single a {
    color: #2c3090;
}

.cd-single span {
    flex: 1;
    line-height: 1.25;
}

.cd-single span i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.contact-form {
    padding: 30px;
    background: #fbfbfb;
    border-radius: 5px;
    box-shadow: 0px 15px 10px -15px #d1dae1;
    border: 1px solid rgb(46 49 144 / 10%);
    width: 100%;
}

.contact-form .form-control {
    height: 45px;
    border-radius: 0;
}

.contact-form textarea.form-control {
    height: auto;
}

.container {
    width: 1400px
}