/*
Theme Name: Safehands Support Foundation  
Theme URI: https://www.busfam.com/
Author: Busfam Team
Author URI: https://www.busfam.com/
Description: 2025 responsive theme with Bootstrap5. HTML5, CSS3 and Javascript.
Version: 6.0
*/

@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --bodyfont: "Poppins", sans-serif;
    --headfont: "Philosopher", serif;
    --orange: #FFB01A;
    --blue: #1A4685;
    --textcolor: #444;
    --commonbg: #E5F2F6;
    --white: #fff;
    --black: #222;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--bodyfont);
    background-position: center;
    background-image: url(images/pattren_bg.jpeg);
}

/* pre-edit properties */
h1,
h2 {
    font-size: 34px;
    color: var(--blue);
    font-family: var(--headfont);
    font-weight: bold;
}

h3 {
    font-size: 24px;
    font-family: var(--headfont);
    font-weight: 700;
}
h6 {
    font-size: 1rem;
    color: var(--blue);
}

p {
    font-size: 14px;
    margin: 0px;
    color: var(--textcolor);
    margin-bottom: 10px;
text-align:justify;
}

a {
    color: var(--blue);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--orange);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
    font-size: 15px;
}

ol li {
    list-style: decimal;
    font-size: 15px;
}

/* btn's */
.btn {
    padding: 10px 15px !important;
    font-size: 14px !important;
    border: none;
    border-radius: none;
    border-radius: 0 !important;
}

.btn i {
    font-size: 13px;
    margin-left: 2px;
}

.btn-primary {
    background-color: var(--blue);
}

.btn-primary:hover {
    background-color: var(--orange);
}

.btn-secondary {
    background-color: var(--orange);
}

.btn-secondary:hover {
    background-color: var(--blue);
}

/* pre-edit classes */
.title {
    font-size: 45px;
    color: var(--blue);
    font-weight: bold;
    font-family: var(--headfont);
}

.section_gap {
    background-color: #fff;
    padding: 40px 0px;
}

.section_gap:nth-child(odd) {
    background-position: center;
    background-image: url(images/pattren_bg.jpeg);
}

.ul_list li {
    font-size: 16px;
    color: var(--textcolor);
    margin: 8px 0px;
    position: relative;
}

.ul_list li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    font-size: 13px;
    color: var(--orange);
    margin-right: 10px;
}

.section_title.text-left {
    text-align: start;
}

.section_title.text-left h2::before, .section_title.text-left h1::before {
    left: 0;
}

.section_title {
    text-align: center;
    margin-bottom: 25px;
}

.section_title h2,
.section_title h1 {
    margin-bottom: 15px;
    position: relative;
}

.section_title h2::before,
.section_title h1::before {
    content: "";
    height: 2px;
    width: 50px;
    background-color: var(--orange);
    position: absolute;
    bottom: -5px;
    left: 50%;
}

.section_title h3 {
    color: var(--blue);
}

.play_btn {
    height: 80px;
    width: 80px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    margin: 0px auto;
    position: relative;
    cursor: pointer;
    z-index: 9999;

    i {
        font-size: 25px;
        color: var(--orange);
        line-height: 80px;
        animation: icon_anime 3000ms ease-in-out infinite;
        text-align: center;
    }
}

.play_btn::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #ffffff56;
    border-radius: 50%;
    z-index: -1;
    animation: anime_btn 2000ms ease-in-out infinite;
}

@keyframes anime_btn {
    0% {
        opacity: 0;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.g-recaptcha>div {
    height: 78px;
    transform: scale(0.75);
    webkit-transform: scale(0.75);
    text-align: left;
    position: relative;
    margin: 0px 0px 0;
}

.whitebg {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 15px #00000029;
    border-top: 3px solid #f5c05c;
}

.form-control,
.form-select {
    padding: .7rem .75rem;
    font-size: 14px;
}

/*backto-top*/
#backto-top {
    display: inline-block;
    background-color: #fff;
    border: 2px solid var(--orange);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-align: center;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 24%);
}

#backto-top i {
    color: var(--orange);
    line-height: 50px;
}

#backto-top:hover {
    cursor: pointer;
    background-color: var(--orange);
}

#backto-top:hover i {
    color: #fff;
}

#backto-top.show {
    opacity: 1;
    visibility: visible;
}

/*backto-top end*/


/* start header */
header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 999999;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    border-top: 3px solid var(--blue);
}

.logo a img {
    width: 250px;
    padding:5px 0;
}

.header_btn_icon {
    background-color: transparent !important;
    border: 1px solid var(--orange);
    color: var(--orange) !important;
}

.header_btn_icon:hover {
    background-color: var(--orange) !important;
    color: #fff !important;
}

/* end header */

/* start banner */
.banner .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 5px;
    border-radius: 0;
    background-color: #FFB01A;
}

.banner {
    background-color: #d6d3d0;
}

.banner .carousel-indicators {
    z-index: 444;
    bottom: 15PX;
    transform: translateY(-50%);
    padding: 0;
    z-index: 9999;
}

.banner .carousel-indicators {
    bottom: -45px;
}

.banner .carousel-caption {
    width: 100%;
    position: unset !important;
    text-align: left !important;
    padding: 0 40px;
}

.banner .carousel-control-next-icon,
.banner .carousel-control-prev-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 50% 50%;
    border: 2px solid #fff;
    border-radius: 50%;
}

.carousel-caption h2 {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 40px;
}

.carousel-caption p {
    color: var(--textcolor);
    margin-bottom: 15px;
}

.banner .owl-nav button span {
    display: none;
}

.banner .owl-dots {
    display: none;
}

.banner .btn-primary {
    margin-top: 15px;
}

.play-btn {
    height: 50px;
    width: 50px;
    background-color: #fff;
    color: var(--orange);
    display: inline-block;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 40px;
    margin-left: 15px;
}

/* end banner */
.sticky_div {
    position: sticky;
    top: 100px;
}

.tick ul,
.tick_double ul {
    padding-left: 0;
    margin: 10px 0 20px 32px;
}

.tick ul li,
.tick_double ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.tick ul li:before,
.tick_double ul li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f058";
    color: var(--orange);
    font-size: 15px;
    transition: all 0.3s ease;
    margin-right: 8px;
    margin-left: -32px;
}

.tick_double ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}


/* start about */


.about_img img {
    width: 75%;
}

.about_img_l {
    width: 60% !important;
    position: absolute;
    bottom: -15%;
    left: 5%;
}

.about_img .about_circle {
    width: 120px !important;
    position: absolute;
    bottom: -38%;
    right: 8%;
}

.about_con .btn-primary {
    margin-top: 5px;
}

/* end about */

/* start mission */
.mission_box {
    border: none;

}

.mission_box:hover {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.mission_box_img {
    overflow: hidden;
}

.mission_box_img img {
    transition: 0.7s;
}

.mission_box:hover .mission_box_img img {
    transform: scale(1.2);
    transition: 1.2s;
}

.mission_box .card-body {
    padding: 10px 15px;
    padding-bottom: 0;
}

.mission_box .card-body h3 {
    font-weight: 600;
    font-size: 25px;
    color: var(--blue);
}

.mission_box .card-body h3:hover {
    color: var(--orange);
    cursor: pointer;
}

.mission_box .card-body p {
    font-size: 15px;
    margin-bottom: 15px;
}

.mission_box .card-footer {
    display: flex;
    justify-content: start;
    gap: 15px;
    align-items: center;
    padding: 0 15px !important;
    padding-bottom: 15px !important;
    border: none;
    background-color: transparent;
}

/* end mission */


/* start news */
.news {
    background-position: center;
    background-image: url(images/pattren_bg.jpeg);
}


.news .section_title h2::before {
    left: 0%;
    transform: unset;
}

/* end news */

/* start counter */

.counter_section {
    background-image: url(images/vdobg.webp) !important;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 40px 0;
}

.counter_section::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* set to 100% for full overlay width */
    background-color: rgba(0, 0, 0, 0.7);
}

.vdo_section {
    position: relative;
    z-index: 2;
}

.vdo_section p {
    color: #fff;
    font-size: 14px;
}

.counter_yellowbg {
    background-color: var(--orange);
    z-index: 2;
    padding: 40px;
}

.counter_yellowbg h3 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 40px;
}

.counter_yellowbg p {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
}

.counter_yellowbg .btn-primary:hover {
    background: #111;
}

.counter_box {
    text-align: center;
    z-index: 2;
    position: relative;
}

.counter_box img {
    height: 70px;
    width: 70px;
}

.counter_box h2 {
    font-weight: 600;
    font-size: 45px;
    color: var(--orange);
}

.counter_box h2 span {
    font-weight: 600;
    font-size: 45px;
    color: #fff;
}

.counter_box h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}



/* start video section */
.play_btn {
    height: 60px;
    width: 60px;
    background-color: #fff;
    text-align: center;
    border-radius: 0;
    margin: 0px auto;
    position: relative;
    cursor: pointer;
    z-index: 9999;
}

.play_btn i {
    font-size: 18px;
    color: var(--orange);
    line-height: 60px;
    animation: icon_anime 3000ms ease-in-out infinite;
    text-align: center;
}

.play_btn::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #ffffff56;
    border-radius: 0;
    z-index: -1;
    animation: anime_btn 2000ms ease-in-out infinite;
}

@keyframes anime_btn {
    0% {
        opacity: 0;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* end video section */
/* end counter */

/* start news */

.blog_box {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog_img {
    overflow: hidden;
    transition: 1s;
}

.blog_box img {
    transition: 1s;
}

.blog_box:hover img {
    transform: scale(1.2);
    transition: 1s;
}

.blog_box .card-body {
    padding: 10px;
}

.blog_box .card-body ul {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.blog_box .card-body ul li i {
    font-size: 12px;
    color: var(--orange);
}

.blog_box .card-body ul li a {
    color: var(--textcolor);
    font-weight: 500;
    font-size: 14px;
}

.blog_box .card-body ul li a:hover {
    color: var(--orange);
}

.blog_box .card-body h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
}

.blog_box .card-body h3:hover {
    color: var(--orange);
    transition: 0.4s;
    cursor: pointer;
}

.blog_box .card-footer {
    background-color: #fff;
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.123);
}

.blog_box .card-footer p {
    font-size: 15px;
    margin: 0;
}

.whitebg input {
    border-radius: 0;
}

.whitebg input:focus {
    background-color: unset;
    outline: unset !important;
    border-color: unset !important;
    box-shadow: unset;
}

.news .g-recaptcha>div {
    margin-left: -35px;
}

/* end news */

/* start footer */
.footer {
    background-color: #171B2A;
    padding: 20px 0px;
}

.footer_links {
    display: flex;
    justify-content: start;
    column-gap: 0;
}

.footer_links li a {
    color: #fff;
    font-size: 11px;
}

.footer_links li.current_page_item a {color: #ffb01a;}


.footer_links li a.active {
     color: var(--orange);
}
.footer_links li a:hover {
    color: var(--orange);
}

.footer_links li:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "|";
    color: #ffffff3f;
    font-size: 8px;
    margin: 0 16px;
    position: relative;
}

.footer_links li:last-child:after {
    content: "";
    margin: 0;
}

/* end footer */

/* start footer */
.footer {
    background-color: #0d203a;
    padding: 15px 0px 15px 0;
}

.copyright_icons a {
    font-size: 15px;
    color: #fff;
    margin: 0 10px;
}

.address_footer p {line-height: 22px;text-align: left;font-size: 14px;}
.branch_office p {font-size: 13px;}

.address_footer a.btn-secondary {
    margin-top: 20px;
}

.copyright_icons a:hover {
    color: var(--orange);
}


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

.copyright_text p {
    color: #cccaca;
    font-size: 11px;
    margin: 0;
    margin-top: 4px;
}

.copyright_text a {
    color: var(--orange);
}

.copyright_links {
    display: flex;
}

.copyright_links li a:hover {
    color: var(--orange) !important;
}

.copyright_links li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0c8";
    color: #ffffff3f;
    font-size: 8px;
    margin-right: 0;
    position: relative;
    top: -2px;
    left: -5px;
}

.copyright_section .copyright_links li {
    margin-right: 20px;
}

.copyright_section .copyright_links li a {
    color: #cccaca;
    font-size: 14px;
}

/* end footer */


/* get in touch */
.get_in_touch {
    padding: 25px 0;
    background-color: #a97a131a;border-top:3px solid #efc87f85;
}

.get_in_touch p {
    margin: 0 !important;
}

.get_in_touch span {
    text-align: center;
}

.get_in_touch_border {
    border-right: 1px solid #e1ca85;
}
.foot_block .enquire_box_con{
        padding: 18px 0;
}

.get_in_touch_border:last-child {
    border-right: 0;
}

.enquire_box {
    align-items: center;
    padding: 15px 0;
    box-shadow: none;
    border-radius: 0;
    flex-direction: column !important;
    background: transparent;
    border: 0;
}
.enquire_box_con.branch_office h6 {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 0;
}
.enquire_box_con.branch_office h6 strong{font-weight: 600;}

.get_in_touch_border:first-child .enquire_box {
    padding-left: 0;
}

.enquire_box .card {
    background: transparent !important;
}

.enquire_box_head {
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}


.enquire_box_icon {
    height: 40px !important;
    width: 40px !important;
    text-align: center;
    background-color: var(--orange);
    font-size: 18px;
    border-radius: 0;
    line-height: 40px;
    color: #fff;
}

.enquire_box_body {
    width: 100%;
}



.enquire_box_con h6 {
    font-size: 14px;
	color: var(--black);
    margin-bottom: 6px;
}

.enquire_box_con a {
    font-size: 14px;
    border-left: 1px solid #dbbc60;
    padding: 0px 10px;
}

.enquire_box_con a:first-child {
    border: none;
    padding-left: 0;
}

.enquire_box_con {
    border-bottom: 1px solid #e1ca85d7;
    padding: 8px 0;
}
.enquire_box_con p strong{font-weight:600;color:var(--black);}

.enquire_box_body .enquire_box_con:last-child {
    border: none;
}

.enquire_box_head h5 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 600;
    text-align: center;
}

.enquire_box span h5 i {
    color: var(--orange);
}


.enquire_box:hover .enquire_box_icon {
    background-color: #000;
    border-radius: 50%;
}

.enquire_box:hover span h5 {
    color: var(--orange);
}

/* get in touch */

.contact_banner {
    background-image: url(images/elder_care_coordinator_bg.webp) !important;
    background-size: cover;
    background-position: center;
    padding: 80px 0px;
    position: relative;
}

.contact_banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: unset;
    background: rgba(0, 0, 0, 0.74);
}

.contact_banner h2 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 40px;
}


/*contact*/


.cont_right_bg {
    background: var(--orange);
}

.right_conatct_social_icon {
    position: relative;
    margin-top: 10px;
    border-radius: 0;
}

.contact_inner {
    background: #fff;
    border-radius: 0;
    border: 1px solid var(--orange);
}

.contact_field {
    padding: 10px 10px 30px 25px;
}

.property_details .contact_field {
    padding: 25px;
}


.contact_field h3 {
    color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact_field p {
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.contact_field .form-control {
    border-radius: 0px;
    border: none;
    margin-top: 10px;
    background: transparent;
    color: #333;
    padding: 0.5rem 0.75rem;
    border: 1px solid #efd9ae;
}

.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--blue);
}

.contact_field .form-control::placeholder {
    font-size: 13px;
    color: #333;
}

.contact_info_sec {
    margin: 20% auto 0 auto;
    border-left: 6px solid var(--orange);
    background: var(--blue);

    width: 100%;
    padding: 20px 0 40px 0;
    border-radius: 0;
}

.contact_info_sec h4 {
    color: #fff;
    font-family: var(--headfont);
    font-size: 28px;
}

.contact_info_sec img {
    width: 95%;
}

.contact_info_sec iframe {
    width: 95%;
    height: 300px;
}

.info_single {
    margin: 30px 0;
    color: #fff;
}

.info_single:last-child {
    margin: 30px 0 0 0;
}

.info_single i {
    margin-right: 15px;
    font-size: 18px;
    color: var(--orange);
}

.info_single span {
    font-size: 15px;
}

.socil_item_inner li {
    list-style: none;
}

.socil_item_inner li a {
    color: #fff;
    margin: 0px 15px;
    font-size: 14px;
}

.rounded-social-buttons .social-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border: 0.125rem solid transparent;
    padding: 0;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 16PX;
    font-weight: normal;
    line-height: 35px;
    border-radius: 0;
    transition: all 0.5s ease;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    background: var(--blue);
    margin-top: 10px;
}

.social-button:hover {
    transform: rotate(360deg);
    transition: 1s;
    color: var(--orange);
}

.contact input[type="submit"]:hover {
    background-color: #f28422;
    cursor: pointer;
    transition: 0.5s;
}

/*contact*/

/* <!-- inner banner -->	 */
.mid_inner{margin-top:130px;}
.inner-banner {
	background: url(images/patternbg2.webp) 0 0 repeat;
	position:fixed;z-index:88;width:100%;
}


.innerbanner-text-321 {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
}
.quote_block{align-items: center;justify-content: center;}
.innerbanner-text h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    display: table;
    padding: 5px 15px;
    background: var(--orange);
	margin-top: 45px;
	display:none;
}
.innerbanner-text p {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
	margin:0;
}
.innerbanner-text p span{
    color:#d46600;
    font-size: 16px;
    font-weight: 600;
	text-align:right;
	display:block;
}
.innerbanner-text img {width:100px;}
/* <!-- inner banner -->	 */

.bg-primary {
    background-color: var(--orange) !important;
}

.bg-primary i {
    color: #fff;
}


/*double image*/
.int_about_wrapper {
    padding: 0 0 25px 0;
}

.about_imgbox .about_img {
    position: relative;
}

.about_imgbox .about_img .child_imgbox {
    width: 60%;
    position: absolute;
    bottom: -35px;
    right: -20px;
    border-top: 12px solid #fffae9;
    border-left: 12px solid #fffae9;
}

.about_imgbox .about_img .child_imgbox img {
    width: 100%;
}

/*double image*/


.alternate_column .row:nth-child(even) {
    direction: rtl;
    text-align: left;
}

.alternate_column .row:nth-child(even) .content_box p,
.alternate_column .row:nth-child(even) .content_box h4 {
    direction: ltr;
}

.alternate_column .btn {
    direction: ltr;
}

.alternate_column .row[class*=col-] {
    direction: ltr;
}

.content_box {
    padding: 20px;
    text-align: left;
}

.content_box p {
    margin-bottom: 20px;
}

.content_box .bg-primary i {
    color: var(--white);
}

h4.text-primary a {
    font-size: 26px;
}

.content_box ul li {
    text-transform: capitalize;
    font-weight: 400;
    color: var(--black);
    direction: ltr;
}

.content_box ul li span {
    color: var(--brown);
}

.offering .content_box ul li {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
}

.alternate_column .row:nth-child(even) .btn_red {
    display: inline-block;
}

.mission_vision h4,
.cms-wrap h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid var(--blue);
}

.mission_vision h4 strong,
.cms-wrap h4 strong {
    position: relative;
    background: var(--blue);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    padding: 6px 10px;
    font-family: var(--headfont);
}

.mission_vision h4 strong:before,
.cms-wrap h4 strong:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid var(--blue);
    border-top: 36px solid transparent;
}

.mission_vision .tick ul {
    margin: 0 0 0 24px !important;
    margin-bottom: 18px !important;
}

.mission_vision .tick ul li {
    margin-bottom: 8px;
}

.mission_vision .tick ul li::before {
    margin-left: -25px;
}

.mission_vision .section_title {
    margin-bottom: 10px;
}

.associated_company img {
    border: 1px solid #ddd;
}

.banner_heading {
    background: #d7b88b;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: var(--black);
    text-align: center;
    border-bottom: 1px solid var(--orange);
    padding: 10px 0;
}

.banner_heading p {
    margin: 3px 0 0 0;
    color: #fff;
}

.banner_heading p span {
    font-size: 15px;
    color: #111;
    margin: 0 6px;
    font-weight: 400;
}

.facilities .why-choose-box {
    background: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0 0 6px 1px rgb(217 179 111 / 70%);
    padding: 8px 10px;
    border-radius: 5px;
    margin: 0 6px;
    margin-bottom: 12px;
}

.facilities .why-choose-box.choosebox2 {
    background: var(--orange);
    display: flex;
    align-items: center;
    box-shadow: 0 0 6px 1px rgb(111 182 239 / 19%);
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid var(--orange);
    margin: 0 6px;

}

.why-choose-box h4 {
    font-size: 15px;
    color: #3d3d3d;
    font-weight: 500;
}

.icon-box {
    width: 45px;
    height: 45px;
    margin-right: 8px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    transition: all .3s;
}

.icon-box img {
    width: 40px;
}

h5.card-title {
    text-align: center;
    color: #111;
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
}

.services .card {
    background: transparent;
}

label {
    font-size: 14px;
}

.room_features li {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--orange);
}

.room_features li span {
    display: table-cell;
}

.room_features li .li_icon {
    width: 13%;
}

.room_features li .li_icon img {
    background: var(--orange);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 8px;
    margin: 0 10px 0 0;
}

.room_features li .li_txt {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    line-height: 20px;
}

.room_features li:before {
    font-size: 0 !important;
}

/*photos gallery start*/

.post-box:hover .photo-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.photo-item {
    position: relative;
}

.photo-img {
    overflow: hidden;
    min-height: 57px;
    display: block;
    cursor: pointer;
    border-radius: 0;
}

.photo-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .5s ease-in-out;
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.photo-date {
    color: #fff;
    position: absolute;
    z-index: 99;
    bottom: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(rgba(0,0,0,0) 60%,rgba(0,0,0,.65) 100%);*/
    display: flex;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0;
    -webkit-transition: 300ms ease all;
    -moz-transition: 300ms ease all;
    transition: 300ms ease all;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
}

.photo-date span {
    color: #000;
}

.photo-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00000087;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;

}

.photo-icon i {
    line-height: 70px;
    font-size: 30px;
    color: #fff;
}

.post-box:hover .photo-date {
    -webkit-transform: scale(1) rotate(0);
    -moz-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    transition-delay: 300ms;
}

.view_title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 5px 0 0 0;
    background: var(--orange);
    padding: 6px 5px;
    border-radius: 0 0 6px 6px;
}

/*photos gallery end*/


.thanku_bg {
    background-image: radial-gradient(circle, #fff, #fff, #1a478562);
    padding: 50px 0;
}

.stellarnav li.has-sub>a:after {
    margin-right: 0 !important;
}

.stellarnav>ul>li {
    margin: 0 15px !important;
}

.social_icon {
    display: none;
}

.learning-dev .section_title {
    margin-bottom: 10px;
}

/* learning page counter */
/* counter */
#counter .card {
    background: url(images/bg-5.png) 0 0 repeat;
    padding: 28px 25px;
    line-height: 30px;
    text-align: center;
    border: 0;
    border-radius: 10px 0;
    border-bottom: 3px solid var(--orange);
}

#counter .card-img-overlay {
    bottom: 1%;
    top: auto;
}

#counter .card-img-text {
    background: rgba(0, 0, 0, .5);
    margin: 0 auto;
    width: 75%;
}

#counter .card p {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
	text-align: center;
}

#counter .counter_group {
    justify-content: center;
    align-items: center;
    display: flex;
}

#counter .counter-value {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

#counter .plus {
    font-size: 30px;
    font-weight: 500;
    color: var(--blue);
}

#counter .counter_area {
    background: url(images/pattern-2.png) 0 0 repeat;
}

#counter .counter_box {
    padding: 15px;
    border-radius: 6px;
    border-bottom: 2px solid #fff;
    box-shadow: 0 15px 10px -15px #000;
}

#counter .counter_box h5 {
    font-size: 18px;
    color: #fff;
}

#counter .counter_box img {
    height: 30px;
    margin: 5px;
    transition: transform .2s;
}

#counter .counter-value {
    font-size: 30px;
    font-weight: 600;
    color: var(--blue);
    display: table-cell;
}
.art_craft h6 {float: left;margin-top:10px;}
.art_craft ul {margin-left: 25px;float: left;}
.art_craft ul li {width: 95%;}
.art_craft ul li:before {margin-left: -25px;}
.facts_section_con h4 {border-bottom: none;}
.facts_section_con ul {margin-top: 0;margin-bottom: 10px;}
.qualities .qualities_box {border: none;position: relative;}

.qualities .qualities_box .card-body{
    background-color: var(--blue);
    position: absolute;
    bottom: -45px;
    width: 90%;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 10px;
    height: 70px;
    display: flex;
    align-items: center;
}
.art-craft-quality .qualities_box .card-body{
    background-color: var(--blue);
    position: absolute;
    bottom: -45px;
    width: 90%;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto 15px auto;
    padding: 10px;
    height: 50px;
    display: flex;
    align-items: center;
}
.art_craft .qualities_box .card-body{
    background-color: var(--blue);
    position: absolute;
    bottom: -45px;
    width: 90%;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 10px;
    height: 70px;
    display: flex;
    align-items: center;
}

.qualities .qualities_box p, .art-craft-quality .qualities_box p{
    font-weight: 400;
    margin-bottom: 0;
    line-height: 18px;
    font-size: 14px;
    color: #fff;
text-align:center;
}

.training_program_con ul {
    margin: 0;
}

.training_program_con ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #0000003d;
}

.training_program_con ul li img {
    height: 60px;
    width: 60px;
    margin-right: 12px;
    padding: 10px;
    background: var(--blue);
}

.training_program_con ul li:before {
    content: none;
}

.training_program_con ul li p {
    margin-bottom: 0;
}

.facts_section_con h3{
    color: var(--blue);
    margin-bottom: 5px;
    font-size: 22px;
}

.we_do ul{
    margin-bottom: 10px !important;
}

.we_do ol{
    margin: 10px 0;
    padding-left: 15px;
}

.we_do ol li::marker {
    color: var(--orange);
}

ol li::before{
    content: none !important;
    font-size: 0;
}

.elder-care-li ul li{
	width:90%;
}


.presence_section .qualities_box .card-body{
	justify-content: center;
    height: 40px;
bottom: -35px;
}

.presence_section .qualities_box{
background: transparent;
}
.presence_section .qualities_box .card-body{
	margin-top: -20px !important;
	position:unset !important;
}


.recommend_box_img img{
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.recommend_box{
    border: 0;
    padding: 10px;
    box-shadow: rgba(4, 76, 231, 0.24) 1px 3px 6px;
}
.recommend_box .card-body{
    text-align: center;
    padding: 0;
    margin-top: 7px;
}
.recommend_box .card-body p{ margin-bottom: 0; font-size: 16px; text-align: center;}
.fancybox-container{z-index: 9999999;}
.logo_section_left img{width:250px;float:left;margin:0 15px 5px 0;border:1px solid #ccc;padding:4px;}
.logo_section_right img{width:250px;float:right;margin:0 0 5px 15px;border:1px solid #ccc;padding:4px;}
.menu-callbtn{margin:10px 0 0 10px;}
.menu-callbtn a span{font-size:16px;color:var(--blue);}
.menu-callbtn a i{background:var(--orange);font-size:16px;color:#fff;padding:6px;}
.gallery_img_block img {padding:4px; border:1px solid var(--orange);}
