@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {box-sizing: border-box;}

body {
    font-family: "Nunito", sans-serif;
    color: #000000;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 26px;
}

h2 {
    color: #bc1c25;
}

h3 {
    font-weight: 600;
    color: #bc1c25;
}

h4 {
    font-weight: 600;
    color: #bc1c25;
}

.main-header {
    position: fixed;
    z-index: 9;
    width: 100%;
    top: 0;
}

.header-sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    background-color: #fff;
    /* opacity: 0.7;  */
    transition: 0.3s;
    z-index: 10;
}

.logo-side img {
    max-width: 100px; 
}

.social-side {
    display: flex;
}

.social-side a {
    text-decoration: none;
}

.social-side i {
    width: 40px;
    height: 40px;
    border: 1px solid #bc1c25;
    color: #bc1c25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.social-side i:hover {
    background-color: #bc1c25;
    color: #fff;
    border-color: #bc1c25;
}

.banner-title {
    /* min-width: 50%; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

#banner_slider.slider {
    position: relative;
    width: 100%;
}

.items {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 90vh;
    padding: 0px;
    margin: 0px;
    /* padding-bottom: 45%; */
}

.item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .6s ease-in-out;

    &.current {
        opacity: 1;
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.buttons {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button {
    width: 32px;
    height: 32px;
    border: none;
    outline: none;
    padding: 0;
    background: transparent center no-repeat;
    cursor: pointer;
    opacity: 1;
    margin: 5px;
    color: #fff;
    padding: 5px;

    &.prev {
        /* background-image: url(https://codeisle.info/blog/wp-content/uploads/2018/12/ico_next_b32.png); */
        background-color: #bc1c25;
    }

    &.next {
        /* background-image: url(https://codeisle.info/blog/wp-content/uploads/2018/12/ico_next_b32-1.png); */
        background-color: #bc1c25;

    }

    &:hover {
        opacity: .8;
    }
}

.dots {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 0;
    background: #777;
    cursor: pointer;
    opacity: .5;
    transition: opacity .4s ease-in-out;

    &:nth-child(n+2) {
        margin-left: 5px;
    }

    &.current {
        opacity: 1;
    }
}

.banner-title h1 {
    margin-bottom: 20px;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}

.banner-title p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.contact-us-btn a {
    display: inline-block;
    border-radius: 8px;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.contact-us-btn a.filled-btn {
    border: 2px solid #bc1c25;
    color: #fff;
    background-color: #bc1c25;
    margin-right: 8px;
}

.contact-us-btn a.filled-btn:hover {
    border: 2px solid #bc1c25;
    color: #bc1c25;
    background-color: transparent;
}

.contact-us-btn a.unfilled-btn {
    border: 2px solid #bc1c25;
    color: #bc1c25;
    background-color: transparent;
}

.contact-us-btn a.unfilled-btn:hover {
    border: 2px solid #bc1c25;
    color: #fff;
    background-color: #bc1c25;
}

/* WHAT DO WE OFR css */
.features-item .thumb {
    overflow: hidden;
}

.features-item.border-hover {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .05);
    padding: 10px;
    height: 100%;
}

.features-item .thumb {
    position: relative;
}

.features-item .thumb.bg-theme-color-1-transparent:before {
    background-color: rgba(173, 216, 230, .93) !important;
}

.features-item .thumb.bg-theme-color-2-transparent:before {
    background-color: rgba(230, 173, 188, .93) !important;
}

.features-item .thumb.bg-theme-color-3-transparent:before {
    background-color: rgba(230, 216, 173, .93) !important;
}

.features-item .thumb::before {
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.features-item .thumb-icon {
    top: 28%;
    left: 0;
    right: 0;
    margin: auto;
}

.absolute {
    position: absolute;
}

.features-item .details {
    margin-top: 20px;
}

.details h4 a {
    color: #000;
    text-decoration: none;
}

.features-item:hover .thumb-icon,
.features-item:hover .thumb-icon,
.features-item:hover .thumb::before,
.features-item:hover .thumb-icon {
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    -webkit-transform: translate3d(0, -80px, 0);
    transform: translate3d(0, -100px, 0);
    opacity: 0;
    -webkit-animation: bounceY .9s linear;
    -moz-animation: bounceY .9s linear;
    -ms-animation: bounceY .9s linear;
    animation: bounceY .9s linear;
}

/* WHAT DO WE OFR css */

/* our client css */
.section-title h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    font-weight: 600;
}

.choose-point {
    padding: 0;
    margin: 0px;
}

.choose-point li {
    list-style: none;
    padding-bottom: 8px;
    color: #000;
    display: flex;
    align-items: baseline;
}

.choose-point li i {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #bc1c25;
}

.shadow-img img {
    border: 12px solid #fff;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, .1);
    width: 100%;
}

.shadow-img.small-img img {
    max-height: 270px;
    width: 100%;
    object-fit: cover;
}

/* our-services css */
.our-services {
    background-color: #fbd9db;
}

.our-services .card-slider .space-arround {
    padding: 0px 20px;
}

.our-services .card-slider .space-arround .card {
    padding: 10px;
}

.card-img-top {
    width: 100%;
}

.our-services .slick-next:before,
.slick-prev:before {
    color: #bc1c25;
}

.our-services .slick-dots li button:before {
    font-size: 12px;
}

.our-services .slick-dots li.slick-active button:before {
    color: #bc1c25;
}

.book-now {
    display: inline-block;
    border-radius: 8px;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #bc1c25;
    color: #fff;
    background-color: #bc1c25;
}

.book-now:hover {
    color: #bc1c25;
    border: 2px solid #bc1c25;
    background-color: transparent;
}

/* our teams css */
.bg-theme-color-1 {
    background: #fbb6ba;
}

.member-info {
    position: relative;
    z-index: 2;
}

.member-info h5 a {
    color: #000;
    text-decoration: none;
}

.member-info:hover h5 a {
    color: #fff;
}

.member-info:hover h6 {
    color: #fff;
}

.member-thumb {
    position: relative;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, .1);
}

.expert.bg-theme-color-1 .triangle-down {
    border-top: 40px solid #fbb6ba;
}

.member-thumb .triangle-down {
    left: 0;
    position: absolute;
    right: 0;
    top: -20px;
}

.triangle-down {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    height: 0;
    margin: 0 auto;
    width: 0;
}

/* price section css */
.price-card {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .05);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    border-radius: 5px;
}

.price-card:hover {
    transform: scale(1.05);
}

.service-name {
    font-size: 28px;
    font-weight: 700;
    color: #bc1c25;
}

.service-duration {
    color: #6f6f6f;
}

.service-price {
    font-size: 35px;
    font-weight: 700;
    color: #bc1c25;
}

/* cta section css */
.cta {
    background-color: #edf5ff;
    background-image: url(../../assets/img/bg8.png);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    padding-top: 130px;
    padding-bottom: 40px;
}

.contact-info.contact_links a {
    color: initial;
    text-decoration: none;
}

.contact-info.contact_links a :hover {
    color: #bc1c25;
}

.contact-info h4 {
    font-weight: 600;
}

/*google Review css*/
.google-review main {
    width: 540px;
    min-width: 330px;
}

.slide-row {
    display: flex;
    width: 3200px;
    transition: 0.5s;
}

.slide-col {
    position: relative;
    width: 540px;
    min-width: 340px;
    height: 300px;
}

.review-slider .hero {
    position: absolute;
    top: 0;
    left: 0;
    /*height: 100%;*/
    z-index: 9;
}

.review-slider .hero img {
    /*height: 100px;*/
    /*width: 100px;*/
    /*border-radius: 10px;*/
    /*object-fit: cover;*/
    pointer-events: none;
    user-select: none;
}

.review-slider .content {
    position: absolute;
    left: 12px;
    top: 30%;
    transform: translateY(-30%);
    width: 520px;
    /*height: 270px;*/
    color: #4d4352;
    background: rgba(255, 255, 255, 0.7);
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);*/
    /*backdrop-filter: blur(4.5px);*/
    /*-webkit-backdrop-filter: blur(4.5px);*/
    border-radius: 10px;
    padding: 20px 30px;
    z-index: 2;
    user-select: none;
}

.review-slider .content p {
    font-weight: 400;
    line-height: 1.3;
}

.review-slider .content h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 35px;
    color: #4d4352;
}

.review-slider .indicator {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.indicator .btn-slide {
    display: inline-block;
    height: 5px;
    width: 15px;
    margin: 4px;
    border-radius: 15px;
    background: #E0E2EA;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.btn-slide.active {
    width: 30px;
    background-color: #bc1c25;
}

.red_font {
    color: #bc1c25;
    font-weight: 700;
}

.compnay-name p {
    font-size: 18px;
    font-weight: 600;
}

.content p {
    margin-bottom: 0px;
}

.review-slider {
    width: 100%;
    overflow: hidden;
}

.review-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 65px;
}

.review-profile h6 {
    margin-bottom: 0px;
    font-weight: 500;
}

.star-icon {
    color: #F8B805;
    padding: 0px 10px;
}

.gtco-testimonials {
    position: relative
}

.gtco-testimonials .owl-stage-outer {
    padding: 30px 0;
}

.gtco-testimonials .review-card {
    background: #fff;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;
    position: relative
}

.gtco-testimonials .owl-theme .owl-nav {
    display: none;
}

.gtco-testimonials .owl-carousel .owl-item .card-img-top {
    display: initial;
    position: absolute;
    top: -25px;
    left: -19px;
    border-radius: 18px;
}

.gtco-testimonials .review-card .card-img-top {
    width: 94px;
    height: 94px
}

.gtco-testimonials .owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 5px;
    background-color: #e0e2ea;
    border-radius: 15px;
    border: none;
}

.gtco-testimonials .owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
    background-color: #bc1c25;
}

.gtco-testimonials .owl-theme .owl-dots {
    text-align: start;
    padding-left: 15px;
}

.gtco-testimonials .review-card h6 {
    margin-bottom: 0
}

.review-profile .quote-text img {
    width: auto !important;
    display: initial !important
}

.review-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 65px
}

.gtco-testimonials .card-text {
    margin-top: 10px
}

.gtco-testimonials .card-text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* review css end */
.google-map h3 {
    margin-bottom: 20px;
}

.google-map a {
    margin-bottom: 20px;
}

.contact-us-form {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .05);
    padding: 40px 50px;
    border-radius: 5px;
}

.whatsapp-button {
    /* box-shadow: 0px 0px 16px #00ac46; */
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
	z-index:9999;
}
a.phone-no {
    text-decoration: none;
    color: #000;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}
h2.mt-5.mb-5.page-heading {
    font-size: 80px;
}
@media (max-width: 991px) {.map-section {display: flex;}.first {order: 1;}.second {order: 2;}}
/*google review*/
@media (max-width: 600px) {
    h2.mt-5.mb-5.page-heading {
        font-size: 40px !important;
    }
    .our-services .card-slider .space-arround {
        padding: 0px;
    }

    .our-services .slick-prev {
        left: 12px;
        z-index: 5;
    }

    .our-services .slick-next {
        right: 12px;
    }
}


@media (max-width: 576px) {
    .logo-side img {
        max-width: 80px;
    }

    .book-now {
        padding: 8px 20px;
    }

    .contact-us-btn a.filled-btn {
        padding: 8px 20px;
    }

    .main-header .book-now {
        padding: 5px 10px;
        font-size: 14px;
    }

    .review-slider .content {
        width: 320px !important;
    }

    .banner-title h1 {
        font-size: 35px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    .contact-us-form {
        padding: 25px;
    }

    .buttons {
        display: none;
    }
}
@media (max-width: 575px) {
	.spa-address {
		justify-content: center;
	}
}

@media (max-width: 375px) {
    .our-services .card-slider .space-arround .card-body {
        display: block !important;
        text-align: center;
    }

    .our-services .card-slider .space-arround .card-body .card-title {
        margin-bottom: 15px !important;
    }
}