
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

#Topbar li:not(:first-child):before 
{
	background-color	: red;
	border-radius		: 50%;
	content				: "";
	display				: inline-block;
	height				: 7px;
	margin-right		: 5px;
	width				: 7px;
	margin-bottom		: 2px;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square2 {
    width  : 20px;
    height : 20px;
}

.btn-square {
    width  : 34px;
    height : 34px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-square2,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}


.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-white);
    color: var(--bs-secondary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn.btn-secondary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-primary) !important;
	color : white !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #121010;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -90px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -40px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: sans-serif, Roboto;
    position: relative;
    margin-right: 25px;
    padding: 17px 0px 11px 0px;
    /* color: var(--bs-dark) !important; */
    font-size: 14px;
    font-weight: 700;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    /* color: var(--bs-secondary) !important; */
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}


@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
		
		/* background-image : -webkit-linear-gradient(145deg, #F20B0B 65%, #FFFFFF 65%); */
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: 4px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}
.owl-nav, .owl-prev
{
	display : none;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 50%;
        transform: translateY(-50%);
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}


/*
 * Header banner media
 * Keep the complete source image/video visible on every screen.
 * Do not use object-fit: cover here because it intentionally crops.
 */
.header-carousel,
.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item {
    width: 100%;
}

.header-carousel .owl-stage-outer {
    overflow: hidden;
}

.header-carousel .header-carousel-item {
    position: relative;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 30px;
    padding: 0;
    overflow: hidden;
    display: block;
    transition: 0.5s;
}

.header-carousel .header-carousel-item img,
.header-carousel .header-carousel-item video {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0;
    display: block;
    object-fit: contain !important;
    object-position: center center !important;
}

.header-carousel .header-carousel-item video {
    background: #000;
}


@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.feature .feature-item .feature-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature .feature-item .feature-img img {
    transition: 0.5s;
}

.feature .feature-item .feature-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.feature .feature-item:hover .feature-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.feature .feature-item .feature-img:hover img {
    transform: scale(1.3);
}

.feature .feature-item .feature-content {
    position: relative;
    z-index: 2;

}

.feature .feature-item .feature-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* background: rgba(21, 185, 217, .5); */
    transition: 0.5s;
    z-index: 3;
}

.feature .feature-item:hover .feature-content::before {
    /* background: rgba(21, 185, 217, .5); */
    height: 100%;
}

.feature .feature-item .feature-content .feature-content-inner {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-content h4{
	color: var(--bs-white) !important;
}

.feature .feature-item:hover .feature-content .feature-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.feature .feature-item:hover .feature-content .feature-content-inner h5 {
    color: var(--bs-secondary);
}

#FeatureCards > [class*="col-md-"] {
    display: flex;
}

#FeatureCards .feature-item {
    width: 100%;
    height: 100%;
    min-height: 220px; /* adjust if needed */
    display: flex;
    flex-direction: column;
}

#FeatureCards .feature-item > .col-12 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#FeatureCards .feature-content {
    flex-grow: 1;
    justify-content: center;
}

/*** Features End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, .5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, .5);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-secondary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5, .feature .feature-item:hover .feature-content h6 p {
    color: var(--bs-dark);
}


/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(var(--bs-secondary), var(--bs-secondary)), url(../assets/img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial h1
{
	color	: white;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 14px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    /* max-width: 900px; */
    max-width: none;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .testimonial-carousel .testimonial-item {
	background: var(--bs-white);
    border-radius: 20px;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    /* background: var(--bs-light); */
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blog .blog-item .blog-centent, .blog .blogdiv
{
	border-radius : 15px;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
   /*  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
	background-color: var(--bs-secondary);
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
	color: var(--bs-white);
}

.footer .footer-item a:hover {
    letter-spacing: 0.5px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark-red) !important;
}
/*** copyright end ***/


/*** Navigation start ***/
#Navigation
{
	/* background-color : #F20B0B;
	background-image : -webkit-linear-gradient(145deg, #F20B0B 65%, #FFFFFF 65%); */
}



/*
 * Desktop header alignment
 * The topbar Email starts after col-lg-2 (2/12 = 16.6667%).
 * Give the logo area the same width so HOME starts on the same vertical line.
 */
@media (min-width: 992px) {
    #Navigation .navbar-brand {
        flex: 0 0 16.66666667%;
        width: 16.66666667%;
        max-width: 16.66666667%;
        margin-right: 0;
    }

    #Navigation .navbar-collapse {
        flex: 1 1 auto;
        min-width: 0;
    }

    #Navigation .main-navigation {
        margin-left: 0 !important;
    }
}

/* Keep the expanded navbar usable on medium desktop widths. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    #Navigation .navbar-nav .nav-link {
        margin-right: 12px;
        font-size: 12px;
    }

    #Navigation .default-btn {
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
        font-size: 11px !important;
    }
}


/*** Benefits start ***/
.feature #FeatureCards .feature-item
{
	background-color : #FFFFFF;
	border			 : none;
}
.feature #FeatureCards .feature-item .feature-content p
{
	text-align : center;
}
/*** Benefits end ***/

/*** Services start ***/
.feature .container .feature-content .featureTitle	
{
	/* display : inline-block; */
	font-size: 1.15rem !important;
}
/*** Services end ***/


/*** Accordian Faqs start ***/
.accordion input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.accordion-wrapper {
    border-radius: 8px;
    overflow: hidden;
   
    width: 100%;
    margin:0 auto;
}
.accordion {
    width: 100%;
    color : var(--bs-white);
    overflow: hidden;
    margin-bottom: 16px;
	border-radius:20px;
	
}
.accordion:last-child{
    margin-bottom: 0;
}
.accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 10px 16px 10px 16px;
    background: var(--bs-secondary);
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
}
.accordion-label:hover {
    background: #1f1a7c;
}
.accordion-label::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.accordion-content {
    max-height: 0;
    padding: 0 16px;
    color: rgba(4,57,94,1);
    background: var(--bs-primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.accordion-content p, .accordion-content .custom-bullets li{
    margin: 0;
    color : var(--bs-white);
    font-size: 18px;
}
.accordion input:checked + .accordion-label {
    background: var(--bs-primary);
}
.accordion input:checked + .accordion-label::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.accordion input:checked ~ .accordion-content {
    max-height: 100vh;
    padding: 2px 16px 10px 16px;
}

.accordion-content hr
{
	color : var(--bs-white);
}
/*** Accordian Faqs End***/


.blog .blog-item .blog-img img
{
	height : auto;
}

.blog .blog-item .blog-centent
{
	border : 0px solid black !important;
}

.blog-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Bigger image */
.blog-img {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Make content sections equal height */
.blog-centent {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

/* Push Read More button to bottom */
.blog-centent .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Mobile */
@media (max-width: 768px) {
    .blog-img {
        height: 300px;
    }

    .blog-centent {
        min-height: auto;
    }
}


.slider 
{
	width: 100%;
	margin: 50px auto;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}


.slick-slide {
  transition: all ease-in-out .3s;
}


.fab.fa-twitter{
	font-family:sans-serif;
}
.fab.fa-twitter::before{
	content:"𝕏";
	font-size:1.2em;
}

.required
{
	color : red;
}

/* 
.quote-form .form-row .form-row-inner {
	position: relative;
	width: 100%;
}
.quote-form .form-row .form-row-inner .label {
	position: absolute;
    top: -2px;
    left: 20px;
    font-size: 14px;
    color: grey;
    font-weight: 600;
    transform-origin: 0 0;
    transition: all .2s ease;
    -moz-transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    -ms-transition: all .2s ease;
}
.quote-form .form-detail .input-text, .quote-form .form-detail .select-text {
	margin-bottom: 31px;
}
.quote-form .form-detail input {
	width: 100%;
    padding: 0px 10px 6px 10px;
    border: 1px solid transparent;
    border-bottom: 1px solid;
    border-bottom-color: black;
    background: transparent;
    appearance: unset;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -o-appearance: unset;
    -ms-appearance: unset;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    font-size: 18px;
    color: black;
    font-weight: 300;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

.quote-form .form-detail .form-row .input-text:focus, .quote-form .form-detail .form-row .select-text:focus{
	border-bottom: 1px solid var(--bs-primary);
	background: transparent;
}

.quote-form .form-detail .form-row .input-text:focus + .label, 
.quote-form .form-detail .form-row .input-text:valid + .label {
	transform: translateY(-26px) scale(1);
	-moz-transform: translateY(-26px) scale(1);
    -webkit-transform: translateY(-26px) scale(1);
    -o-transform: translateY(-26px) scale(1);
    -ms-transform: translateY(-26px) scale(1);

}
.quote-form .form-detail .form-row .input-text:focus  + .border, 
.quote-form .form-detail .form-row .input-text:valid  + .border {
	transform: scaleX(1);
	-moz-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);

}

.quote-form select {
	all: unset; 
	border-bottom: 1px solid;
	background: url('https://www.charbase.com/images/glyph/9662') no-repeat right;
	background-size: 16px;
	width: 100%;
	padding: 0px 10px 6px 10px;
	border: 1px solid transparent;
	border-bottom: 1px solid;
	border-bottom-color: black;
	appearance: unset;
	-moz-appearance: unset;
	-webkit-appearance: unset;
	-o-appearance: unset;
	-ms-appearance: unset;
	outline: none;
	-moz-outline: none;
	-webkit-outline: none;
	-o-outline: none;
	-ms-outline: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	font-size: 14px;
    color	 : grey;
    font-weight: 600;
	
}

.quote-form option:after {
  content: "*";
  color: red;
}

#Submit
{
	box-shadow		 : inset 0 0 0 0 var(--bs-secondary) !important;
	background-color : #F20B0B !important;
	border-color	 : #F20B0B !important;
	font-weight		 : 600 !important;
	transition		 : .5s !important;
} */
#Submit
{
	box-shadow		 : inset 0 0 0 0 var(--bs-secondary) !important;
	background-color : #F20B0B !important;
	border-color	 : #F20B0B !important;
	font-weight		 : 600 !important;
	transition		 : .5s !important;
} 
/* option:first-child .required {
  color: green !important;
}

.quote-form option:after {
  content: "*";
  color: red;
}

.quote-form option:after { content:"-"; }

option:after {
content:" *"; 
color: #e32;
position: absolute; 
margin: 0px 0px 0px -20px; 
font-size: xx-large; 
padding: 0 5px 0 0; } */

.service .service-content:hover
{
	background-color : #e9d0d5 !important;
	/* cursor			 : pointer; */
}
.feature-item:hover
{
	/* cursor			 : pointer; */
}

.top-header ul{
	display			: inline-flex;
	list-style-type	: none;
}

.top-header ul li span{
	color     : white;
	font-size : 16px;
}

.top-header ul li a{
	color     : white;
	font-size : 18px;
}

#Benefits .feature-content
{
	border : 1px solid red;
	border-radius: 40px 0px 40px 0px;
}

#Benefits .feature-content:hover h3
{
	color : white !important;
	transition: all 0.7s;
}
#Benefits .feature-content .btn.btn-primary:hover
{
    box-shadow: inset 300px 0 0 0 var(--bs-white);
    color: var(--bs-secondary) !important;

}

/* On hover, smoothly animate the gradient */
#Benefits .feature-content:hover {
    color: #FFFFFF !important;
	
    background: linear-gradient(180deg, #BF0A30, #0D0A47);
    background-size: 400% 400%;
    animation: gradient-animation 5s ease infinite;
	transition: all 0.7s;
}

/* Keyframe animation to move the gradient */
@keyframes gradient-animation {
    0% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 50% 50%;
    }
}


.default-btn{
	z-index: 1;
    position: relative;
    overflow: hidden;
	vertical-align : bottom;
}

.top-header-right-side {
    text-align: right;
}
.top-header-right-side ul, .widget-area .widget_categories ul
{
	padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.top-header-right-side
{
	text-align: left;
}
.top-header-right-side ul li {
    display: inline-block;
    text-align: left;
    position: relative;
    padding-left: 52px;
    color: black;
    font-size: 14px;
    margin-right: 20px;
}

.top-header-right-side ul li .icon
{
	width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    background-color: red;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.top-header-right-side ul li a {
    display: inline-block;
    color: black;
    font-size: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 700;
}
.top-header-right-side ul li span {
    display: block;
}
.hidden
{
	display : none;
}
.leftMenu
{
	background-color : var(--bs-dark-red);
	border-radius    : 15px;
}
.leftMenu-inner
{
	background-color : var(--bs-secondary);
	border-radius    : 10px;
}
.leftMenu-inner2
{
	background-color : var(--bs-light-green);
	border-radius    : 10px;
}
.leftMenu3
{
	background-color : var(--bs-secondary);
	border-radius    : 15px;
}
.leftMenu3 ul
{
	list-style-type : none;
	padding-left	: 0rem;
}
.leftMenu3 ul li
{
	border-bottom	: 1px solid #1810a5;
	font-size		: 0.79em;
	padding-top  	: 6px;
	padding-bottom	: 6px;
}

.leftMenu3 ul li:last-child
{
	border-bottom	: 0px solid;
	padding-bottom	: 0px;
}

.leftMenu3 ul li a
{
	color	: white;
}
.leftMenu3 ul li a:hover
{
	color	: var(--bs-primary);
}
.cta-panel ul li a
{
	font-size : 19px;
}


.alert, .error, .success, .info, .info.noHide
{
  clear                  :  both;
  padding                :  10px 10px 10px 35px;
  margin-bottom          :  15px;
  min-height             :  16px;
  line-height            :  16px;
  cursor                 :  pointer;
  
  -moz-border-radius     :  4px;
  border-radius          :  4px;
  -webkit-border-radius  :  4px; 
  
  font-family            :  "Trebuchet MS", verdana, arial, sans-serif;
  font-size              :  12px;
  color                  :  #000000;
}

.alert
{
  background  :  #feffc8 url('../assets/img/icons/alert.png') 10px 10px no-repeat;
  border      :  solid 1px #f1aa2d;
}

.error
{
  background  :  #fdcea4 url('../assets/img/icons/error.png') 10px 10px no-repeat;
  border      :  solid 1px #c44509;
}

.success
{
  background  :  #d4f684 url('../assets/img/icons/success.png') 10px 10px no-repeat;
  border      :  solid 1px #739f1d;
}

.info
{
  background  :  #c3e4fd url('../assets/img/icons/info.png') 10px 10px no-repeat;
  border      :  solid 1px #688fdc;
}

.info.noHide
{
  background  :  #eeeeee url('../img/icons/info.gif') 10px 10px no-repeat;
  border      :  solid 1px #cccccc;
}


/* Form */
*,
*:before,
*:after {
  box-sizing: border-box;
}
input,
input[type="radio"] + label,
input[type="checkbox"] + label:before,
select option,
select {
  width: 100%;
  color: black !important;
  padding: 0.5em;
  line-height: 1.4;
  background-color: #F6F6F6 !important;
  border: 2px solid #e1e1e1;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
input:focus, select:focus, input[type="radio"]:focus {
  outline: 0;
  border: 2px solid #F20B0B !important;
}

input:focus + .input-icon i, select:focus + .input-icon i, input[type="radio"]:focus + .input-icon i {
  color: #F20B0B;
}
input:focus + .input-icon:after, select:focus + .input-icon:after {
  border-right-color: #F20B0B !important;
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + label,
select {
  display: inline-block;
  text-align: left;
  float: left;
  border-radius: 0;
}
input[type="radio"] + label:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
input[type="radio"] + label:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
input[type="radio"] + label i {
  padding-right: 0.4em;
}
input:active,
input:focus,
select:focus,
select:active {
  color: #757575 !important;
  border-color: #F20B0B !important;
}
input[type="radio"]:checked + label,
input:checked + label:before {
  background-color : #df0f0f73 !important;
  color: white !important;
  border: 2px solid #F20B0B !important;
}

input[type="radio"]:checked + .radio-item .input-icon i
{
	color : white !important;
}

input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  position: relative;
  display: block;
  padding-left: 1.6em;
}
input[type="checkbox"] + label:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  padding: 0;
  content: "";
}
input[type="checkbox"] + label:after {
  position: absolute;
  top: 0.45em;
  left: 0.2em;
  font-size: 0.8em;
  color: #fff;
  opacity: 0;
  font-family: FontAwesome;
  content: "\f00c";
}
input:checked + label:after {
  opacity: 1;
}
select {
  height: 2.7em;
  line-height: 2;
}
select:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
select:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
select:focus,
select:active {
  outline: 0;
}
select option {
  color: #fff;
}
.input-group {
  margin-bottom: 1em;
}

.input-group input, .input-group select
{
  border-radius	: 8px;
  font-size		: 14px;
}

.input-group:before,
.input-group:after {
  content: "";
  display: table;
}
.input-group:after {
  clear: both;
}
.input-group-icon {
  position: relative;
}
.input-group-icon input, .input-group-icon select {
  padding-left: 2.4em;
}
.input-group-icon .input-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.2em;
  height: 3.4em;
  line-height: 2.5em !important;
  text-align: center;
  pointer-events: none;
}///////////////////
.input-group-icon .input-icon:after {
  position: absolute;
  top: 0.6em;
  bottom: 0.6em;
  left: 3.4em;
  display: block;
  /* border-right: 2px solid #e1e1e1; */
  content: "";
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.input-group-icon .input-icon i {
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.required
{
	color : red;
}
.form-row label
{
	font-size   : 13px;
	font-weight : 700;
}
.form-detail .row > *
{
	margin-top : 5px !important;
}

.row:before,
.row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}
.col-half {
  padding-right: 10px;
  float: left;
  width: 50%;
}
.col-half:last-of-type {
  padding-right: 0;
}
.col-third {
  padding-right: 10px;
  float: left;
  width: 33.33333333%;
}
.col-third:last-of-type {
  padding-right: 0;
}
@media only screen and (max-width: 540px) {
  .col-half {
    width: 100%;
    padding-right: 0;
  }
}

/* Date Piicker */

.Zebra_DatePicker .dp_daypicker .myclass {
    background: #E8E8E8 url('close.png') no-repeat center center;
    text-indent: -9999px;
}

.bootstrap .Zebra_DatePicker .dp_daypicker td.myclass_disabled {
    background: #FFF url('close.png') no-repeat center center;
    text-indent: -9999px;
}

.top {
    display: block;
    border-bottom: 1px solid #eee;
    margin-bottom: 33px;
}

.top a {
    background: #FFF;
    position: relative;
    top: 8px;
    padding-right: 10px;
}

blockquote.bg-warning.Zebra_Pin {
    border-bottom: 1px solid #ccc;
    box-shadow: 0 12px 6px -6px rgba(0, 0, 0, .1);
    transition: box-shadow .25s linear;
}

.screenshot {
    background: url('themes.png');
    width: 270px;
    height: 285px;
    margin: 0 auto;
}

.screenshot-default {
    background-position: left -15px;
}

.screenshot-metallic {
    background-position: -270px -15px;
}

.screenshot-bootstrap {
    background-position: -542px -15px;
}

ul.custom-bullets {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

ul.custom-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  transition: color 0.3s ease;
  cursor: pointer;
}

/* ✔ Checkmark only */
ul.custom-bullets li::before {
  content: "✔";
  color: #F20B0B; /* your red color */
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 1px;
  transition: color 0.3s ease;
}
ul.custom-bullets li::before {
  content: "✔";
  color: white;
  background-color: #F20B0B; /* red background */
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

ul.custom-bullets li:hover::before {
  color: #0D0A47; /* change checkmark color on hover */
}

/* HOME VIDEO BANNER */
.header-carousel .home-video-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1;
    height: auto !important;
    margin-top: 30px;
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.header-carousel .home-video-slide .banner-video {
    position: absolute;
    width: 100% !important;
    height: 100% !important;

    top: 0;
    left: 0;

    object-fit: cover !important;
    object-position: center center !important;

    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.quote-image-wrapper {
    width: 100%;
    height: 100%;
}

.quote-side-image {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    object-fit: cover;
}

#frmRecord,
#frmRecord .form-detail,
#frmRecord .form-row,
#frmRecord .input-group {
    width: 100%;
}

#frmRecord input:not([type="submit"]),
#frmRecord select,
#frmRecord textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.quote-captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.captcha-image,
.captcha-input,
.captcha-refresh {
    display: flex;
    align-items: center;
}

.captcha-image img {
    height: 42px;
    width: auto;
    display: block;
}

.captcha-input {
    flex: 1;
}

.captcha-input .input-group {
    width: 100%;
    margin: 0 !important;
    align-items: center;
}

.captcha-input .input-text {
    height: 42px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    box-sizing: border-box;
}

.captcha-refresh {
    height: 42px;
    justify-content: center;
}

.captcha-refresh img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.captcha-input {
    position: relative;
    flex: 1;
}

.captcha-input .input-group {
    position: relative;
    width: 100%;
}

.captcha-input input {
    width: 100% !important;
    height: 42px !important;
    margin: 0 !important;

    /* important: space for icon */
    padding-left: 45px !important;
    padding-right: 12px !important;
}

.captcha-input .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: auto;
    height: auto;
    line-height: 1;

    pointer-events: none;
}

.captcha-input .input-icon i {
    font-size: 16px;
}

.quote-submit-btn {
    width: 180px;
    max-width: 100%;
}

.cta-main-row {
    border-radius: 20px;
    overflow: hidden;
}

.cta-contact-item {
    min-height: 130px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-contact-phone {
    border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.cta-contact-icon {
    flex: 0 0 55px;
    width: 55px;
    font-size: 42px;
    line-height: 1;
    text-align: center;
}

.cta-contact-content {
    min-width: 0;
}

.cta-contact-content span {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.cta-contact-content a {
    display: block;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

@media (max-width: 480px) {

    .quote-captcha-row {
        gap: 8px;
    }

    .captcha-input {
        min-width: 0;
    }

    .captcha-image img {
        height: 40px;
    }

    .captcha-input .input-text {
        height: 40px !important;
    }

    .captcha-refresh {
        height: 40px;
    }

    .captcha-refresh img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 991.98px) {
	
    #frmRecord .row {
        --bs-gutter-x: 0.75rem;
    }

    #frmRecord .form-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #frmRecord .input-group {
        width: 100% !important;
    }
	
	.quote-responsive-container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .quote-image-wrapper {
        width: 100%;
    }

    .quote-side-image {
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
    }

    .cta-container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .cta-contact-item {
        min-height: auto;
        padding: 22px 18px;
    }

    .cta-contact-phone {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    }

    .cta-contact-icon {
        flex: 0 0 45px;
        width: 45px;
        font-size: 32px;
    }

    .cta-contact-content span {
        font-size: 15px;
    }

    .cta-contact-content a {
        font-size: 17px;
    }
	
	.header-carousel .home-video-slide {
        margin-top: 0;
    }
	#Navigation .navbar-brand {
        width: auto;
        max-width: none;
        flex: 0 1 auto;
    }

    #Navigation .main-navigation {
        margin-left: 0 !important;
    }
	.header-carousel .header-carousel-item {
        margin-top: 0;
    }
	.sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        /* color: var(--bs-primary) !important; */
        color: black !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
	
	.about,
    .feature,
    .service,
    .blog,
    .quote-form {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .about > .container,
    .feature > .container,
    .service > .container,
    .blog > .container,
    .quote-form > .container {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    /* Reduce huge bootstrap horizontal gutters */
    .about .row,
    .feature .row,
    .service .row,
    .blog .row,
    .quote-form .row {
        --bs-gutter-x: 1rem;
    }


    /* =====================================================
       ABOUT US
       ===================================================== */

    .about .about-img {
        padding-left: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 20px !important;
        width: 100%;
    }

    .about .about-img img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

    .about .section-title {
        margin-bottom: 0 !important;
    }


    /* Hide decorative lines beside About Us on tablet/mobile */
    .about .sub-title::before,
    .about .sub-title::after {
        display: none !important;
    }


    /* =====================================================
       YOUR BENEFITS / WHY CHOOSE US
       ===================================================== */

    #FeatureCards .feature-item {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #FeatureCards .feature-item > .col-12 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #FeatureCards .feature-icon {
        width: 100%;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
    }

    #FeatureCards .feature-icon > div {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    #FeatureCards .feature-icon i {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    #FeatureCards .feature-icon img {
        width: 60px !important;
        height: 60px !important;
        max-width: 60px !important;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    #FeatureCards .feature-content {
        width: 100%;
        text-align: center;
    }


    /* =====================================================
       PARENT SUPER VISA BENEFITS CARDS
       ===================================================== */

    #Benefits .feature-content {
        padding: 20px !important;
    }

    #Benefits .feature-content-inner > .d-flex {
        align-items: center !important;
    }

    #Benefits .featureTitle {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }


    /* =====================================================
       QUOTE FORM
       ===================================================== */

    .quote-form .p-5 {
        padding: 20px !important;
    }

    .quote-form .pt-5 {
        padding-top: 20px !important;
    }

    .quote-form .form-detail {
        width: 100% !important;
        max-width: 100% !important;
    }

    .quote-form .form-row {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: .75rem;
    }

    .quote-form .input-group,
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        width: 100% !important;
        max-width: 100% !important;
    }


    /* =====================================================
       BLOG
       ===================================================== */

    .blog .blogdiv {
        --bs-gutter-x: 0 !important;
    }

    .blog .blogdiv > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .blog .blogdiv .blog-centent {
        padding: 20px !important;
    }


    /* =====================================================
       CALL US / EMAIL CTA
       ===================================================== */

    .hidePanel .row {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hidePanel .col-lg-5,
    .hidePanel .col-lg-6 {
        padding: 20px !important;
    }

    /* Remove vertical divider column on responsive */
    .hidePanel .col-lg-1 {
        display: none !important;
    }

    .hidePanel .section-title {
        width: 100%;
        max-width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
    }

    .hidePanel .cta-panel {
        width: 100%;
    }

    .hidePanel .cta-panel ul {
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
    }

    .hidePanel .cta-panel ul li {
        display: block !important;
        width: 100%;
        margin: 0 !important;
        padding-left: 48px !important;
        position: relative;
        min-height: 48px;
    }

    .hidePanel .cta-panel ul li > div {
        font-size: 34px !important;
        line-height: 38px !important;
        left: 0 !important;
    }

    .hidePanel .cta-panel ul li span,
    .hidePanel .cta-panel ul li a {
        display: block !important;
        padding-left: 0 !important;
        font-size: 16px !important;
        line-height: 24px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
	
}

.footer-social-icons {
    justify-content: flex-start;
}

@media (max-width: 767.98px) {

    .footer-social-icons {
        justify-content: center;
    }

    .footer-item {
        text-align: center;
    }
	
	 .quote-submit-btn {
        width: 100% !important;
    }
	/* Smaller page side spacing */
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Headings */
    .display-6 {
        font-size: 28px !important;
        line-height: 1.25;
    }

    /* Further reduce card padding */
    .feature .feature-content.p-4,
    .service .service-content.p-4 {
        padding: 15px !important;
    }


    /* ABOUT */
    .about .row {
        --bs-gutter-y: 1rem;
    }

    .about .about-img {
        margin-bottom: 10px !important;
    }


    /* QUOTE */
    .quote-form .p-5 {
        padding: 15px !important;
    }

    .quote-form .row {
        --bs-gutter-x: .5rem;
    }


    /* BLOG */
    .blog .blog-img {
        height: 230px !important;
    }

    .blog .blog-centent {
        min-height: auto !important;
        padding: 15px !important;
    }


    /* Benefits cards full width breathing room */
    #FeatureCards {
        --bs-gutter-y: 1rem;
    }


    /* CTA */
    .hidePanel .col-lg-5,
    .hidePanel .col-lg-6 {
        padding: 15px !important;
    }

    .hidePanel .cta-panel ul li a {
        font-size: 15px !important;
    }
	
}

/* Check Eligibility Visa Tool*/
.psv-tools-section {
    background: #fffdf9
}

.psv-tools-heading {
    margin-top: 20px;
    margin-bottom: 38px;
}

.psv-tools-heading h2 {
    margin: 0 0 10px;
    font-size: 38px;
    color: #34261f
}

.psv-tools-heading p {
    margin: 0;
    color: #795f51;
    font-size: 16px
}

.psv-tools-row {
    display: flex;
    flex-wrap: wrap
}

.psv-tools-row>div {
    display: flex;
    margin-bottom: 25px
}

.psv-tool-card {
	cursor:pointer;
    width: 100%;
    min-height: 270px;
    padding: 28px;
    border: 1px solid #d2612e;
    border-radius: 14px;
    background: #fffaf5;
    display: flex;
    flex-direction: column;
    box-shadow: 0 7px 22px rgba(83, 52, 35, .05);
    transition: transform .2s ease, box-shadow .2s ease
}

.psv-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(83, 52, 35, .1)
}

.psv-tool-card.featured {
    border-color: #df8c67
}

.psv-tool-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    background: #fde8dc;
    color: red;
    font-size: 24px;
    font-weight: 700
}

.psv-tool-card h3 {
    margin: 0 0 12px;
    color: #38251d;
    font-size: 22px
}

.psv-tool-card p {
    color: black;
    line-height: 1.7;
    margin-bottom: 22px
}

.psv-tool-link {
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: red;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    text-align: left
}

.psv-tool-link:hover,
.psv-tool-link:focus {
    color: #963719;
    text-decoration: none
}

.psv-wizard-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    overflow-y: auto;
    padding: 30px 15px
}

.psv-wizard-modal.open {
    display: block
}

.psv-wizard-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(31, 22, 18, .72)
}

.psv-wizard-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 28px;
    border-radius: 20px;
    background: #fbf4eb;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .25)
}

.psv-wizard-close {
    position: absolute;
    right: 16px;
    top: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #4c3328;
    font-size: 28px;
    line-height: 34px;
    cursor: pointer
}

.psv-wizard-header {
    text-align: center;
    padding: 10px 38px 22px
}

.psv-wizard-kicker {
    display: inline-block;
    color: #c95831;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.psv-wizard-header h2 {
    margin: 7px 0;
    color: #34231c;
    font-size: 32px
}

.psv-wizard-header p {
    margin: 0;
    color: #7c6357
}

.psv-wizard-box {
    background: #fff;
    border: 1px solid #ead7c5;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(84, 53, 36, .08)
}

.psv-progress-wrap {
    margin-bottom: 30px
}

.psv-progress-track {
    height: 7px;
    background: #eee2d4;
    border-radius: 20px;
    overflow: hidden
}

.psv-progress-bar {
    width: 16.666%;
    height: 100%;
    background: red;
    border-radius: 20px;
    transition: width .3s ease
}

.psv-progress-wrap>span {
    display: block;
    margin-top: 7px;
    color: #876f61;
    font-size: 12px;
    text-align: right
}

.psv-step {
    display: none;
    animation: psvFadeUp .25s ease
}

.psv-step.active {
    display: block
}

@keyframes psvFadeUp {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

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

.psv-step h3 {
    margin: 0 0 9px;
    color: #38261e;
    font-size: 23px
}

.psv-step>p {
    color: #765f54;
    line-height: 1.65
}

.psv-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 25px
}

.psv-choice {
    min-height: 54px;
    border: 1px solid #e3c2a9;
    border-radius: 10px;
    background: #fff;
    color: #4f362b;
    font-weight: 700;
    cursor: pointer;
    transition: .18s ease
}

.psv-choice:hover,
.psv-choice.selected {
    border-color: #d55f32;
    background: #fff0e8;
    color: #c64f25
}

.psv-range-wrap {
    margin: 34px 0 16px
}

.psv-range-wrap input[type=range] {
    width: 100%;
    accent-color: red
}

.psv-range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    color: #897165
}

.psv-range-labels strong {
    color: red;
    font-size: 22px
}

.psv-income-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f7eee5;
    color: #5f463a
}

.psv-input-label {
    display: block;
    margin: 23px 0 8px;
    color: #51392e;
    font-weight: 700
}

.psv-money-input {
    display: flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid #e6cfbb;
    border-radius: 10px;
    background: #fffaf4
}

.psv-money-input span {
    color: #846d61;
    font-size: 18px
}

.psv-money-input input {
    width: 100%;
    height: 54px;
    border: 0;
    outline: 0;
    background: transparent;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #4a3329
}

.psv-step small {
    display: block;
    margin-top: 10px;
    color: #80695d;
    line-height: 1.5
}

.psv-conditional-field {
    display: none;
    margin-top: 20px
}

.psv-conditional-field.show {
    display: block
}

.psv-wizard-footer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 32px
}

.psv-primary-btn,
.psv-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer
}

.psv-primary-btn {
    border: 1px solid red;
    background: red;
    color: #fff
}

.psv-primary-btn:disabled {
    background: #e5c7b8;
    border-color: #e5c7b8;
    color: #fff;
    cursor: not-allowed;
    opacity: .75
}

.psv-primary-btn:disabled:hover {
    background: #e5c7b8;
    border-color: #e5c7b8;
    color: #fff
}

.psv-primary-btn:hover,
.psv-primary-btn:focus {
    background: #a94120;
    border-color: #a94120;
    color: #fff;
    text-decoration: none
}

.psv-secondary-btn {
    border: 1px solid #dfc7b3;
    background: #fff;
    color: #563d31
}

.psv-wizard-alert {
    display: none;
    margin: -10px 0 20px;
    padding: 11px 14px;
    border-radius: 8px;
    background: #fff0ec;
    color: #a5391d;
    font-weight: 600
}

.psv-wizard-alert.show {
    display: block
}

.psv-result-step {
    text-align: center
}

.psv-result-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #4d8a6b;
    border-radius: 50%;
    color: #4d8a6b;
    font-size: 30px;
    font-weight: 700
}

.psv-result-step.not-qualified .psv-result-icon {
    border-color: #c55432;
    color: #c55432
}

.psv-result-summary {
    margin: 22px 0;
    padding: 18px;
    border-radius: 12px;
    background: #eef6f1;
    text-align: left;
    color: #3f5d4c;
    line-height: 1.7
}

.psv-result-step.not-qualified .psv-result-summary {
    background: #fff1ed;
    color: #774234
}

.psv-result-notice {
    color: #806a5f;
    font-size: 12px;
    line-height: 1.55
}

.psv-result-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px
}

.psv-source-note {
    margin-top: 16px;
    color: #7b665a;
    font-size: 12px;
    line-height: 1.5;
    text-align: center
}

body.psv-modal-open {
    overflow: hidden
}

@media(max-width:767px) {
    .psv-wizard-dialog {
        padding: 20px 12px
    }

    .psv-wizard-box {
        padding: 22px 17px
    }

    .psv-wizard-header h2 {
        font-size: 27px
    }

    .psv-choice-grid {
        grid-template-columns: 1fr
    }

    .psv-wizard-footer {
        flex-direction: column-reverse
    }

    .psv-wizard-footer button {
        width: 100%
    }
}


/* Super Visa Cost Calculator */
.psvc-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    overflow-y: auto;
    padding: 30px 15px
}

.psvc-modal.open {
    display: block
}

.psvc-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(31, 22, 18, .72)
}

.psvc-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 28px;
    border-radius: 20px;
    background: #fbf4eb;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .25)
}

.psvc-close {
    position: absolute;
    right: 16px;
    top: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #4c3328;
    font-size: 28px;
    line-height: 34px;
    cursor: pointer
}

.psvc-header {
    text-align: center;
    padding: 10px 38px 22px
}

.psvc-kicker {
    display: inline-block;
    color: #c95831;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.psvc-header h2 {
    margin: 7px 0;
    color: #34231c;
    font-size: 32px
}

.psvc-header p {
    margin: 0;
    color: #7c6357;
    line-height: 1.6
}

.psvc-card {
    background: #fff;
    border: 1px solid #ead7c5;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(84, 53, 36, .08)
}

.psvc-field {
    margin-bottom: 21px
}

.psvc-field label {
    display: block;
    margin-bottom: 8px;
    color: #51392e;
    font-weight: 700
}

.psvc-field select {
    width: 100%;
    height: 48px;
    padding: 0 13px;
    border: 1px solid #e6cfbb;
    border-radius: 9px;
    background: #fffaf4;
    color: #4a3329;
    outline: none
}

.psvc-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px
}

.psvc-label-row strong {
    color: #c6532b;
    font-size: 14px
}

.psvc-label-row small {
    color: #8b7468
}

.psvc-field input[type=range] {
    width: 100%;
    accent-color: red
}

.psvc-range-ends {
    display: flex;
    justify-content: space-between;
    color: #8a7569;
    font-size: 12px
}

.psvc-help {
    margin: -2px 0 12px;
    color: #806b60;
    font-size: 13px;
    line-height: 1.5
}

.psvc-choice-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.psvc-choice {
    height: 48px;
    border: 1px solid #e3c2a9;
    border-radius: 9px;
    background: #fff;
    color: #51392e;
    font-weight: 700;
    cursor: pointer
}

.psvc-choice.selected {
    border-color: #d55f32;
    background: #fff0e8;
    color: #c64f25
}

.psvc-result {
    margin-top: 8px;
    padding: 22px;
    border-radius: 12px;
    background: #fff0e8;
    text-align: center;
    color: #56392d
}

.psvc-result>span {
    display: block;
    margin-bottom: 7px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #b35a35
}

.psvc-result>strong {
    display: block;
    font-size: 32px;
    line-height: 1.2;
    color: #39251d
}

.psvc-result>div {
    margin-top: 5px;
    font-size: 16px
}

.psvc-result small {
    display: block;
    margin-top: 12px;
    color: #866f63;
    line-height: 1.45
}

.psvc-quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 14px;
    border-radius: 8px;
    background: red;
    color: #fff;
    font-weight: 700;
    text-decoration: none
}

.psvc-quote-btn:hover,
.psvc-quote-btn:focus {
    background: #a94120;
    color: #fff;
    text-decoration: none
}

.psvc-share-btn {
    display: block;
    margin: 13px auto 0;
    padding: 5px 10px;
    border: 0;
    background: transparent;
    color: black;
    cursor: pointer
}

.psvc-info {
    /* margin-top: 24px; */
    /* padding: 28px; */
    border-radius: 16px;
    background: #fff;
    color: black;
}

.psvc-info h3 {
    margin: 0 0 12px;
    color: #38261e;
    font-size: 25px
}

.psvc-info h4 {
    margin: 24px 0 10px;
    color: #38261e;
    font-size: 19px
}

.psvc-info p,
.psvc-info li {
    line-height: 1.7
}

.psvc-info ul {
    padding-left: 21px
}

body.psvc-modal-open {
    overflow: hidden
}

@media(max-width:767px) {
    .psvc-dialog {
        padding: 20px 12px
    }

    .psvc-card,
    .psvc-info {
        padding: 21px 16px
    }

    .psvc-header h2 {
        font-size: 27px
    }

    .psvc-label-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px
    }
	
	psv-eligibility-info {
        padding: 38px 0;
    }

    .psv-eligibility-info h2 {
        font-size: 25px;
    }

    .psv-eligibility-info h3 {
        font-size: 21px;
    }

    .psv-eligibility-info p {
        font-size: 15px;
    }

    .psv-income-table th,
    .psv-income-table td {
        padding: 14px 18px;
        font-size: 14px;
    }
	
}


.psv-eligibility-info {
    background: #fbf4ea;
    color: red;
}

.psv-eligibility-info .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
}

.psv-eligibility-info h2 {
    margin: 0 0 24px;
    font-size: 31px;
    line-height: 1.3;
    color: #2f211b;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.psv-eligibility-info h3 {
    margin: 28px 0 20px;
    font-size: 24px;
    line-height: 1.35;
    color: #2f211b;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.psv-eligibility-info p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: black;
}

.psv-income-table-wrap {
    overflow-x: auto;
    border: 1px solid red;
    border-radius: 14px;
    background: #fff;
}

.psv-income-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.psv-income-table th,
.psv-income-table td {
    padding: 17px 30px;
    text-align: left;
    border-bottom: 1px solid red;
}

.psv-income-table th {
    background: #fbf4ea;
    color: #2e201a;
    font-size: 16px;
    font-weight: 700;
}

.psv-income-table td {
    background: #fff;
    color: black;
    font-size: 16px;
}

.psv-income-table tbody tr:last-child td {
    border-bottom: 0;
}

.psv-source-text {
    margin-top: 22px !important;
    font-size: 14px !important;
    color: black !important;
}

.psv-source-text a {
    color: black;
    text-decoration: underline;
}

.psv-source-text a:hover {
    color: #c35a32;
}

.psv-bottom-note {
    margin-top: 25px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: black !important;
}