
/*** 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;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.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 {
    box-shadow: inset 0 0 0 0 #ffbe00;
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #ffbe00 !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 #ffbe00;
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 #ffbe00;
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}
.btn-primary {
  background-color: #ffbe00 !important;
  border-color: #ffbe00 !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);
    margin-bottom: 20px;
}

.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 #ffbe00 !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 #ffbe00 !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #ffbe00;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid #ffbe00 !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid #ffbe00 !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 {
    position: relative;
    margin-right: 30px;
    padding: 35px 0;
    color: #000 !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
    font-family: "Nuosu SIL", sans-serif !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #000 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ffbe00 !important;
}

.navbar-light .navbar-brand img {
    max-height: 100%;
  transition: .5s;
  width: 150px;
  height: 120px;
  padding: 5px;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 80px;
}

.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: #ffbe00;
    color: #fff;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 6px 15px;
    border: 2px solid #000;
    color: #000;
    border-radius: 0;
    }

    .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-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 80px;
    }
}

@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;
    }
    
    .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: -1px;
        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;
}

.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: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@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(../images/b-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0 60px 0;
    min-height: 650px;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header 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: none;
    border-radius: 0;
  background: #fff;
  transition: 0.5s;
  box-shadow: 0 0 3px #000;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: #ffbe00;
}

.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 {
    color: var(--bs-dark);
}
.feature-icon .fa-4x {
  font-size: 40px;
}


/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../images/hom-abt-bg.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(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/testi-bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.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: #ffbe00 !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: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    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 End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    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(0, 0, 0, 0.3);
}

.blog .blog-item .blog-centent {
    background: #fff;
    border: none;
    border-top: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../images/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(../images/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}*/
.footer {
    background-color: #000;
}
.footer .footer-item a {
    line-height: 1.7;
  color: #fff;
  transition: 0.5s;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: #ffbe00;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: #000 !important;
  border-top: 1px solid #ffbe00;
}
/*** copyright end ***/

.carousel-caption h2
{
  font-size: 60px;
  font-weight: 600 !important;
  line-height: 1.5;
  text-align: left;
  text-shadow: 3px 3px 3px #000;
  color: #fffacd !important;
}
.wel-h
{
  font-size: 36px;
  font-weight: 500 !important;
  line-height: 1.5;
  text-align: center;
  color: #4e030c;
  margin-bottom: 10px !important;
}
.display-3.wel-hh
{
  font-size: 42px !important;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #4e030c;
}
.hom-sec-title.section-title {
  max-width: 100%;
  text-align: center;
  margin-bottom: 0 !important;
}
.f-img img
{
  width: 100%;
  height: 155px;
  margin: 0 auto 30px auto;
  display: block;
}
.hom-sec-title.section-title .sub-style
{
 margin-bottom: 25px;
}
.bg-ellie img
{
  width: 400px;
  height: 462px;
  margin: 0 auto 10px auto;
  display: block;
}
.names
{
  font-weight: 600;
  line-height: 1.4;
  color: #202135;
  text-align: center;
  font-size: 22px !important;
}
.fun-boxes h4
{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.sm-txt
{
 font-size: 15px !important;
}
.fun-boxes .blog-item p
{
  font-size: 15px;
  line-height: 1.7;
  height: 110px;
  color: #000;
}
.about-bg-sec .section-title {
  max-width: 100%;
}
.about-bg-sec .fa-check
{
  float: left;
  margin-top: 7px;
  height: 30px;
}
.about-bg-sec .fa-hand-point-right
{
  float: left;
  margin-top: 7px;
  height: 30px;
}
.about-bg-sec p
{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 25px !important;
  color: #000;
}
.testimonial-item h5
{
 margin-bottom: 20px !important;
}
.f-logo img
{
  width: 180px;
  height: 144px;
  margin: 0 auto 30px auto;
}
.map-sec iframe
{
 width: 100%;
 height: 450px;
 border: 0;
}
.contact_us
{
 padding: 90px 0 0 0;
}
.cont-details
{
 padding: 40px 0;
}
.foot-cont .fa-map-marker-alt
{
 float: left;
 margin-top: 8px;
 height: 40px;
}
.copyright p
{
  margin: 0 !important;
  line-height: 1.7;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.copyright p a
{
 color: #ffbe00;
}
.copyright p a:hover
{
 color: #fff;
}
.footer-item .text-white {
  color: #ffbe00 !important;
}
.foot-social .btn-primary {
  background-color: #ffbe00;
  border: none !important;
  color: #000 !important;
}
.footer .footer-item .foot-social a:hover {
  letter-spacing: 0;
  color: #000;
}
.foot-social .btn.btn-primary:hover {
  color: #ffbe00 !important;
  box-shadow: 0 0 4px #ffbe00 !important;
  background-color: #000 !important;
}
#contact_us .feature-content p
{
 height: 48px;
  color: #ffbe00;
  font-weight: 500;
  font-size: 18px;
}
#contact_us .feature-content p a
{
  color: #ffbe00;
  font-weight: 500;
  font-size: 18px;
}
.foot-social .mx-1 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
.navbar-light .navbar-nav .nav-link::before
{
 display: none;
}
.navbar-light.sticky-top .navbar-brand img {
  max-height: 100%;
  transition: .5s;
  width: 98px;
  height: 79px;
  padding: 5px;
}
.text-primary {
  color: #ffbe00 !important;
}
.h-cont .text-light:hover {
  color: #ffbe00 !important;
}
.navbar.bg-white {
  background-color: #f5f5f5;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-weight: 600 !important;
  letter-spacing: 0.2px !important;
  font-family: "Nuosu SIL", sans-serif !important;
}
.display-3 {
    font-size: 42px !important;
  }
.display-4 {
    font-size: 36px !important;
    line-height: 1.4 !important;
  }
.testimonial .sub-style  {
   margin-bottom: 20px;
}
.testimonial-item .text-secondary {
  color: #ffbe00 !important;
  text-shadow: 1px 0px 1px #000;
}
.blog-item.rounded{
    border-radius: 0 !important;
    box-shadow: 0 0 4px #000;
}
.testimonial .owl-nav
{
  display: none;
}
.feature-item:hover .feature-icon .text-primary {
  color: #fff !important;
}
.feature-item:hover .feature-content p {
  color: #fff !important;
}
.feature-item:hover .feature-content p a {
  color: #fff !important;
}
.serv-sub .section-title {
  max-width: 100%;
}
.services .section-title p
{
  color: #000;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 500;
}
.services .fa-hand-point-right {
  float: left;
  margin-top: 7px;
  height: 30px;
}
.serv-li li
{
  color: #000;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 20px;
  list-style-type: disclosure-closed;
  letter-spacing: 0.2px;
}
.serv-li
{
 padding-left: 15px;
}
.services p
{
  color: #000;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 500;
}
.serv-form-sec .display-6 {
    font-size: 24px;
    line-height: 1.7;
  }
.serv-form-sec form button
{
 display: table;
 margin: 10px auto 0 auto;
 padding: 12px 24px;
  font-size: 15px;
}
.services .fa-hand-point-right.fa-80 {
  float: left;
  margin-top: 7px;
  height: 80px;
}
.services a
{
 color: #15b9d9;
}
.services a:hover
{
 color: #ffbe00;
}
.h-sm.display-4 {
  font-size: 25px !important;
  line-height: 1.7 !important;
}
.x-sm.display-3 {
  font-size: 26px !important;
}
.services .section-title .sm-p {
  color: #000;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px !important;
}
.section-title .mid-p {
  color: #000;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 20px !important;
  text-align: center;
}
.mid-h h1
{
 margin-bottom: 60px !important;
}
.serv-li.num-li li {
  color: #000;
  line-height: 1.7;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  list-style-type: decimal;
  letter-spacing: 0.2px;
}
.mid-txt-sec.hom-sec-title.section-title {
  max-width: 100%;
  text-align: center;
  margin-bottom: 50px !important;
}
.section-title .mid-pp {
  color: #000;
  line-height: 1.7;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px !important;
  text-align: center;
  font-family: "Nuosu SIL", sans-serif !important;
  letter-spacing: 0.3px;
}
.appointment-form .section-title {
  max-width: 100%;
  margin: 0 auto;
}
.labels
{
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 1.7;
  margin-bottom: 10px;
}
.each-q
{
 margin-bottom: 20px;
}
.f-flexx, .f-flexxi
{
 margin-bottom: 6px;
}
.appointment-form .section-title.mid-title {
  max-width: 100%;
  margin: 60px auto 0 auto;
}
.appointment-form form button {
  margin: 10px auto 0 auto;
  padding: 12px 24px;
  font-size: 15px;
}
.appointment-form form
{
 max-width: 600px;
}
label {
  color: #1a1a1a !important;
}

.sitemapul
{
    list-style-type: none;
    padding: 20px;
    width: 55%;
    margin: 20px auto;
    background: #000;
    /*border: 1px solid;*/
    border-radius: 10px;
}
.sitemapul ul
{
    list-style-type: none;
    padding: 20px;
    width: 55%;
    margin: 20px auto;
    background: #000;
    border: 1px solid #000;
    border-radius: 10px;
    color: #000;
}

.sitemapul li
{
    background: #fff;
    border: 1px solid;
    padding: 5px 20px;
    width: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}
.sitemapul li a
{
    font-weight: bold;
    font-size: 18px;
    color: #000;
}
.sitemapul li a:hover
{
    color:#ffbe00;
}

.sm-label
{
 font-size: 14px !important;
}
.input-3 input
{
 margin-bottom: 20px;
}
.date-label
{
  line-height: 1.7;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
}
.repeating-sec
{
 box-shadow: 0 0 2px #000;
 padding: 30px;
}
.repeating
{
 margin-top: 30px;
}
.form-h4
{
 margin-bottom: 12px;
}
.appointment-form.reg-form form {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 60px;
  background-color: #fffafa;
  box-shadow: 0 0 4px #000;
}
.appointment-form.reg-form form button {
  margin: 10px auto 0 auto;
  padding: 12px 24px;
  font-size: 15px;
  display: table;
}
.appointment-form.reg-form form h2
{
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.pdf-sec
{
 padding: 90px 0;
}
.h-top.bg-dark {
  background-color: #000 !important;
}
.h-cont p
{
  margin: 0 !important;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  font-family: "Nuosu SIL", sans-serif !important;
}
.top-height
{
 padding: 5px 0;
}
.h-cont p .text-light {
  color: #ffbe00 !important;
}
.h-cont p .text-light:hover {
  color: #fff !important;
}
.top-height .btn-square {
  width: 45px;
  height: 45px;
}
.top-height .btn-square .fab {
   font-size: 22px;
}
.hom-abt .display-3 {
    font-size: 30px !important;
  }
.hom-abt p
{
 color: #000;
 font-size: 17px;
  line-height: 1.7;
}
.about-bg-sec .display-4 {
  font-size: 54px !important;
  line-height: 1.4 !important;
}
.own-bg .display-4 {
  font-size: 45px !important;
  line-height: 1.4 !important;
}
.own-bg p
{
 font-size: 17px;
 line-height: 1.7;
}
#contact_us .feature-content h5
{
  font-size: 25px;
  font-weight: 600 !important;
}
.footer-item h4
{
 font-size: 30px;
}
.appointment-form.plan-form form
{
 max-width: 720px;
  margin: 0 auto;
  padding: 60px;
  background-color: #fffafa;
  box-shadow: 0 0 4px #000;
}
.h-cont.flex-wrap {
  flex-wrap: wrap !important;
  float: right;
}
.h-cont p .text-light:hover i {
  color: #fff !important;
}
.plan-form .display-5 {
    font-size: 36px;
  }
.wel-h.display-3 {
  font-size: 36px !important;
}
.price-li
{
 float: right;
}

.pp-flex
{
  display: flex;
  width: 800px;
  justify-content: space-between;
}
.lt-p
{
 width: 620px;
}
.pp-flex p
{
  color: #000;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 500;
}
.price-list p
{
  color: #000;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 500;
}
.ita-note p
{
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  text-align: left;
  line-height: 1.7;
  color: #000;
}
.ita-note
{
 margin-top: 50px;
}
.gal-img a
{
  box-shadow: 0 0 2px #000;
}
.fun-boxes.blog .blog-item .blog-img img {
  transition: 0.5s;
  width: 100% !important;
  height: 277px !important;
}
.gal-img img
{
  width: 100% !important;
  height: 240px;
  margin: 0 auto;
  display: block;
}
.hom-abt .col-lg-6 img
{
  width: 100% !important;
  height: 416px;
  margin: 0 auto;
  display: block;
}
.display-7
{
 font-size: 28px;
 font-weight: 600;
}
.pdf-view iframe
{
 max-width: 100% !important;
}




/***** Media Queries *****/

@media (max-width: 1199px)
{
.h-cont p {
  font-size: 28px;
}
.top-height .btn-square {
  width: 30px;
  height: 30px;
}
.top-height .btn-square .fab {
  font-size: 16px;
}
.navbar-light .navbar-nav .nav-link {
  margin-right: 20px;
  padding: 35px 0;
  font-size: 15px;
}
.navbar-light .navbar-brand img {
  width: 120px;
  height: 96px;
  padding: 5px;
}
.header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
  height: 540px;
  margin-top: 95px;
}
.carousel-caption h2 {
  font-size: 42px;
}
.wel-h.display-3 {
  font-size: 33px !important;
}
.display-3.wel-hh {
  font-size: 40px !important;
}
.hom-abt .display-3 {
  font-size: 23px !important;
}
.sub-title {
  font-size: 20px;
}
.hom-abt .col-lg-6 img {
  width: 100% !important;
  height: 296px;
}
.about-bg-sec .display-4 {
  font-size: 42px !important;
}
.about-bg-sec p {
  font-size: 18px;
  margin-bottom: 25px !important;
}
.about-bg-sec .fa-hand-point-right {
  float: left;
  margin-top: 7px;
  height: 60px;
}
.fun-boxes.blog .blog-item .blog-img img {
  width: 100% !important;
  height: 304px !important;
}
.fun-boxes .blog-item p {
  font-size: 15px;
  height: 80px;
}
.own-bg .display-4 {
  font-size: 33px !important;
}
.own-bg p {
  font-size: 16px;
}
.bg-ellie img {
  width: 100%;
  height: 513px;
}
.display-3 {
  font-size: 36px !important;
}
.display-4 {
  font-size: 30px !important;
}
.gal-img img {
  width: 100% !important;
  height: 186px;
}
.serv-form-sec .display-6 {
  font-size: 18px;
  line-height: 1.7;
}
.ita-note p {
  font-size: 20px;
}
.services p {
  font-size: 16px;
}
.h-sm.display-4 {
  font-size: 24px !important;
}
.serv-li.num-li li {
  font-size: 17px;
  margin-bottom: 20px;
}
.plan-form .display-5 {
  font-size: 30px;
}
.sitemapul ul {
  width: 75%;
}

}

@media (max-width: 1023px)
{
.navbar-light .navbar-brand img {
    width: 100px;
    height: 80px;
    padding: 5px;
  }
.header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
    height: 480px;
    margin-top: 0;
  }
.carousel-caption h2 {
    font-size: 40px;
  }
.wel-h.display-3 {
    font-size: 25px !important;
  }
.display-3.wel-hh {
    font-size: 33px !important;
  }
.hom-abt .col-lg-6 img {
    width: 100% !important;
    height: 464px;
  }
.hom-abt .display-3 {
    font-size: 28px !important;
  }
.about-bg-sec .display-4 {
    font-size: 36px !important;
  }
.about-bg-sec .fa-hand-point-right {
    float: left;
    margin-top: 7px;
    height: auto;
  }
.fun-boxes.blog .blog-item .blog-img img {
    width: 100% !important;
    height: 464px !important;
  }
.fun-boxes h4 {
  font-size: 24px;
}
.fun-boxes .blog-item p {
    font-size: 16px;
    height: auto;
  }
.sm-txt {
  font-size: 17px !important;
}
.bg-ellie img {
    width: 540px;
    height: 624px;
  }
.display-3 {
    font-size: 30px !important;
  }
.bg-breadcrumb {
  padding: 140px 0 60px 0;
  min-height: 480px;
}
.display-4 {
    font-size: 25px !important;
  }
.lt-p {
  width: 70%;
}
.pp-flex {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.ita-note p {
    font-size: 16px;
  }
.price-list p {
  font-size: 16px;
}
.gal-img img {
    width: 100% !important;
    height: 240px;
  }
.gal-img
{
 text-align: center;
}
.repat-serv .ps-5 {
  padding-left: 0 !important;
}
.serv-sub .ps-5 {
  padding-left: 0 !important;
}
.section-title .mid-pp
{
 font-size: 20px;
 margin-bottom: 10px !important;
}
.labels {
  font-size: 16px;
  margin-bottom: 10px;
}
.appointment-form.plan-form form {
  max-width: 100% !important;
  padding: 50px;
}
.appointment-form.reg-form form h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.appointment-form.reg-form form {
  max-width: 100%;
  padding: 30px 50px;
}
.sitemapul ul {
    width: 90%;
  }
.navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 16px 0;
    font-size: 15px;
    width: fit-content;
  }
.dropdown-menu {
  min-width: 200px;
  font-size: 14px;
  width: fit-content;
}

.h-top.d-none {
  display: block !important;
}
.top-height .col-lg-4
{
width: 30% !important;
}
.top-height .col-lg-8
{
width: 70% !important;
}
.h-cont p {
  font-size: 24px;
}
}

@media (max-width: 767px)
{
 .carousel-caption h2 {
    font-size: 36px;
  }
.f-img img {
  width: 300px;
  height: 152px;
  margin: 0 auto 20px auto;
  display: block;
}
.sub-title {
    font-size: 18px;
  }
.display-3.wel-hh {
    font-size: 27px !important;
  }
.hom-abt .col-lg-6 img {
    width: 100% !important;
    height: 344px;
  }
.hom-abt .display-3 {
    font-size: 25px !important;
  }
.hom-abt p {
  font-size: 16px;
}
.about-bg-sec p {
    font-size: 17px;
    margin-bottom: 20px !important;
  }
.about-bg-sec .display-4 {
    font-size: 33px !important;
  }
.fun-boxes.blog .blog-item .blog-img img {
    width: 100% !important;
    height: 344px !important;
  }
.own-bg .display-4 {
    font-size: 30px !important;
  }
.bg-ellie img {
    width: 480px;
    height: 555px;
  }
.mid-h h1 {
  margin-bottom: 40px !important;
}
.display-3 {
    font-size: 22px !important;
  }
#contact_us .feature-content h5 {
  font-size: 22px;
}
#contact_us .feature-content p {
  height: auto;
  font-size: 16px;
}
#contact_us .feature-content p a {
  font-size: 16px;
}
.map-sec iframe {
  width: 100%;
  height: 360px;
}
.display-4 {
    font-size: 22px !important;
  }
.services .fa-hand-point-right {
  float: left;
  margin-top: 7px;
  height: auto;
}
.services .section-title p {
  font-size: 16px;
}
.bg-breadcrumb {
    padding: 100px 0 60px 0;
    min-height: 400px;
  }
.footer-item h4 {
  font-size: 25px;
}
.btn-lg-square {
  width: 35px;
  height: 35px;
}
.plan-form.p-5 {
  padding: 0 !important;
}
.section-title .mid-pp {
    font-size: 18px;
    margin-bottom: 25px !important;
  }
.footer .footer-item a {
  margin-bottom: 12px;
  font-size: 17px;
  width: fit-content;
}
.footer .footer-item .foot-social a {
  margin-bottom: 12px;
  font-size: 17px;
  width: 32px;
  height: 32px;
}
.plan-form .display-5 {
    font-size: 25px;
  }
.appointment-form form button {
  margin: 10px auto 0 auto;
  padding: 10px 20px;
  font-size: 13px;
}
.labels {
    font-size: 15px;
    margin-bottom: 10px;
  }
label {
  font-size: 15px;
}
.reg-form.p-5 {
  padding: 0 !important;
}
.appointment-form.reg-form form button {
  margin: 10px auto 0 auto;
  padding: 8px 20px;
  font-size: 13px;
  display: table;
}
.sitemapul {
  width: 80%;
}
.bg-breadcrumb .display-3 {
    font-size: 30px !important;
  }

.h-cont p {
    font-size: 20px;
  }
}

@media (max-width: 639px)
{
 .header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
    height: 420px;
    margin-top: 0;
  }
.carousel-caption h2 {
    font-size: 30px;
  }
.section-title .sub-style::after {
  content: "";
  width: 36px;
  position: absolute;
  top: 48%;
  left: 0;
  transform: translateY(-50%);
  margin-bottom: 5px;
  margin-left: -36px;
  border: 1px solid #ffbe00 !important;
}
.sub-title::after {
  content: "";
  width: 36px;
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  margin-bottom: 8px;
  margin-right: -36px;
  border: 1px solid #ffbe00 !important;
}
.sub-title::before {
  content: "";
  width: 60px;
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  margin-top: 8px;
  margin-right: -60px;
  border: 1px solid #ffbe00 !important;
}
.section-title .sub-style::before {
  content: "";
  width: 60px;
  position: absolute;
  top: 48%;
  left: 0;
  transform: translateY(-50%);
  margin-top: 8px;
  margin-left: -60px;
  border: 1px solid #ffbe00 !important;
}
.sub-title {
    font-size: 16px;
  }
.display-3.wel-hh {
    font-size: 27px !important;
  }
.wel-h.display-3 {
    font-size: 22px !important;
  }
.hom-abt .col-lg-6 img {
    width: 100% !important;
    height: 288px;
  }
.hom-abt .display-3 {
    font-size: 20px !important;
  }
.about-bg-sec .display-4 {
    font-size: 30px !important;
  }
.fun-boxes.blog .blog-item .blog-img img {
    width: 100% !important;
    height: 288px !important;
  }
.bg-ellie img {
    width: 100%;
    height: 499px;
  }
.pdf-sec .display-3 {
    font-size: 20px !important;
    margin-bottom: 20px;
  }
.display-3 {
    font-size: 20px !important;
  }
.display-5 {
  font-size: 28px;
}
.back-to-top
{
 bottom: 90px;
}
.bg-breadcrumb {
    padding: 60px 0 60px 0;
    min-height: 320px;
  }
.display-7 {
  font-size: 20px;
}
.display-4 {
    font-size: 20px !important;
  }
.price-list p {
    font-size: 15px;
  }
.services .section-title p {
    font-size: 15px;
    line-height: 1.8;
  }
.ita-note p {
    font-size: 15px;
  }
.serv-form-sec .display-6 {
    font-size: 17px;
    line-height: 1.7;
  }
.footer .footer-item a {
    font-size: 16px;
  }
.copyright p {
  font-size: 15px;
}
.x-sm.display-3 {
  font-size: 22px !important;
}
.services .section-title .sm-p {
  font-size: 15px;
  margin-bottom: 12px !important;
}
.h-sm.display-4 {
    font-size: 22px !important;
  }
.services p {
    font-size: 15px;
  }
.serv-li.num-li li {
    font-size: 16px;
    margin-bottom: 20px;
  }
.section-title .mid-p {
  font-size: 15px;
  margin-bottom: 20px !important;
}
.serv-li li {
  font-size: 16px;
  margin-bottom: 20px;
}
.appointment-form.plan-form form {
    max-width: 100% !important;
    padding: 40px 25px;
  }
.f-flexx, .f-flexxi {
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
}
.f-flexx input, .f-flexxi input
{
 margin-right: 8px;
}
.appointment-form.reg-form form h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
.appointment-form.reg-form form {
    max-width: 100%;
    padding: 40px 25px;
  }
.sitemapul {
    width: 95%;
  }
.pdf-view #toolbarContainer
{
 overflow: auto !important;
}


.top-height .btn-square {
    width: 24px;
    height: 24px;
  }
.top-height .btn-square .fab {
    font-size: 13px;
  }
.top-height .col-lg-4
{
width: 20% !important;
}
.top-height .col-lg-8
{
width: 80% !important;
}
.h-cont p {
  font-size: 16px;
}

}

@media (max-width: 479px)
{
.carousel-caption h2 {
    font-size: 25px;
  }
.f-img img {
    width: 250px;
    height: 127px;
  }
.hom-sec-title.section-title .sub-style::before, .hom-sec-title .sub-title::before, .hom-sec-title .sub-title::after, .hom-sec-title.section-title .sub-style::after
{
 display: none !important;
}
.display-3.wel-hh {
    font-size: 22px !important;
  }
 .wel-h.display-3 {
    font-size: 18px !important;
  }
.hom-abt .col-lg-6 img {
    width: 100% !important;
    height: 208px;
  }
 .about-bg-sec .display-4 {
    font-size: 24px !important;
  }
.about-bg-sec p {
    font-size: 16px;
    margin-bottom: 15px !important;
  }
.fun-boxes.blog .blog-item .blog-img img {
    width: 100% !important;
    height: 208px !important;
  }
.fun-boxes h4 {
    font-size: 20px;
  }
.fun-boxes .blog-item p {
    font-size: 15px;
  }
.btn {
    font-size: 14px;
    padding: 6px 20px !important;
  }
.own-bg .display-4 {
    font-size: 25px !important;
  }
.own-bg p {
    font-size: 15px;
  }
.bg-ellie img {
    width: 100%;
    height: 361px;
  }
.names {
  font-size: 18px !important;
}
.display-5 {
    font-size: 22px;
  }
.map-sec iframe {
    width: 100%;
    height: 320px;
  }
.copyright p {
    font-size: 13px;
  }
.bg-breadcrumb .display-3 {
    font-size: 26px !important;
  }
.display-7 {
    font-size: 17px;
  }
.display-4 {
    font-size: 18px !important;
  }
.gal-img img {
    width: 100% !important;
    height: 208px;
  }
.footer-item h4 {
    font-size: 23px;
  }
.x-sm.display-3 {
    font-size: 16px !important;
  }
.appointment-form.reg-form form h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
.sitemapul li a {
  font-size: 16px;
}
.appointment-form.p-5 {
  padding: 0 !important;
}

.h-cont.flex-wrap {
  flex-wrap: wrap !important;
  float: none;
  text-align: left;
  display: grid !important;
}
.h-cont p {
    font-size: 17px;
    margin-top: 10px !important;
  }
.top-height .col-lg-4
{
width: 100% !important;
}
.top-height .col-lg-8
{
width: 100% !important;
}
.top-height .btn-square .fab {
    font-size: 18px;
  }
.top-height .btn-square {
    width: 40px;
    height: 40px;
  }
.h-top.px-5 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
}

@media (max-width: 359px)
{
.carousel-caption h2 {
    font-size: 22px;
  }
.header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
    height: 360px;
    margin-top: 0;
  }
.f-img img {
    width: 200px;
    height: 101px;
  }
.display-3.wel-hh {
    font-size: 20px !important;
  }
.hom-abt .col-lg-6 img {
    width: 100% !important;
    height: 181px;
  }
.hom-abt p {
    font-size: 15px;
  }
.about-bg-sec p {
    font-size: 15px;
    margin-bottom: 15px !important;
  }
.about-bg-sec .display-4 {
    font-size: 21px !important;
  }
.fun-boxes.blog .blog-item .blog-img img {
    width: 100% !important;
    height: 181px !important;
  }
.fun-boxes h4 {
    font-size: 17px;
  }
.own-bg .display-4 {
    font-size: 20px !important;
  }
.bg-ellie img {
    width: 100%;
    height: 314px;
  }
.pdf-sec .display-3 {
    font-size: 18px !important;
    margin-bottom: 20px;
  }
.display-5 {
    font-size: 19px;
  }
 #contact_us .feature-content h5 {
    font-size: 20px;
  }
#contact_us .feature-content p {
    font-size: 15px;
  }
.price-list p {
    font-size: 14px;
  }
.services .section-title p {
    font-size: 14px;
    line-height: 1.8;
  }
.gal-img img {
    width: 100% !important;
    height: 181px;
  }
 .bg-breadcrumb .display-3 {
    font-size: 22px !important;
  }
.h-sm.display-4 {
    font-size: 20px !important;
  }
.serv-li li {
    font-size: 15px;
    margin-bottom: 15px;
  }
.sub-title {
    font-size: 14px;
  }
.plan-form .display-5 {
    font-size: 22px;
  }
.labels {
    font-size: 14px;
    margin-bottom: 10px;
  }
label {
    font-size: 14px;
  }
.form-control
{
 font-size: 14px;
}
.section-title .mid-pp {
    font-size: 16px;
    margin-bottom: 25px !important;
  }
.display-7 {
    font-size: 15px;
  }
.sitemapul ul {
    width: 100%;
  }

.h-cont p {
    font-size: 16px;
  }
}