/* ........................... */
/* Comman css */
/* ........................... */

html {
    font-size: 10px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--color-White);
}

body::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: var(--gradian);
}

.row {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    padding: 0;
    margin: 0;
    list-style: none;
}

:root {
    --gradian: linear-gradient(264deg, #1B9CE4 45.36%, #105DCB 94.35%);
    --color-Blue: #1B9CE4;
    --color-White: #fff;
    --color-Acent: #AB2476;
    --color-Secondry: #3B4856
}

h2 {
    font-size: 4rem;
}

a {
    text-decoration: none;
}

.containerX {
    margin: 0 31.5rem;
}

.sectionmargin {
    margin-top: 9.3rem;
}

.mb50 {
    margin-bottom: 50rem;
}

.Loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: white;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Loader img {
    width: 60px;
    height: 60px;
    position: absolute;
}

#loading-bar-spinner.spinner {
    animation: loading-bar-spinner 0.6s linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
    width: 120px;
    height: 120px;
    border: solid 4px transparent;
    border-top-color: var(--color-Blue) !important;
    border-left-color: var(--color-Blue) !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ........................... */
/* Topbar */
/* ........................... */
.Topbar_line {
    background: var(--gradian);
    padding: 1.3rem 0;
}

.Topbar_contant {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.Topbar_contant li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.Topbar_contant li a {
    color: var(--color-White);
}

.socialmedia_contant {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* ........................... */
/* Navbar */
/* ........................... */
.Navbar_fix {
    padding: 0 31.5rem;
    background: var(--color-White);
    z-index: 99;
    position: sticky;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 1s;
    top: 0;
}



.Navbar_fix.active {
    top: 200px;
}

.Navbar_Contant {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Navbar_Contant li {
    position: relative;
}

.Navbar_Contant li::after {
    content: '';
    position: absolute;
    background: var(--color-Blue);
    width: 0;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    border-radius: 15px;
    transition: 0.3s;
}

.Navbar_Contant li:hover::after {
    width: 100%;
}

.Navbar_Contant li.active::after {
    width: 100%;
}

.Navbar_Contant li a {
    color: var(--color-Blue);
}

.navbar_logo a {
    display: inline-block;
}

.Refer_btnsection {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.Refer_btn {
    padding: 1.2rem;
    background: none;
    border: 2px solid var(--color-Blue);
    border-radius: 50%;
    position: absolute;
    background: var(--color-White);
    left: 0;
    z-index: 1;
}

.Refer_btn svg {
    width: 3rem;
    height: 3rem;
}


.ReferNow_btn {
    width: 17.6rem;
    height: 4.6rem;
    justify-content: center;
    position: relative;
    border: 0;
    color: var(--color-White);
    display: flex;
    align-items: center;
    box-shadow: 0px 3px 9px 0px rgba(27, 156, 228, 0.20);
    border-radius: 50px;
    transition: all 0.9s;
    background-color: rgba(29, 181, 193, 20%);
    background: linear-gradient(269deg, #1B9CE4 0.75%, #105DCB 79.50%);
    overflow: hidden;
    z-index: -1;
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* 
.letter {
    display: inline-block;
    position: relative;
    float: left;
    transform: translateZ(25px);
    transform-origin: 50% 50% 25px;
}

.letter.out {
    transform: rotateX(90deg);
    transition: transform 0.38s cubic-bezier(0.55, 0.055, 0.675, 0);
}

.letter.behind {
    transform: rotateX(0deg);
}

.letter.in {
    transform: rotateX(0deg);
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1);
} */


.ReferNow_btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
    animation: ripple 1.5s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}



.Services_menu {
    font-size: 1.4rem;
    border-radius: 10px;
    background-color: var(--color-White);
}

.Services_menu li {
    border-bottom: 1px solid #1B9CE4;
}


.Services_menu li:hover::after {
    width: 0;
}

.Services_menu li:last-child {
    border-bottom: 0;
}

.Services_menu li a {
    color: var(--color-Secondry);
}


.nav-link:focus,
.nav-link:hover {

    color: var(--color-Blue);
}

/* ........................... */
/* Herosection */
/* ........................... */

.Herosection {
    position: relative;
}

.Herosection::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
    backdrop-filter: blur(1px);
    left: 0;
    top: 0;
}

.Herosection_contant {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 70%;
}

.HEroheading_txt {
    font-size: 9rem;
    color: var(--color-White);
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.10);
    font-weight: 700;
    font-family: 'Cardo', serif;
    line-height: 1.2;
}

.herocontant_txt {
    margin-top: 3rem;
    font-size: 2.2rem;
    color: var(--color-White);
}

.Hero_Slider.owl-theme .owl-nav {
    margin-top: 0;
}

.Hero_Slider.owl-theme .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.Hero_Slider.owl-theme .owl-dots .owl-dot span {
    width: 40px;
    height: 5px;
    margin: 5px 7px;
    background: var(--color-White);
}

.Hero_Slider.owl-theme .owl-dots .owl-dot.active span,
.Hero_Slider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--gradian);
}

/* ........................... */
/* aboutsection */
/* ........................... */
.aboutsection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11rem;
    align-items: center;
    overflow: hidden;
}

.section_heading p {
    font-family: Lato;
    color: var(--color-Acent);
    margin-bottom: 2rem;
    letter-spacing: 7.2px;
    text-transform: uppercase;
}

.section_heading h2 {
    font-family: 'Cardo', serif;
    color: var(--color-Blue);
}

.aboutContant_txt {
    margin: 3rem 0;
    color: var(--color-Secondry);
}

.MoreAbout_link {
    color: var(--color-Blue);
    text-decoration: underline;
}


.ndis_section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ndis_text {
    color: #6D246E;
    font-size: 30px;
    font-weight: 800;
}


.isupport_imges {
    width: 10rem;
}


.ndis_text i {
    color: red;
    font-size: 22px;
}

.dots-items {
    position: relative;
}

.dots-items::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 1.8px;
    width: 7px;
    height: 7px;
    background-color: #8BC328;
    border-radius: 100%;
}

.your-element {
    padding: 3rem;
}

/* OUR SERVICE */


.LifeStage_imges {
    background: rgba(27, 156, 228, 0.10);
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.LifeStage_imges img {
    max-width: 5rem;
    max-height: 5rem;
}

.MoreDetails_btn {
    width: 100%;
    margin-top: 2rem;
    display: inline-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
    color: var(--color-Blue);
    border: 2px solid var(--color-Blue);
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.MoreDetails_btn:hover {
    background-color: var(--color-Blue);
    color: var(--color-White);
}

.ourservicenew_Slider .carousel-shadow:hover .MoreDetails_btn {
    background-color: var(--color-Blue);
    color: var(--color-White);
}

.Explore_txt {
    margin-top: 4rem;
    color: #3B4856;
}

.Explore_txt a {
    color: var(--color-Blue);
    text-decoration: underline;
}

.ourservicenew_Slider {
    margin-top: 4rem;
}

.ourservicenew_Slider .item h3 {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--color-Secondry);
    font-weight: 600;
}

.ourservicenew_Slider .item p {
    color: var(--color-Secondry);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2.8rem;

}

.ourservicenew_Slider .carousel-shadow:hover {
    transform: translateY(-15px);
}



.ourservicenew_Slider .owl-item-inner {
    padding: 10px;
    border-radius: 15px;
}

.ourservicenew_Slider .carousel-shadow {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 3rem;
    border-radius: 20px;
    background: var(--color-White);
    text-align: center;
    transition: all 0.2s;
    margin: 10px;
}

.ourservicenew_Slider .owl-nav,
.ourservicenew_Slider .owl-dots {
    display: block;
    text-align: center;
    margin-top: 3rem;
}

.ourservicenew_Slider .owl-nav button,
.ourservicenew_Slider .owl-dots button {
    outline-style: none;
}

.ourservicenew_Slider .owl-nav span,
.ourservicenew_Slider .owl-dots span {
    font-size: 4rem;
    margin: 0 7.5px;
    line-height: 1;
}

.ourservicenew_Slider .owl-nav span:hover {
    color: var(--color-Acent);
}

.ourservicenew_Slider .owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.ourservicenew_Slider .owl-dots .owl-dot span {
    background: none repeat scroll 0 0 #D6D6D6;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    width: 12px;
}

.ourservicenew_Slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.ourservicenew_Slider.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
}

.ourservicenew_Slider .owl-dot.active span,
.ourservicenew_Slider .owl-dot:hover span {
    background: var(--color-Blue);
}



/* OUR MISSION & VISION */

.ourmission_section {
    background: linear-gradient(264deg, #1B9CE4 45.36%, #105DCB 94.35%);
    padding: 10rem 0;
    position: relative;
}

.ourmission_heading {
    font-family: Lato;
    color: var(--color-White);
    margin-bottom: 2rem;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    text-align: center;
}

.bg_patten1 {
    position: absolute;
    top: 0;
    left: -4%;
}

.bg_patten2 {
    position: absolute;
    top: 0;
    right: 0;
}

.bg_patten3 {
    position: absolute;
    bottom: -20%;
    left: 0;
}

.bg_patten4 {
    position: absolute;
    right: 0;
    bottom: -4%;
}

.Ourmissionvison_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10rem;
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    align-items: center;
    overflow: hidden;
}

.Mission_contant h2 {
    font-family: 'Cardo', serif;
    color: var(--color-White);
}

.Mission_contant p {
    margin-top: 3rem;
    color: var(--color-White);
    font-size: 1.8rem;
}

/* What People Say  */

.whatPeople_txt {
    font-family: 'Cardo', serif;
    color: var(--color-Blue);
    text-align: center;
}

.WhatPeopleSay_section {
    padding: 0 22rem;
    margin-top: 5.4rem;
}

.WhatPeopleSay_slider .splide__track {
    padding: 2rem;
}

.WhatPeopleSay_slider .splide__slide {
    border-radius: 16px;
    background: var(--color-White);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    padding: 4rem;
}

.splide__slide {
    display: grid;
    grid-template-columns: 18rem auto;
    grid-gap: 2rem;
    align-items: center;
}

.splide__list {
    padding: 0 1rem !important;
}

.people_imges {
    width: 100%;
    height: 18rem;
    border-radius: 50%;
    overflow: hidden;
}

.People_contant h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3D3D3D;
}

.People_contant p {
    color: var(--color-Secondry);
    line-height: 3.2rem;
    margin-bottom: 1.5rem;
}

.People_contant span {
    color: #525252;
    font-size: 1.2rem;
}

.WhatPeopleSay_slider::after {
    content: url(../imges/slider_ptten.png);
    position: absolute;
    top: -70px;
    left: -100px;
    z-index: -1;
}

.WhatPeopleSay_slider::before {
    content: url(../imges/slider_ptten2.png);
    position: absolute;
    bottom: -160px;
    right: -160px;
    z-index: -1;
}

.splide__pagination {
    bottom: -10rem;
}

.splide__pagination__page.is-active {
    background: var(--color-Blue);
}

.splide__pagination__page {
    background: #21212180;
}

/* Footer_section */
.Footer_mt {
    margin-top: 20rem;
}

.Footer_logo {
    width: 15rem;
    height: 15rem;
}

.Footer_section {
    background: #E9F7FF;
    padding: 7rem 0 4rem 0;
    position: relative;
}

.addressdetails_ul li {
    display: grid;
    grid-template-columns: 2rem auto;
    grid-gap: 1.2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.addressdetails_ul li a {
    color: var(--color-Secondry);
}

.Sociallink_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10rem;
}

.Quicklinks p {
    font-size: 2rem;
    white-space: nowrap;
}

.Quicklinks ul li {
    margin-top: 1.4rem;
}

.Quicklinks ul a,
.Quicklinks ul span {
    color: var(--color-Secondry);
    white-space: nowrap;
}

.Social_contant li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.Social_contant li svg {
    fill: var(--color-Secondry);
}

.Social_contant li:nth-child(1):hover svg {
    fill: #0072b1;

}

.Social_contant li:nth-child(2):hover svg {
    fill: #1DA1F2;
}

.Social_contant li:nth-child(3):hover svg {
    fill: #fa7e1e;
}

.Social_contant li:nth-child(4):hover svg {
    fill: #0866FF;
}

.Arrow_items {
    display: none;
    width: 5rem;
    height: 5rem;
    background: var(--gradian);
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    left: 30px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
    border: 0;
}

.Arrow_items i {
    color: var(--color-White);
    font-size: 2.4rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes bounce {
    50% {
        top: 15px;

    }
}

.leftpatten {
    position: absolute;
    top: 0;
    left: 0;
}

.rightpatten {
    position: absolute;
    bottom: 0;
    right: 0;
}

.CopyRight {
    margin-top: 10rem;
    color: var(--color-Secondry);
    text-align: center;
    font-size: 1.2rem;
}

/* ........................................................ */
/* Page:2 About US */
/* ........................................................ */
.AboutHero_section {
    position: relative;
}

.AboutHero_section img {
    width: 100%;
}

.Aboutcontant {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.Aboutcontant h1 {
    font-size: 7rem;
    color: var(--color-White);
    font-weight: 700;
    font-family: 'Cardo', serif;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.10);

}

.Aboutcontant ul {
    display: flex;
    margin-top: 1rem;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-White);
}

.Aboutcontant ul li a {
    color: var(--color-White);
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.10);
    font-weight: 500;
}

.Aboutmain_section {
    position: relative;
}

.Aboutright_patten {
    position: absolute;
    right: 0;
    bottom: -50%;
}

.Benefits_section h2 {
    font-family: 'Cardo', serif;
    color: var(--color-Blue);
    text-align: center;
}

.Partnering_contant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem;
    margin-top: 9rem;
}

.Partnering_Items {
    border-radius: 20px;
    background: var(--color-White);
    box-shadow: 0px 0px 30px 0px rgba(13, 15, 28, 0.10);
    padding: 5rem 3rem;
    position: relative;
    text-align: center;
}

.Service_imges {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-Blue);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5rem;
}

.Service_imges svg {
    width: 6.5rem;
    height: 6.5rem;
}

.QualityService_Cotant {
    margin-top: 2rem;
    color: var(--color-Secondry);
}

.QualityService_Cotant h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.4rem;
}

.QualityService_Cotant p {
    font-size: 1.8rem;
    line-height: 3.2rem;
    max-height: 28.8rem;
    overflow: auto;
}

.QualityService_Cotant p::-webkit-scrollbar {
    width: 3px;
}

.QualityService_Cotant p::-webkit-scrollbar-track {
    background: transparent;
}

.QualityService_Cotant p::-webkit-scrollbar-thumb {
    background: rgba(59, 72, 86, 0.20);
}

.Choicecontrol_items {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: auto 40rem;
    grid-gap: 10rem;
    align-items: center;
    overflow: hidden;
}

.Choicecontrol_itemsTwo {
    grid-template-columns: 40rem auto;
}

.Choicecontrol_Contant h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-Secondry);
}

.Valuse_contant li {
    padding-left: 2rem;
    margin-top: 2rem;
    display: flex;
    gap: 1.6rem;
}

.Valuse_contant li::before {
    content: url(../imges/about-us/limark.png);
}

.Valuse_contant li p {
    font-size: 1.8rem;
    color: var(--color-Secondry);
    font-weight: 500;
}

.Contact_section {
    background-image: url(../imges/about-us/contact.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 22rem;
    padding: 0 31.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.Contact_section h2 {
    font-family: 'Cardo', serif;
    color: var(--color-White);
}

.Contact_section a {
    padding: 1.8rem 3rem;
    color: var(--color-Blue);
    background: var(--color-White);
    border-radius: 15px;
    border: 0;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 1s all ease;
    z-index: 0;
    -webkit-appearance: none
}

.Contact_section a:hover {
    color: var(--color-White);
}

.Contact_section a::before {
    background: var(--color-Blue);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all .6s ease;
    color: var(--color-White);
}

.Contact_section a::before {
    width: 100%;
    height: 0%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.Contact_section a:hover::before {
    height: 380%;
}

.Ourvalue_patten {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.Ndispatten {
    position: absolute;
    right: 0;
    bottom: 10%;
}

.Contactmain_section h2 {
    font-family: 'Cardo', serif;
    color: var(--color-Blue);
    text-align: center;
}

.Contactcontant_items {
    display: grid;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 6rem;
}

.ContactFrom_section h3 {
    font-weight: 600;
    font-size: 2.4rem;
    color: var(--color-Secondry);
    margin-bottom: 1.6rem;
    text-align: center;
}

.Contact_From {
    margin-top: 3rem;
}

.From_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}

.From_items input {
    padding: 1.8rem 2rem;
    border-radius: 10px;
    background: #E4EBEF;
    outline: 0;
    border: 0;
    color: var(--color-Secondry);
}

.Comment_txt textarea::placeholder,
.From_items input::placeholder {
    color: #8f9aa3;
}

.Comment_txt {
    margin-top: 2rem;
}

.Comment_txt textarea {
    padding: 1.8rem 2rem;
    border-radius: 10px;
    background: #E4EBEF;
    outline: 0;
    border: 0;
    color: var(--color-Secondry);
    width: 100%;
}


.Submit_btn {
    margin-top: 3rem;
    height: 5rem;
    width: 15rem;
    background: var(--gradian);
    border: 0;
    color: var(--color-White);
    border-radius: 15px;
    font-weight: 600;
}

.Submitbtn_animtion {
    background-size: 600%;
    -webkit-animation: Submitbtnanimtion 2s linear infinite;
    animation: Submitbtnanimtion 2s linear infinite;
}


@-webkit-keyframes Submitbtnanimtion {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes Submitbtnanimtion {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.loction_iframe {
    width: 50rem;
}

.loction_iframe iframe {
    width: 100%;
    height: 100%;
}

.ContactDetails_section h2 {
    font-family: 'Cardo', serif;
    color: var(--color-Blue);
    text-align: center;
}

.ContactDetails_Contant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem;
}

.ContactDetails_items {
    border-radius: 10px;
    background: var(--color-White);
    box-shadow: 0px 0px 20px 0px rgba(3, 14, 30, 0.08);
    text-align: center;
    position: relative;
    padding: 6rem 2rem 2rem;
}

.callitems {
    width: 8rem;
    height: 8rem;
    background: var(--color-Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: -4rem;
    transform: translateX(-50%);
}

.callitems svg {
    width: 4rem;
    height: 4rem;
}

.ContactDetails_items p {
    font-size: 1.8rem;
    color: var(--color-Secondry);
    font-weight: 500;
    margin-bottom: 1rem;
}

.ContactDetails_items a {
    color: var(--color-Secondry);
}

/* .................... */
/* Career */
/* .................... */

.JoinOurTeam_section h2 {
    font-family: 'Cardo', serif;
    color: var(--color-Blue);
    text-align: center;
}

.Joinour_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    margin-top: 5rem;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.2s;
}

.teamitems {
    padding: 4rem 3rem;
    border-radius: 20px;
    background: var(--color-White);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
}

.teamitems:hover {
    transform: translateY(-15px) !important;
}

.teamitems .Heading_txt span {
    font-size: 4rem;
    color: var(--color-Acent);
    font-weight: 500;
}

.teamitems .Heading_txt {
    color: var(--color-Secondry);
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.ApplicationProcess_Section h2 {
    font-family: 'Cardo', serif;
    color: var(--color-Blue);
}

.Application_Contant {
    margin-top: 5rem;
}

.Application_Contant p {
    font-size: 1.8rem;
    line-height: 3.2rem;
    color: var(--color-Secondry);
    font-weight: 500;
    margin-top: 1.5rem;
}

.Application_Contant a {
    text-decoration: underline;
    color: var(--color-Blue);
}

.Applyforjob_section {
    background: var(--color-Blue);
    position: relative;
}

.careerleft_pattan {
    position: absolute;
    top: -120%;
    left: 0;
    z-index: -1;
}

.PattanLeft {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -0;
}

.Pattanright {
    position: absolute;
    right: 0;
    bottom: 0;
}

.Applyforjob_Contant {
    padding: 10rem;
    position: relative;
    z-index: 1;
}

.applyheading_txt p {
    font-family: Lato;
    color: var(--color-White);
    margin-bottom: 2rem;
    letter-spacing: 7.2px;
    text-transform: uppercase;
}

.applyheading_txt h2 {
    font-family: 'Cardo', serif;
    color: var(--color-White);
}

.JobFrom {
    margin-top: 5rem;
}

.JobFrom input,
.JobFrom textarea {
    background: var(--color-White);
}

.jobbtn {
    background: var(--color-White);
    color: var(--color-Blue);
}

.form-control-select {
    width: 100%;
    padding: 1.8rem 2rem;
    border-radius: 10px;
    background: var(--color-White);
    outline: 0;
    font-size: 1.6rem;
    color: #8f9aa3;
}

.selectjob_dropdown .selectbtn::placeholder {
    color: #1B9CE4;
}

.selectjob_dropdown .dropdown-menu {
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}

.selectjob_dropdown .dropdown-item {
    font-size: 1.6rem;
}

.selectjob_dropdown .dropdown-item:hover {
    background: var(--color-Blue);
    color: var(--color-White);
}

.Uploadcv_items {
    position: relative;
    display: flex;
    align-items: center;
}

.Uploadcv_items input {
    width: 100%;
}

.Uploadcv_items .Uploadcv_input {
    position: absolute;
    right: 0;
    background-color: transparent;
    width: 14rem;
    padding: 0.8rem 1.7rem;
}

.upload_items {
    padding: 1.8rem 2rem;
    border-radius: 10px;
    background: var(--color-White);
    outline: 0;
    border: 0;
    color: #8f9aa3;
    width: 100%;
}


.Uploadcv_items .Uploadcv_input::-webkit-file-upload-button {
    visibility: hidden;
}

.Uploadcv_items .Uploadcv_input::before {
    content: 'Upload';
    color: black;
    display: inline-block;
    background: #dde2f1;
    border: 1px dashed #183E9F80;
    border-radius: 3px;
    padding: 5px 8px;
    width: 100%;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    color: var(--color-Blue);
    font-weight: 500;
    text-align: center;
    margin-top: 5px;
}


/* ............................ */
/* Services */
/* ............................ */
.tabs_items {
    display: grid;
    background-color: #f3f4f5;
    position: sticky;
    top: 160px;
}


.tabs_items li {
    background: none;
    color: var(--color-Secondry);
    display: inline-block;
    padding: 1.6rem 2.2rem;
    cursor: pointer;
}

.tabs_items li.current {
    background: var(--color-White);
    border-left: 5px var(--color-Blue) solid;
    color: var(--color-Blue);
    font-weight: 500;
    border-radius: 2px;
}

.tab-content {
    display: none;
}

.tab-content.current {
    display: inherit;
}

.Services_section {
    display: grid;
    grid-template-columns: 30rem auto;
    grid-gap: 5rem;
}

.TabHading {
    font-family: 'Cardo', serif;
    color: var(--color-Blue);
    margin-bottom: 3rem;
}

.Homecare_contant {
    list-style-position: inside;
    padding-left: 2rem;
    margin-top: 3rem;
}

.Homecare_contant li {
    list-style: disc;
    color: var(--color-Secondry);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.commontypes_contant {
    margin-top: 3rem;
    color: var(--color-Secondry);
    font-size: 1.8rem;
}

.commontypes_contant ul {
    list-style-position: inside;
    padding-left: 2rem;
    margin-top: 3rem;
}

.commontypes_contant ul li {
    list-style: auto;
    margin-bottom: 1rem;
}

.Contant_txt {
    font-size: 1.8rem;
    color: var(--color-Secondry);
    margin-top: 3rem;
}

/* modal popup  */
.Moadalpopup {
    border-radius: 10px;
    background: var(--color-White);
    box-shadow: 0px 0px 100px 0px rgba(13, 15, 28, 0.20);
    padding: 4rem;
    width: 34rem;
    position: fixed;
    right: -34rem;
    bottom: 20px;
    z-index: 999;
    transition: 0.3s;
}

.Moadalpopup.active {
    right: 20px;
}

.Moadalpopup img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -70px;
}

.closebtns i {
    font-size: 2rem;
}

.closebtns {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.Moadalpopup p {
    margin-top: 2rem;
    font-size: 1.8rem;
    color: var(--color-Secondry);
    text-align: center;
}

.Contact_btn {
    padding: 0.8rem 2.8rem;
    background: var(--color-Blue);
    border-radius: 100px;
    border: 0;
    color: var(--color-White);
    margin-top: 2rem;
}

.arrow-container {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
}

.arrow-1 {
    width: 100px;
    height: 100px;
    background: var(--color-Blue);
    opacity: 0.5;
    border-radius: 50%;
    position: absolute;
}

.arrow-2 {
    width: 60px;
    height: 60px;
    background: var(--color-Blue);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-2 i.fa {
    font-size: 30px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #006064;
}

/* Custom Animate.css */

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.4, .4, .4);
        transform: scale3d(.4, .4, .4);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.4, .4, .4);
        transform: scale3d(.4, .4, .4);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.ilovendils_logo {
    width: 14rem;
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}


.ndisProviders_logo {
    width: 14rem;
    margin-top: 2rem;
}


.isupportndis_logo {
    width: 12rem;
    margin: 0 auto;
}

/* .ndis_text {
    display: flex;
    align-items: center;
    max-width: 50%;
    gap: 10px;

} */

.ndis_text img {
    border-radius: 8px;
    overflow: hidden;
}

/* 
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

.hidden-text {
    display: none !important;
} */

.countrylanguage .goog-te-combo {
    padding: 5px 7px;
    width: 100%;
    border-radius: 6px;
    background: var(--color-White);
    outline: 0;
    font-size: 1.6rem;
    color: #8f9aa3;
    border: 0;
}


.countrylanguage .goog-te-gadget .goog-te-combo {
    margin: 0;
}

.Topbar_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social_countrylanguage_section {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Refernow Form */

.ReferralForm_Contant {
    padding: 0 10rem;
}

.Submit_txt {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-Secondry);
    margin-top: 20px;
}

.Referrer_heading {
    color: var(--color-Secondry);
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    margin: 4rem 0;
}

.Referral_items {
    margin-top: 3rem;
}

.Referral_items label {
    color: var(--color-Secondry);
    margin-bottom: 8px;
}

.Referral_items span {
    color: #FF2A00;
}

.Referral_items input,
.form-control-refer {
    display: block;
    width: 100%;
    border: 1px solid #767f89;
    border-radius: 15px;
    height: 6rem;
    padding: 0 20px;
    color: var(--color-Secondry);
    transition: 0.1s;
    outline: 0;
    background-color: white;
}

.Referral_items textarea {
    display: block;
    width: 100%;
    border: 1px solid #767f89;
    border-radius: 15px;
    padding: 20px;
    color: var(--color-Secondry);
    transition: 0.1s;
    outline: 0;
    background-color: white;
}

.Referral_items input::placeholder,
.Referral_items textarea::placeholder {
    color: #767f89;
    font-size: 1.6rem;
}

.Referral_items input:focus,
.Referral_items textarea:focus {
    border: 1px solid var(--color-Blue);

}

.Referral_items input.filled,
.Referral_items textarea.filled {
    border: 1px solid var(--color-Secondry);
    font-weight: 500;
}

#Referredby-error,
#PhoneNumber-error,
#ParticipantFirstName-error,
#ParticipantLastName-error,
#ParticipantDateofBirth-error,
#ParticipantAddress-error,
#Suburb-error,
#Postcode-error,
#select-error,
#ParticipantGender-error,
#PlanStartDate-error,
#PlanEndDate-error,
#TypeofDisability-error,
#Participantiscurrently-error,
#descriptiondiagnosis-error,
#NDISPlanNumber-error,
#PlanManaged-error,
#FirstName-error,
#LastName-error,
#Email-error,
#FullName-error,
#Phone-error,
#mobile-error,
#email-error,
#body-error {
    color: #FF2A00 !important;
    font-size: 1.2rem;

}

.fundingtype_items {
    margin-top: 3rem;
}

.bold_label {
    font-size: 2.4rem;
    font-weight: 500;
}


.fundingtype_items span,
.Servicesrequired_checkbox span {
    color: #FF2A00;
}

.fundingtype_items input {
    width: 20px;
    zoom: 1.3
}

.redio_items {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}

.fundingtype_items input {
    accent-color: var(--color-Blue);
}

.Servicesrequired_checkbox {
    margin-top: 3rem;
}

.Servicesrequired_checkbox div {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;

}

.Servicesrequired_checkbox input {
    zoom: 1.5;
}

.Referral_submit {
    width: 350px;
    margin-bottom: 3rem;
}

.UploadCV_items {
    margin-top: 3rem;
}

.UploadCV_items label {
    color: var(--color-Secondry);
    margin-bottom: 8px;
}

.hidden {
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.alert-success {
    display: none;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 15px;
}

.alert-success {
    margin-top: 20px;
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    padding: 5px;

}

/* popup */
.Formsubmit_popup .modal-dialog {
    max-width: 630px;
    margin: 0 auto;
}

.Formsubmit_popup .modal-content {
    border: 0;
    box-shadow: 0px 0px 14px 0px #00000026;
    border-radius: 2rem;
}

.successpopup_contant {
    text-align: center;
    font-weight: 500;
}


.heading_text {
    font-family: 'Cardo', serif;
    font-size: 2.8rem;
}


.successpopup_contant p {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 1.6rem;
}

.Formsubmit_popup .modal-body {
    padding: 2rem 2rem 3rem;
}

#lottie-Successful,
#lottie-Error {
    width: 17.8rem;
    height: 17.8rem;
    margin: 0 auto;
}

.Error_text {
    max-width: 75%;
    margin: 0 auto;
}


.multiSelect-items {
    margin-top: 3rem;
}


.multiSelect-items.light-style .select2-container--default .select2-selection {
    color: var(--color-Secondry);
    border: 1px solid #767f89;
    background-color: white;
    border-radius: 15px;
    min-height: 6rem;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-weight: 500; */
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    /* height: 100%; */
}

.multiSelect-items.light-style .select2-container--default .select2-selection--multiple .select2-selection__choice {
    color: var(--color-Secondry);
    background-color: rgba(47, 43, 61, 0.08);
    font-size: 1.6rem;
}

html:not([dir=rtl]) .select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 7px;
    padding-right: 2rem;
    border-radius: 6px;
}

.multiSelect-items .select2-container--default .select2-results>.select2-results__options {
    max-height: 20rem;
    overflow-y: auto;
    margin-block: 0.5rem;
}

.multiSelect-items .select2-container--default .select2-results__option--highlighted:not([aria-selected=true]) {
    background-color: #1b9ce429 !important;
    color: #1B9CE4 !important;
}

.multiSelect-items label {
    color: var(--color-Secondry);
    margin-bottom: 8px;
}

.multiSelect-items label span {
    color: #FF2A00;
}


.multiSelect-items .select2-container--default .select2-search--inline .select2-search__field {
    color: #767f89;
}