body {
    font-family: "Open Sans", sans-serif;
    color: #4d4643;
}
html{
    scroll-behavior: smooth;
}

a {
    color: #f03c02;
    text-decoration: none;
}

a:hover {
    color: #fd5c28;
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Muli", sans-serif;
}

img {
    max-width: 100%;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #7300B3;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #fd541e;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background-color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #111;
}

#topbar .contact-info i {
    font-style: normal;
    color: #2b2320;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #2b2320;
}

#topbar .contact-info i a {
    padding-left: 0px;
    color: #2b2320;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #c465f7;
}

#topbar .social-links a {
    color: #2b2320;
    line-height: 0;
    transition: 0.3s;
    margin-left: 13px;
}

#topbar .social-links a:hover {
    color: #7300B3;
}

.contact-info {
    margin-right: 15px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background-color: #333;
}

.navbar {
    margin-bottom: 0px !important;
}

#header.fixed-top {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 10px 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #2b2320;
    text-decoration: none;
}

.navHeader {
    transition: all 0.3s ease;
  }

.navHeader {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    font-size: 13px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    font-family: sans-serif;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #c465f7;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #f03c02;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #fd490f;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    font-weight: 500;
    color: #581601;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #f03c02;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(14, 11, 10, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #581601;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #f03c02;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #f03c02;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
    height: auto;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 65vh;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 60px;
    top: 110px;
    left: 50px;
    right: 50px;
}

#hero .carousel-content {
    background: rgba(28, 23, 21, 0.7);
    padding: 20px;
    color: #fff;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    border-top: 5px solid #f03c02;
}

#hero .carousel-content h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

#hero .btn-get-started {
    font-family: "Muli", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #f03c02;
}

#hero .btn-get-started:hover {
    background: #f03c02;
    color: #fff;
    text-decoration: none;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .carousel-indicators li {
    cursor: pointer;
}

@media (min-width: 1024px) {
    #hero .carousel-content {
        width: 60%;
    }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 992px) {
    #hero {
        height: calc(100vh - 70px);
    }
    #hero .carousel-content h2 {
        margin-bottom: 15px;
        font-size: 22px;
    }
    #hero .carousel-content p {
        font-size: 15px;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 40px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f3f2;
}

.section-title {
    padding-bottom: 30px;
    text-align: center;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #000;
}

.section-title h2 strong {
    font-weight: 700;
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 5px 0;
    background: #2b2320;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ded5d2;
}

.breadcrumbs ol a {
    color: #fe825a;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #c8bab5;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    background: #f3f1f0;
    padding: 60px 0;
    color: #574741;
}

.cta h3 {
    font-size: 28px;
    font-weight: 700;
}

.cta h3 span {
    color: #f03c02;
}

.cta p {
    padding: 0;
    margin: 0;
}

.cta .cta-btn {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 2px;
    transition: 0.4s;
    margin: 10px;
    border-radius: 4px;
    border: 2px solid #f03c02;
    color: #f03c02;
    background: #fff;
}

.cta .cta-btn:hover {
    background: #f03c02;
    color: #fff;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    padding: 50px 20px;
    margin-top: 35px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid #ebe6e4;
    height: 110px;
    position: relative;
    background: #faf9f8;
}

.services .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80px;
    height: 80px;
    background: #7300B3;
}

.services .icon img {
    max-width: 70%;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.services .title a {
    color: #343a40;
}

.services .icon-box:hover .icon {
    background: #fff;
    border: 2px solid #7300B3;
}

.services .icon-box:hover .title a {
    color: #7300B3;
    text-decoration: none;
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 50px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #4d4643;
    transition: all 0.3s;
    border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #f03c02;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #2b2320;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #65534c;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #483b36;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #f03c02;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
    color: #fe825a;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #f03c02;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f03c02;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(43, 35, 32, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients .clients-wrap {
    border-top: 1px solid #f1eeed;
    border-left: 1px solid #f1eeed;
}

.clients .client-logo {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #f1eeed;
    border-bottom: 1px solid #f1eeed;
    overflow: hidden;
    background: #fff;
    height: 100px;
}

.clients .client-logo img {
    transition: all 0.3s ease-in-out;
    height: 36px;
    filter: grayscale(100%);
}

.clients .client-logo:hover img {
    filter: none;
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about-us .content {
    padding: 30px 0;
}

.about-us .content h3 {
    font-weight: 700;
    font-size: 34px;
}

.about-us .content p {
    margin-bottom: 0;
}

.about-us .content .icon-box {
    margin-top: 25px;
}

.about-us .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.about-us .content .icon-box i {
    font-size: 48px;
    float: left;
    color: #f03c02;
}

.about-us .content .icon-box p {
    font-size: 15px;
    color: #90847f;
    margin-left: 60px;
}

.about-us .image {
    background: url("../img/mission.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

.about-us .vission-image {
    background: url("../img/vision.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .about-us .image {
        text-align: center;
    }
    .about-us .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .about-us .image img {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #2b2320;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a:hover {
    color: #f03c02;
}

.team .member .social i {
    font-size: 18px;
    line-height: 0;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #2b2320;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #b4aca8;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #847872;
}

.team .member:hover .social {
    opacity: 1;
}


/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/

.skills .progress {
    height: 50px;
    display: block;
    background: none;
}

.skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #2b2320;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #ded5d2;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #f03c02;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features {
    padding-top: 0;
}

.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 25px 20px;
    transition: 0.3s;
    color: #2b2320;
}

.features .nav-link:hover {
    color: #f03c02;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
}

.features .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.features .nav-link.active {
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.12);
    color: #f03c02;
}

.features .tab-pane.active {
    -webkit-animation: slide-down 0.5s ease-out;
    animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
    padding: 20px;
    background: #f3f1f0;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2b2320;
}

.pricing h4 {
    font-size: 42px;
    color: #f03c02;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #2b2320;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .btn-buy {
    color: #9c847b;
    border: 2px solid #e9e3e1;
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 4px;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Muli", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    color: #f03c02;
    border-color: #f03c02;
}

.pricing .featured {
    background: #fd5c28;
    box-shadow: none;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
    color: #fff;
}

.pricing .featured .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .featured .btn-buy {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.pricing .featured .btn-buy:hover {
    color: #f03c02;
    background: #fff;
    border-color: #fff;
}


/*--------------------------------------------------------------
# Cta Pricing
--------------------------------------------------------------*/

.cta-pricing {
    background: #f3f1f0;
    color: #65534c;
}

.cta-pricing h3 {
    font-size: 28px;
    font-weight: 700;
}

.cta-pricing .cta-btn {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 2px;
    transition: 0.4s;
    margin: 10px;
    border-radius: 4px;
    border: 2px solid #f03c02;
    color: #f03c02;
    background: #fff;
}

.cta-pricing .cta-btn:hover {
    background: #f03c02;
    color: #fff;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 40px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #fecfc0;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-wrap {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact .info {
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #c465f7;
    float: left;
    width: 44px;
    height: 44px;
    background: #ffeee8;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2b2320;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #65534c;
}

.contact .info:hover i {
    background: #c465f7;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    padding: 30px;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #c465f7;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #c465f7;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog {
    padding: 40px 0 20px 0;
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
    color: #2b2320;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {
    color: #f03c02;
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #9c847b;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .entry .entry-meta ul li+li {
    padding-left: 20px;
}

.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
}

.blog .entry .entry-meta a {
    color: #847872;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #f03c02;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
    background: #fd490f;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #4d4643;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #2b2320;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #836a61;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #3a2f2b;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #f03c02;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px;
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #2b2320;
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
    color: rgba(43, 35, 32, 0.5);
    margin-right: 5px;
}

.blog .blog-author p {
    font-style: italic;
    color: #bfb9b6;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
    width: 60px;
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #4d4643;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #f03c02;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #2b2320;
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #483b36;
    margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #fe825a;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #fe825a;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #2b2320;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #3a2f2b;
}

.blog .blog-pagination {
    color: #65534c;
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li a {
    color: #2b2320;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: #f03c02;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: #fff;
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #2b2320;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #f03c02;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: #fd4509;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #2b2320;
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: #f03c02;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #b4aca8;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: #2b2320;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #f03c02;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #b4aca8;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #745f56;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #ded5d2;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #f03c02;
    background: #f03c02;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #c8bab5;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    color: #b4aca8;
    font-size: 14px;
    background: #14100f;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: black;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Muli", sans-serif;
    color: #b4aca8;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #c465f7;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #b4aca8;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #c465f7;
}

.footer-newsletter {
    font-size: 15px;
}

.footer-newsletter h4 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    position: relative;
    padding-bottom: 12px;
}

.footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px 0 0 4px;
    text-align: left;
}

.footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

.footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -4px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #b937ff;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.footer-newsletter form input[type=submit]:hover {
    background: #fd5c28;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #b4aca8;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #f03c02;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #fd5c28;
    color: #fff;
    text-decoration: none;
}

.book_bt {
    background-color: #004a7f;
    border-radius: 3px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: 15px;
    padding: 11px 17px;
    text-align: center;
    text-decoration: none;
    margin-right: 20px;
}

.modal-header {
    position: relative;
}

.modal-header .close {
    position: absolute;
    right: 4%;
    font-size: 35px;
    opacity: 19.2;
}

.form-control {
    margin-bottom: 20px;
}

.btnn_for {
    text-align: center;
}

.btnn_for button {
    background-color: #7300B3;
    border: none;
    padding: 7px 30px;
    border-radius: 6px;
    font-size: 17px;
    color: #fff;
}

.modal-content {
    width: 350px;
    height: 400px;
}

.btnn_for{
    margin-top: 25px;
}

.modal-title {
    font-weight: 600
}

.modal-dialog {
    top: 15%;
}

.logo a img {
    max-width: 25%;
}

.float {
    position: fixed;
    top: 24%;
    right: 40px;
    background-color: #7300B3;
    color: #FFF !important;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
    border: none;
    z-index: 11;
    font-size: 18px;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.my-float {
    margin-top: 22px;
}

@keyframes glowing {
    0% {
        background-color: #cb77f8;
        box-shadow: 0 0 3px #c251ff;
    }
    50% {
        background-color: #cc7ff6;
        box-shadow: 0 0 40px #c058f8;
    }
    100% {
        background-color: #cb77f8;
        box-shadow: 0 0 3px #c354ff;
    }
}

.book_bt {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.social_icon_contac {
    font-size: 17px !important;
}

.Differentiator_div {
    background-color: #fff;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 210px;
    border-radius: 5px;
}

.doc_icon i {
    font-size: 45px;
    color: #F03C02;
    width: 75px;
    height: 75px;
    border: 3px solid #F03C02;
    border-radius: 50%;
    padding-top: 10px;
}

.doc_icon {
    text-align: center;
    padding-bottom: 10px;
}

.Differentiator_div h4 {
    text-align: center;
    font-weight: 600;
    line-height: inherit;
}


/* =================================================  */

.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
}

.white-heading {
    color: #000;
}

.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}

.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}

.white-heading span {
    color: #ffffff;
}


/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
    min-height: 375px;
    position: relative;
    /* background: url(https://i.ibb.co/PTJDkgb/testimonials.jpg); */
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
    background-size: cover;
}

#testimonial4 .carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
    overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 0;
    height: 20px;
    bottom: 15px;
    padding: 0 5px;
    cursor: e-resize;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    text-align: center;
    white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    text-indent: 0;
    margin: 2px 3px;
    cursor: pointer;
    display: inline-block;
    background: #ffffff;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    margin: 2px 3px;
    background-color: #9dd3af;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
    height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
    background: #eeeeee;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.testimonial4_control_button .carousel-control {
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: transparent;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
    transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control.left {
    left: 7%;
    top: 50%;
    right: auto;
}

.testimonial4_control_button .carousel-control.right {
    right: 7%;
    top: 50%;
    left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

.testimonial4_header {
    top: 0;
    left: 0;
    bottom: 0;
    width: 550px;
    display: block;
    margin: 30px auto;
    text-align: center;
    position: relative;
}

.testimonial4_header h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial4_slide {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    margin: auto;
    padding: 20px;
    position: relative;
    text-align: center;
}

.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
    color: #000;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
}

.testimonial4_slide h4 {
    color: #ffffff;
    font-size: 22px;
}

.testimonial .carousel {
    padding-bottom: 50px;
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}


/* ------testimonial  close-------*/

#quote-carousel {
    padding: 0 10px 30px 10px;
    margin-top: 60px;
}

#quote-carousel .carousel-control {
    background: none;
    color: #CACACA;
    font-size: 2.3em;
    text-shadow: none;
    margin-top: 30px;
}

#quote-carousel .carousel-indicators {
    position: relative;
    right: 50%;
    top: auto;
    bottom: 0px;
    margin-top: 20px;
    margin-right: -19px;
}

#quote-carousel .carousel-indicators li {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    opacity: 0.4;
    overflow: hidden;
    transition: all .4s ease-in;
    vertical-align: middle;
}

#quote-carousel .carousel-indicators .active {
    width: 128px;
    height: 128px;
    opacity: 1;
    transition: all .2s;
}

.item blockquote {
    border-left: none;
    margin: 0;
}

.item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
}


/* ======================================= 6-12-22 ================================== */

.scientific_title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
}

.scientific_details_txt p {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 15px;
    line-height: 1.6;
}

.scientific_details_txt h4 {
    font-size: 25px;
    font-weight: 700;
    margin: 30px 0px 15px;
}

.Ultherapy_div {
    background: url(../img/Ultherapy-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.Ultherapy_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.Ultherapy_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.Age_Reverse_div {
    background: url(../img/Age-Reverse-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.Age_Reverse_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.Age_Reverse_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.Age_Erase_div {
    background-image: url(../img/Age-Erase-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.Insta-Regen_div {
    background-image: url(../img/Insta-Regen-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.Age_Erase_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.Age_Erase_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.Insta-Regen_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.Insta-Regen_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.new-insta-row {
    margin-top: 20px;
}

.Ultherapy_details h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #4d4643;
    font-size: 35px;
}

.Ultherapy_details h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0px 15px;
    color: #4d4643;
}

.Ultherapy_details p {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #4d4643;
}

.Insta-Regen {
    background: url(../img/Insta-Regen-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-origin: content-box;
    height: 300px;
    padding: 0px;
    border-bottom: 1px solid #000;
}

.anti_agth {
    font-size: 35px;
    font-weight: 700;
    padding: 10px 0px;
    margin: 10px 0px 40px;
    border-bottom: 1px solid #ccc;
}

.tixel-Regen_div {
    background: url(../img/tixel-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.tixel-Regen_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.tixel-Regen_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.tixel-banner {
    background: url(../img/tixel-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-origin: content-box;
    height: 300px;
    padding: 0px;
    border-bottom: 1px solid #000;
}

.anti-ageing-laser_div {
    background: url(../img/anti-ageing-laser-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.anti-ageing-laser_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.anti-ageing-laser_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.kind_of_tix {
    background: #f1f1f1;
    border: 1px solid #ccc;
    padding: 5px 5px;
}

.anti-wrink-injection_div {
    background: url(../img/anti-wrink-injection-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.anti-wrink-injection_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.anti-wrink-injection_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.collagen-induction-therapy_div {
    background: url(../img/collagen-induction-therapy-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.collagen-induction-therapy_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.collagen-induction-therapy_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.collagen-tnduction-therapy-banner {
    background: url(../img/collagen-induction-therapy-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-origin: content-box;
    height: 300px;
    padding: 0px;
    border-bottom: 1px solid #000;
}

.vampire-facial_div {
    background: url(../img/vampire-facial-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.vampire-facial_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.vampire-facial_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.vampire-facial-banner {
    background: url(../img/vampire-facial-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-origin: content-box;
    height: 300px;
    padding: 0px;
    border-bottom: 1px solid #000;
}

.hyaluronic-acid-therapy_div {
    background: url(../img/hyaluronic-acid-therapy-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.hyaluronic-acid-therapy_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.hyaluronic-acid-therapy_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.filler_div {
    background: url(../img/filler-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.filler_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.filler_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.thread-lift_div {
    background: url(../img/thread-lift-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.thread-lift_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.thread-lift_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.ipl-therapy-photofacial_div {
    background: url(../img/ipl-therapy-photofacial-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.ipl-therapy-photofacial_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.ipl-therapy-photofacial_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.high-intensity-focused-ultrasound_div {
    background: url(../img/high-intensity-focused-ultrasound-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.high-intensity-focused-ultrasound_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.high-intensity-focused-ultrasound_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.gfr_div {
    background: url(../img/gfr-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.gfr_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.gfr_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.gfr-banner {
    background: url(../img/gfr-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-origin: content-box;
    height: 300px;
    padding: 0px;
    border-bottom: 1px solid #000;
}

.insta_img_div1 img {
    max-width: 100%;
}

.insta_img_div2 img {
    max-width: 100%;
}

.tixel_div_img1 img {
    max-width: 100%;
}

.tixel_div_img2 img {
    width: 520px;
}

.filler_mg_div img {
    max-width: 100%;
}

.filler_mg_div2 img {
    max-width: 100%;
}

.thread_img_div1 img {
    max-width: 100%;
}

.thread_img_div2 img {
    max-width: 100%;
}

.ayurveda_main_bn {
    background: rgba(0, 0, 0, 0.5) url(../img/ayurveda_main_pagebn.jpg);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-origin: content-box;
    height: 500px;
    padding: 0px;
}

.ayurvedic_therapies_txt h1 {
    text-align: center;
    font-weight: 700;
}

.ayurvedic_therapies_txt {
    margin-bottom: 30px;
}

.abhyangam_div {
    background: rgba(0, 0, 0, 0.5) url(../img/abhyangam.jpg);
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
}

.txt_about_abhyangam h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0px;
    text-align: center;
    font-size: 25px;
}

.txt_about_abhyangam p {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0px;
    text-align: center;
    margin: 3px 0px;
}

.txt_about_abhyangam {
    padding-top: 100px;
}

.shirodhara_div {
    background: rgba(0, 0, 0, 0.5) url(../img/sindhudhara.png);
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
}

.udhwarthanam_div {
    background: rgba(0, 0, 0, 0.5) url(../img/Udhwarthanam-card.jpeg);
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
}

.kadikhizi_div {
    background: rgba(0, 0, 0, 0.5) url(../img/kadikhizi_card.jpg);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    height: 250px;
}

.ayurveda-row-first {
    margin-bottom: 20px;
}

.pizhichil_div {
    background: rgba(0, 0, 0, 0.5) url(../img/Pizhichil-card.jpg);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    height: 250px;
}

.navarakizhi_div {
    background: rgba(0, 0, 0, 0.5) url(../img/Navarakizhi-card.png);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    height: 250px;
}

.elakizhi_div {
    background: rgba(0, 0, 0, 0.5) url(../img/Elakizhi_ayurveda_therapy-2.png);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    height: 250px;
}

.nasyam_div {
    background: rgba(0, 0, 0, 0.5) url(../img/nasyam-card.webp);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    height: 250px;
}

.netradhara_div {
    background: rgba(0, 0, 0, 0.5) url(../img/netradhara-therapy-card.png);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    height: 250px;
}

.online_consultation_div {
    background: rgba(0, 0, 0, 0.5) url(../img/kadikhizi_card.jpg);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    height: 250px;
}

.abhyangam_main_bn {
    background: rgba(0, 0, 0, 0.5) url(../img/beauty-spa.jpg);
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    height: 570px;
}

.ordinary_massage h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 0;
    font-weight: 700;
}

.ordinary_massage p {
    text-align: center;
    margin-bottom: 20px;
}

.ordinary_massage h5 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.duration_time p {
    margin: 0px;
    font-size: 22px;
    font-weight: 600;
}

.duration_time {
    margin-bottom: 25px;
}

.duration_time p img {
    max-width: 3%;
}

.oil_level p {
    margin: 0px;
    font-size: 22px;
    font-weight: 600;
}

.oil_level {
    margin-bottom: 25px;
}

.used_oil {
    margin-bottom: 25px;
}

.used_oil p {
    margin: 0px;
    font-size: 22px;
    font-weight: 600;
}

.used_oil p img {
    max-width: 3%;
}

.recemend_tharepist p {
    margin: 0px;
    font-size: 22px;
    font-weight: 600;
}

.recemend_tharepist p img {
    max-width: 7%;
}

.detax_relax img {
    max-width: 100%;
}

.detox_massage_detail {
    padding: 30px 0px;
    background-color: #E1E1E1;
}

.nerves_card {
    background-color: #FD5C28;
    border-radius: 15px;
    padding: 15px 0px;
}

.clams_img_div img {
    max-width: 30%;
}

.clams_img_div {
    display: grid;
    place-items: center;
}

.clams_img_div h4 {
    margin: 15px 0px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.nerves_card p {
    color: #fff;
    padding: 0px 25px;
    text-align: center;
}

.nerves_card {
    height: 370px;
}

.abhyangam_benifits_txt {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.BENEFITS_ABHYANGAM {
    margin: 10px 0px;
}

.sleep_card {
    background-color: #C1C1C1;
    height: 370px;
    border-radius: 15px;
    padding: 15px 0px;
}

.sleep_card p {
    color: #fff;
    padding: 0px 25px;
    text-align: center;
}

.management_calming {
    margin-top: -10px !important;
}

.experience_cd img {
    max-width: 100%;
}

.experience_text h2 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
}

.experience_text p {
    text-align: justify;
}

.about_treat_work {
    background-color: #F2E6D5;
    padding: 30px 0px;
}

.masseuses h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.masseuses p {
    text-align: justify;
}

.masseuses {
    padding-top: 75px;
}

.chakarma img {
    max-width: 100%;
}


/* ------------ faq ============== */

.accordion-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: antiquewhite;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
}

.accordion-item {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.09);
    cursor: pointer;
    background: #fff;
    margin-bottom: 15px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    column-gap: 0.2em;
}

.item-icon {
    margin-top: 9px;
    flex: 0 0 25px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    height: 25px;
    width: 25px;
    border-radius: 4px;
    background: #dedede;
    cursor: pointer;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.09);
}

.item-icon i {
    transition: all 0.25s cubic-bezier(0.5, 0, 0.1, 1);
}

.item-question {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 700;
    padding: 12px 0px;
}

.active .item-icon i {
    transform: rotate(180deg);
}

.active .item-question {
    font-weight: 500;
}

.item-content {
    max-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
}

.item-answer {
    line-height: 150%;
    opacity: 0.8;
}

.accordion-content h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.slogun_of_ayurveda {
    padding: 150px 200px 0px 200px;
}

.slogun_of_ayurveda h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.abhyangam_slogan {
    padding: 150px 200px 0px 200px;
}

.abhyangam_slogan h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.shirodhara_main_bn {
    background: url(../img/shirodhara_banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 570px;
}

.shirodhara_slogan {
    padding: 150px 200px 0px 200px;
}

.shirodhara_slogan h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.detoxify {
    background: #fff;
    height: 90px;
    border-radius: 50%;
    width: 90px;
    padding: 5px;
}

.faq_section {
    background-color: #f6f6f6;
}

.kadikhizi_main_bn {
    background: url(../img/woman-getting-massage-from-another-person.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 570px;
}

.kadikhizi_slogan {
    padding: 170px 200px 0px 200px;
}

.kadikhizi_slogan h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.pizhichil_main_bn {
    background: url(../img/masseur-pouring-oil.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 570px;
}

.pizhichil_slogan {
    padding: 170px 200px 0px 200px;
}

.pizhichil_slogan h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.navarakizhi_main_bn {
    background: url(../img/closeup-woman-getting-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 570px;
}

.navarakizhi_slogan {
    padding: 170px 200px 0px 200px;
}

.navarakizhi_slogan h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.elakizhi_main_bn {
    background: url(../img/woman-getting-massage-from-another-person.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 570px;
}

.elakizhi_slogan {
    padding: 170px 200px 0px 200px;
}

.elakizhi_slogan h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.nasyam_main_bn {
    background: url(../img/beauty-spa-massage.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 570px;
}

.nasyam_slogan {
    padding: 170px 200px 0px 200px;
}

.nasyam_slogan h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.terminal_text h1 {
    font-size: 35px;
    font-weight: 700;
}

.terminal_text h2 {
    font-size: 30px;
    font-weight: 700;
}

.terminal_text h3 {
    font-size: 25px;
    font-weight: 700;
}

.terminal_text p {
    text-align: justify;
}

.terminal_text ul li {
    margin-bottom: 10px;
}

.terminal_text ol li {
    margin-bottom: 10px;
}

.reasons_for_haq {
    font-size: 17px;
    font-weight: 700;
}

.item-content h6 {
    font-weight: 700;
}

.proper_hair_remove_img img {
    max-width: 100%;
}

.laser_remove_hair {
    background: url(../img/anti-age-laser\ 1.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.laser_remove_hair:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.laser_remove_hair h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.Laser_Aesthetics_div {
    background: url(../img/Laser-Aesthetics-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.Laser_Aesthetics_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.Laser_Aesthetics_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.glass_glow_div {
    background: url(../img/glass_glow_card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.glass_glow_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.glass_glow_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.Age_tereatment_div {
    background: url(../img/age_defy.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.Age_tereatment_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.Age_tereatment_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.hair_regroth_div {
    background: url(../img/hair_regroth_tret.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.hair_regroth_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.hair_regroth_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.revital_look_div {
    background: url(../img/revital-look-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.revital_look_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.revital_look_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.eye_glow_div {
    background: url(../img/Eye_glow_card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.eye_glow_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.eye_glow_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.em_sculpt_div {
    background: url(../img/em_sculpt_card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.em_sculpt_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.em_sculpt_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.pain_relief_div {
    background: url(../img/pain-relief-card.avif);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.pain_relief_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.pain_relief_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.medical-facials {
    padding: 10px 15px 0px 15px;
}

.medical-facials h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.medical-facials p {
    text-align: justify;
    padding-bottom: 10px;
}

.facial_checks {
    padding: 0px;
}

.face_glow_images img {
    max-width: 100%;
}

.nourishing-mask h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nourishing-mask h5 {
    font-size: 18px;
    font-weight: 700;
}

.nourishing-mask p {
    text-align: justify;
    margin-bottom: 10px;
}

.Hyaluronic_alo {
    padding: 40px 0px;
    margin: 40px 0px;
    background-color: #f7f7f7;
}

.clinically-proven {
    padding: 10px 15px 0px 15px;
}

.clinically-proven h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.clinically-proven p {
    text-align: justify;
    padding-bottom: 0px;
}


/* ------------------- collapus ----------------------  */

.faqs-title {
    color: #035E7B;
}

.faqs-content-inside p {
    line-height: 1.5;
    margin-bottom: 20px;
}

.new_collapus {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 30px 30px 30px;
    text-align: left;
}

.faqs-grid {}

.faqs-item {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    display: block;
    background-color: #f1f1f1;
}

.faqs-title {
    display: flex;
    position: relative;
    color: #666;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 20px;
    width: 100%;
    outline: none;
    transition: 0.4s;
}


/* .active, */

.faqs-title:hover {
    background-color: rgba(0, 0, 0, 1);
}

.faqs-title:after {
    content: '\002B';
    color: #666;
    font-weight: normal;
    float: right;
    margin-left: auto;
    font-size: 24px;
    line-height: 1;
    padding-left: 20px;
}


/* .active:after {
    content: "\2212";
} */

.faqs-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.faqs-content-inside {
    padding: 20px;
}

.wpb_wrapper h2 {
    font-weight: 700;
}

.wpb_wrapper h3,
h4 {
    font-weight: 700;
}

.wpb_wrapper p {
    text-align: justify;
}

.medical-age-facials {
    padding: 50px 20px 0px 20px;
}

.medical-age-facials h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.medical-age-facials p {
    text-align: justify;
}

.advanced_hair {
    padding: 0px 20px 0px 20px;
}

.advanced_hair h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.advanced_hair p {
    text-align: justify;
}

.dermatitis h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dermatitis h5 {
    font-weight: 700;
    font-size: 17px;
}

.dermatitis p {
    text-align: justify;
    margin-bottom: 5px;
}

.superior-technology h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.superior-technology h5 {
    font-size: 17px;
    font-weight: 700;
}

.superior-technology p {
    text-align: justify;
}

.revolutionary {
    padding: 20px 20px 0px 20px;
}

.revolutionary h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.revolutionary p {
    text-align: justify;
}

.resopnsive_img img {
    max-width: 100%;
}

.About_threadlift h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.skin-brightening-div {
    background-image: url(../img/Skin\ Brightening\ Treatment\ card.jpeg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.skin-brightening-div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.skin-brightening-div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.scars-treatment_div {
    background-image: url(../img/scars-treatment-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.scars-treatment_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.scars-treatment_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.skin-tag-treatment-div {
    background-image: url(../img/woman-applying-moisturizer-on-neck.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.skin-tag-treatment-div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.skin-tag-treatment-div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.collagen-induction-therapy_div {
    background-image: url(../img/coldspring-micro.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.collagen-induction-therapy_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.collagen-induction-therapy_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.acne-treatment_div {
    background-image: url(../img/best-acne-treatment\ 1.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.acne-treatment_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.acne-treatment_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.chemical-peels_div {
    background-image: url(../img/chemical-peels-1.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.chemical-peels_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.chemical-peels_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.vitamin-peel-treatment_div {
    background-image: url(../img/Resized-for-hero.jpeg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.vitamin-peel-treatment_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.vitamin-peel-treatment_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.glutathione-IV-treatment_div {
    background-image: url(../img/Glutathione\ IV\ Treatment\ 1.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.glutathione-IV-treatment_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.glutathione-IV-treatment_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.medi-facials_div {
    background-image: url(../img/Medi\ Facials\ 1.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.medi-facials_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.medi-facials_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.mesotherapy_div {
    background-image: url(../img/Mesotherapy\ 3.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.mesotherapy_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.mesotherapy_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.hair-transplant_div {
    background-image: url(../img/hair-card.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.hair-transplant_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.hair-transplant_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.anti-dandruff-treatment_div {
    background-image: url(../img/Anti-Dandruff\ Treatment\ 1.avif);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.anti-dandruff-treatment_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.anti-dandruff-treatment_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.hair-fall-arrest-treatment_div {
    background-image: url(../img/Hair\ Fall\ Arrest\ Treatment\ 1.webp);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.hair-fall-arrest-treatment_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.hair-fall-arrest-treatment_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.hair-density-boost-treatment_div {
    background-image: url(../img/Hair\ Density\ Boost\ Treatment\ 3.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.hair-density-boost-treatment_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.hair-density-boost-treatment_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.udwarthanam-consider h2 {
    font-weight: 600;
}

.fat-loss-spot-reduction_div {
    background-image: url(../img/Spot-Reduction.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.fat-loss-spot-reduction_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.fat-loss-spot-reduction_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.fat-inch-loss-body-ultherapy_div {
    background-image: url(../img/Fat\ Inch\ Loss\ -\ Body\ Ultherapy\ 1.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.fat-inch-loss-body-ultherapy_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.fat-inch-loss-body-ultherapy_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.fat-inch-loss-coolsculpting_div {
    background-image: url(../img/Fat\ Inch\ Loss\ -\ Coolsculpting\ 1.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.fat-inch-loss-coolsculpting_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.fat-inch-loss-coolsculpting_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.fat-inch-loss-em-sculpt_div {
    background-image: url(../img/Fat\ Inch\ Loss\ -\ EM\ Sculpt\ 2.jpg);
    max-width: 100%;
    height: 250px;
    border: 3px solid #f03c02;
    background-repeat: round;
    transition: transform .5s;
}

.fat-inch-loss-em-sculpt_div:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.1);
}

.fat-inch-loss-em-sculpt_div h4 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin: 100px -2px;
    padding: 5px 0px;
    background: #f03c02;
}

.our-offers {
    text-align: center;
    font-weight: 600;
    padding: 25px 0px 30px;
    margin: 0px;
}

.choose-us .icon-box {
    padding: 50px 20px;
    margin: 35px 15px 25px 15px;
    text-align: center;
    border: 1px solid #7300B3;
    position: relative;
    background: #faf9f8;
}

.choose-us .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80px;
    height: 80px;
    background: #7300B3;
}

.choose-us .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.choose-us .description {
    line-height: 24px;
    font-size: 14px;
}

.choose-us .icon img {
    max-width: 70%;
}

.about-us .title {
    color: #7300B3;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-box .description {
    font-size: 17px;
    margin-bottom: 15px;
}

.gallery-deraction {
    margin: 35px 0px;
}

.gallery-deraction a {
    color: #fff !important;
    background: #c465f7;
    padding: 10px 25px;
    font-size: 17px;
    border-radius: 5px;
    text-decoration: none !important;
}

.should-consider h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-booking-bt {
    margin: 15px 0px;
    text-align: end;
}

.main-booking-bt a {
    color: #fff !important;
    background: #c465f7;
    padding: 8px 25px;
    font-size: 17px;
    border-radius: 5px;
    text-decoration: none !important;
}

.main-booking-ct {
    margin-top: 30px;
    text-align: center;
}

.main-booking-ct a {
    color: #fff !important;
    background: #FD541E;
    padding: 8px 25px;
    font-size: 17px;
    border-radius: 5px;
    text-decoration: none !important;
}

.btn-quote {
    background: #c465f7;
    color: #fff;
    border: none;
    padding: 8px 25px;
}

.main-book-services {
    max-width: 650px;
    margin: auto;
    padding: 30px 10px 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-booking_service {
    margin-bottom: 30px;
    text-align: center;
}

.follow-sociallinks {
    text-align: center;
    border-right: 2px solid #000;
}

.follow-sociallinks h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
}

.follow-sociallinks .social-links {
    padding-bottom: 15px;
}

.follow-sociallinks .social-links a {
    font-size: 30px;
    padding: 15px;
    color: #c465f7;
}

.social-newsletters {
    background-color: #FAEBD7;
    padding: 40px 0px;
}

.footer-newsletter {
    text-align: center;
}

.footer-contact ul {
    list-style: none;
    padding: 0px;
}

.footer-contact ul li {
    padding: 10px 0;
    display: flex;
}

.footer-contact ul li a {
    color: #b4aca8;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer-contact ul li i {
    padding-right: 5px;
    color: #c465f7;
    font-size: 18px;
    line-height: 1;
}

.floating_btn {
    position: fixed;
    bottom: 30px;
    left: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 45px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.copy-rights-ct {
    justify-content: center;
}

.logo-tagline p {
    margin-bottom: 0px;
    font-weight: 700;
    font-family: 'Courgette', cursive;
    color: rgb(51, 51, 51);
    font-size: 16px;
}

.clinic-name {
    margin-left: -40%;
    color: #000;
    font-weight: 700;
    font-family: 'Courgette', cursive;
    font-size: 30px;
   text-decoration: underline;
}

.deal_bt {
    background-color: #004a7f;
    border-radius: 3px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: 15px;
    padding: 11px 17px;
    text-align: center;
    text-decoration: none;
    margin-left: 30px;
}

#header {
    position: relative;
}

#header::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    display: block;
    height: 3px;
    opacity: 1;
    border-radius: 10px 0;
    background: linear-gradient(270deg, #0b51f0 0, #18a3e0 33%, #19e1a4 55%, #3eb449 100%);
    background-size: 200% 200%;
    animation: gradientMenu 3s ease infinite;
}

@keyframes gradientMenu {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

.deal_bt {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.home-demo .item {
    background: #ff3f4d;
}

.home-demo h2 {
    color: #FFF;
    text-align: center;
    padding: 5rem 0;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

.eltdf-st-appear {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.eltdf-st-appear:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 51px;
    height: 1px;
    vertical-align: super;
    top: 2px;
    margin-right: 10px;
    background-color: #7300B3;
}

.eltdf-st-title {
    font-size: 40px;
    color: #7300B3;
}

.eltdf-st-text {
    font-size: 16px;
    font-weight: 300;
    margin: 18px 0 0;
    line-height: 29px;
    letter-spacing: 0;
}

.more-offers {
    margin-top: 20px;
}

.more-offers a {
    background-color: #fff;
    padding: 10px 30px;
    color: #333;
    box-shadow: 0 10px 50px rgba(178, 89, 89, .25);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid #7300B3;
    margin-top: 10px;
    color: #000;
}

.more-offers a:hover {
    background-color: #7300B3;
    color: #fff;
}

.main-owls-pd {
    padding: 0px 80px;
}

.counter {
    padding-top: 20px;
    display: flex;
    justify-content: space-around;
}

.card-caunter {
    padding: 20px;
    background: #f5eed7;
    box-shadow: 0 10px 50px rgba(178, 89, 89, .25);
    margin: 20px;
}

.counter-text h2 {
    font-size: 45px;
}

.bg-1 {
    background-color: #d7ffc1;
}

.bg-2 {
    background-color: #ffdfdf;
}

.my-offer-dt {
    font-size: 16px;
    font-weight: 300;
    margin: 18px 0 0;
    line-height: 29px;
    letter-spacing: 0;
}

.choose-us {
    padding: 50px 0px;
    background-color: aliceblue;
}

.rule {
    background: thistle;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-heading {
    text-align: center;
}

.step-image {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.image img {
    height: 300px;
    object-position: top;
    object-fit: cover;
    width: 100%;
}

.step-content {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.step-content h3 {
    font-weight: 600;
    font-size: 25px;
    color: #c465f7;
}

.step-content h2 {
    font-weight: 600;
    color: #f4c2c2;
    font-size: 24px;
}

.step-image:hover {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
    cursor: pointer;
    transition-duration: 1s;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 600;
}

.dp-logos {
    display: none;
}

.mb-numbers {
    margin-right: 20px;
}

.insta-card-images a img {
    max-width: 100%;
}

.owl-carousel .item-video {
    height: 380px;
}


/* ---------------------------- Responsive ------------------------  */

@media (max-width: 768px) {
    .main-owls-pd {
        padding: 0px 75px 20px;
    }
    .eltdf-st-title {
        font-size: 28px;
    }
    .more-offers {
        text-align: center;
    }
    .counter-text h2 {
        font-size: 28px;
    }
    .card-caunter {
        padding: 5px;
        margin: 10px;
        text-align: center;
    }
    .our-offers {
        font-size: 28px;
    }
    .rule {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .section-heading h2 {
        font-size: 22px;
        line-height: 1.5;
    }
    .about-us .title {
        font-size: 28px;
        margin-top: 20px;
    }
    .gallery-deraction a {
        padding: 8px 20px;
        font-size: 15px;
    }
    .testimonial {
        padding-top: 0;
    }
    #quote-carousel {
        margin-top: 0;
    }
    #quote-carousel .carousel-indicators .active {
        height: 78px;
    }
    #quote-carousel .carousel-indicators li {
        width: 80px;
    }
    .follow-sociallinks h3 {
        font-size: 28px;
        margin-bottom: 5px;
        margin-top: 0;
    }
    .footer-newsletter h4 {
        font-size: 28px;
    }
    .follow-sociallinks .social-links {
        padding-bottom: 0px;
    }
    #topbar {
        display: none !important;
    }
    #header {
        height: 65px;
    }
    .navbar-mobile {
        overflow: inherit;
    }
    .navbar {
        border: 0 !important;
    }
    .mobile-nav-toggle.bi-x {
        color: #000;
        font-size: 38px;
        top: 9px;
        right: -20px;
    }
    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 7px;
        right: -10px;
    }
    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 0px;
        right: -22px;
        padding: 10px 0;
        background-color: #fff;
        overflow: scroll;
        transition: 0.3s;
        width: 354px;
        height: 100vh;
    }
    .book_bt {
        margin-left: 20px;
    }
    #hero {
        height: calc(24vh - 42px);
    }
    .services {
        padding: 0px 0px 30px;
    }
    .scrolled-offset {
        margin-top: 0px;
    }
    #hero .carousel-control-next-icon,
    #hero .carousel-control-prev-icon {
        font-size: 25px;
    }
    .breadcrumbs h2 {
        font-size: 20px;
    }
    .Ultherapy_details h1 {
        font-size: 25px;
    }
    .main-booking-bt {
        text-align: center;
        margin: 15px 0px 20px;
    }
    .Hyaluronic_alo {
        margin: 0px;
        padding: 0px;
    }
    .clinically-proven h1 {
        font-size: 25px;
    }
    .clinically-proven ul {
        padding-left: 15px;
    }
    .nourishing-mask h1 {
        font-size: 25px;
        margin: 20px 0px;
    }
    .nourishing-mask ul {
        padding-left: 15px;
    }
    .should-consider h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .About_threadlift h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .medical-facials h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .medical-age-facials h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .advanced_hair h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .dermatitis h1 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .superior-technology h1 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .revolutionary h1 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .modal-content {
        width: 100%;
    }
    .dp-logos {
        display: block;
        margin-right: 15%;
    }
    .logo a img {
        max-width: 35%;
    }
    .floating_btn {
        bottom: 0px;
        left: 0px;
    }
    .contact_icon {
        width: 50px;
        height: 50px;
        font-size: 35px;
    }
    .counter {
        padding-top: 0px;
        flex-direction: column;
    }
    .mb-logo-head {
        display: flex;
        justify-content: space-between;
    }
    .home-servce-list{
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .contect_form1{
        display: none;
    }
    .connect-doc{
        display: block !important;
    }
    .contect_form1 p .fa-history {
        font-size: 26px !important;
    }
    .contect_form1 p {
        font-size: 15px !important;
    }
    .request-text span {
        font-size: 16px !important;
    }
    .contect_form_bt {
        width: 100% !important;
        display: block !important;
    }
    .seceond_post {
        margin-top: 0px;
    }
    .poster_main{
        margin-top: 15px;
    }

}

.main-booking-bt a {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

/* Booking Form Css Start  */

.booking_box-2 {
    width: 100%;
    padding: 15px;
}

.booking_box {
    z-index: 3;
    position: initial;
    background: #333333;
}

.request-text {
    float: right;
    width: 80%;
    color: #fff;
    font-size: 22px;
}

.booking_box.booking_box-2 p {
    margin: 0;
}

.call-back-design .contect_form1 {
    width: 19%;
    float: left;
    margin: 0 .5%;
    position: relative;
}

.contect_form1 input {
    width: 100%;
    height: 45px;
    padding-left: 20px;
    color: #666;
    background: rgba(255,255,255,1);
    border: 2px solid rgba(255,255,255,.4);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    border-radius: 0;
}

.contect_form1 select {
    width: 100%;
    height: 45px;
    padding-left: 15px;
    color: #666;
    background: rgba(255,255,255,1);
    border: 2px solid rgba(255,255,255,.4);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    border-radius: 0;
}

.call-back-design .contect_form1 .fa {
    position: absolute;
    color: #666;
    font-size: 18px;
    top: 30%;
    left: 3%;
    z-index: 4;
}

.contect_form1 p{
    font-size: 16px;
}

.contect_form1 p .fa-history {
    float: left;
    width: 20%;
    font-size: 48px;
    color: #fff;
}

.request-text span {
    display: block;
    font-size: 18px;
}

.requst_forcall{
    border-radius: 0;
    background-color: #CC7EF6;
    color: #fff;
    font-weight: 400;
    width: 100%;
    height: 45px;
    border: none;
}

.requst_callform_sect{
    padding: 0px;
}

.book-form-control select {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.book-city-control select {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.home-servce-list {
    background-color: #f5f5f5;
    flex: 0 0 auto;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.home-servce-list h2 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 35px;
    color: #CC7EF6;
    text-align: center;
}

.home-servce-list ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.home-servce-list ul li {
    flex: 0;
    margin-bottom: 20px;
}

.home-servce-list ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 10px;
}

.home-servce-list ul li .serv_images {
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0px;
    border: 2px solid #CC7EF6;
    border-radius: 50%;
    overflow: hidden;
    background: rgb(90 183 190 / 20%);
}

.home-servce-list ul li .serv_titlename {
    flex: 0 100%;
    max-width: 100%;
}

.home-servce-list ul li .serv_titlename h4 {
    text-align: center;
    color: #000;
}

.contect_form_bt{
    width: 19%;
    float: left;
    margin: 0 .5%;
    position: relative;
    display: none;
}

.laser-imgsize{
    max-width: 155%;
}

.poster_main{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 5px;
    border-radius: 5px; 
}

.poster_main:hover {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
}

.poster_main img{
    max-width: 100%;
}

.seceond_post{
  margin-top: 30px;
}

.terms-contents h2{
    font-size: 28px;
    font-weight: 600;
    font-family: "Muli", sans-serif;
}

.terms-contents p{
    font-size: 17px;
    margin: 20px 0px;
}

.text_missions{
    font-size: 17px;
    margin-bottom: 10px !important;
}