@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500&display=swap');

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

.btn-check {
    &:focus+.btn {
        outline: unset !important;
        box-shadow: unset !important;
    }
}
.btn {
    &:focus {
        outline: unset !important;
        box-shadow:  unset !important;
    }
}

//color variable
$primary: #4CA1F2;
$white: #fff;
$yellow: #FFCA2C;
$bg-color: #141E30;
$icon: #898e97;
$dark: #010101;
$grey: #B8B8B8;

.vcard3-btn-group {
    width: 50px;
    height: 50px;
    color: $primary;
    padding: 10px;
    border: 1px solid $primary;
    background-color:$white;
    border-radius: 50px !important;
}
.vcard3-sticky-btn{
    background: $primary;
    color:white;
    height: 40px;
    padding: 10px 20px;
    box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
    border-radius: 50px !important;
}

a{
    text-decoration: none !important;
    color:$primary !important;
}

body {
    background-color: #E5E5E5 !important;
    font-family: 'Manrope', sans-serif;
}

.vcard-three {
    &.main-content {
        max-width: 576px;
        min-height: 100vh;
        background-color: $bg-color;
    }

    .vcard-three-heading {
        font-weight: 500;
        font-size: 28px;
        color: $white;
    }

    .heading-line {
        padding-top: 30px;
        z-index: 1;

        &::before {
            content: "";
            position: absolute;
            width: 90%;
            height: 1px;
            border-radius: 50%;
            background: rgb(175,175,175);
            background: linear-gradient(90deg, rgba(20,30,48,1) 0%, rgba(255,255,255,1) 50%, rgba(20,30,48,1) 100%);
            left: 50%;
            top: 0;
            right: 0;
            transform: translateX(-50%);
        }
    }
    //banner
    &__banner {
        height: 280px;

        .banner-image {
            height: 280px;
            object-fit: cover;
            width: 100%;
            z-index: 10;
        }
    }
    //profile
    &__profile {
        z-index: 10;

        .avatar {
            z-index: 11;

            img {
                min-width: 120px;
                max-width: 120px;
                width: 120px;
                height: 120px;
                object-fit: cover;
                border: 5px solid $white;
            }
        }
    }
    //profile details
    &__profile-details {
        margin-top: 60px;
        z-index: 111;

        .profile-designation {
            font-size: 18px;
        }

        .profile-company {
            font-size: 16px;
            padding: 10px;
        }

        .social-icons {
            z-index: 10;
            position: relative;

            a {
                width: 20%;
                display: flex;
                justify-content: center;
                margin: 0 0 20px;
                text-decoration: none;
            }

            .icon {
                color: $icon;
                cursor: pointer;
                transition: all 0.3s ease;

                &:hover {
                    color: $white;
                }
            }
        }
    }

    .activeSlot{
        background-color: white !important;
        color: #4CA1F2 !important;
    }

    //event
    &__event {
        .shape-one {
            top: -130px;

            @media (max-width: 575px) {
                top: 100px;
            }
        }

        .event-card {
            background-color: transparent;

            .event-icon {
                background-color: $primary;
                padding: 10px;
                border-radius: 50%;
                min-width: 48px;
                width: 48px;
                height: 48px;
                box-shadow: 0 0 0 5px $bg-color,
                            0 0 0 7px $primary;
            }

            .event-detail {
                h6 {
                    font-weight: 500;
                    font-size: 12px;
                    margin-bottom: 5px;
                }

                .event-name {
                    font-size: 12px;
                    word-break: break-all;
                }
            }
        }
    }

    //Appointment
    &__appointment {
        .appoint-date {
            font-size: 16px;
            color: #fff;
        }

        .appoint-input {
            font-size: 11px;
            text-align: center;
            font-weight: 500;
            padding: 10px 0;
            border: none;
            display: block;
            width: 100%;
            box-sizing: border-box;
            margin: 0;
            border-radius: 10px;
            background: $primary;
            box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
            color: #fff;

            &:hover {
                background: #4CA1F2;
                box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
            }

            &:focus-visible {
                outline: none;
            }

            &::placeholder {
                color: #fff;
            }
        }

        .appoint-btn {
            padding: 10px 16px;
            background: $primary;
            box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
            border: none;
            outline: none;
            transition: all 0.3s ease;

            &:hover {
                background: $primary;
                box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
            }
        }
    }

    //service
    &__service {
        .shape-two {
            top: -50px;
        }

        .service-card {
            border-radius: 15px;
            background: transparent;
            border:1px solid #283a5a;
            padding:20px;
            max-height: 445px;
            overflow: auto;

            .service-new-image {
                width: 100%;
                height: 25vh;
                object-fit: cover;
                border-radius: 0.5rem;
            }

            .card-body {
                padding-left: 0 !important;
            }

            .service-image {
                min-width: 90px;
                width: 90px;
                height: 90px;
                background: $primary;
                border-radius: 50%;

                img {
                    min-width: 80px;
                    width: 80px;
                    height: 80px;
                    object-fit: cover;
                }
            }

            .service-details {
                .service-title {
                    font-weight: 500;
                    font-size: 18px;
                    color: $bg-color;
                }

                .service-paragraph {
                    font-size: 14px;
                    color: $bg-color;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: initial;
                    display: -webkit-box;
                    -webkit-line-clamp: 6;
                    -webkit-box-orient: vertical;
                    width: 160px;
                }
            }
        }
    }

    //gallery
    &__gallery {
        .gallery-slider {
            z-index: 10;

            .slick-track {
                display: flex !important;
            }

            .slick-slide {
                margin: 0 6px;
                display: flex;
                height: auto;

            }

            .slick-list {
                padding: 10px 0;
            }

            .slick-dots {
                li {
                    button {
                        &:before {
                            color: $white;
                        }
                    }

                    &.slick-active {
                        button {
                            &:before {
                                color: $white;
                            }
                        }
                    }
                }
            }
        }

        .gallery-card {
            background-color: $primary;
            border-radius: 10px;

            .gallery-profile {
                img {
                    object-fit: cover;
                    height: 238px;
                }

                .gallery-link {
                    &:focus-visible {
                        outline: none;
                    }
                }

                .gallery-item {
                    display: inline-block;
                    width: 100%;
                    height: 238px;
                    background-repeat: no-repeat;
                    background-size: cover;
                    background-position: center;
                    border-radius: 3px;
                    cursor: pointer;
                    transition: all 0.5s;
                    position: relative;
                }

            }
        }
    }
    .video-container {
        height:220px;
     }
     .audio-container {
        img {
            height:173px !important;
        }
     }
    //product

    &__product {
        .product-slider {
            z-index: 10;

            .slick-track {
                display: flex !important;
            }

            .slick-slide {
                margin: 0 6px;
                display: flex;
                height: auto;

                div {
                    width: 100% !important;
                    height: 100%;
                }
            }

            .slick-list {
                padding: 10px 0;
            }

            .slick-dots {
                li {
                    button {
                        &:before {
                            color: $white;
                        }
                    }

                    &.slick-active {
                        button {
                            &:before {
                                color: $white;
                            }
                        }
                    }
                }
            }
        }

        .product-card {
            background-color: $primary;
            border-radius: 10px;

            .product-profile {
                img {
                    object-fit: cover;
                }
            }

            .product-details {
                margin-top: 20px !important;

                h4 {
                    font-weight: 500;
                    font-size: 18px;
                    color: $dark;
                }

                span {
                    font-weight: 500;
                    font-size: 14px;
                    color: $grey;
                }

                p {
                    font-size: 14px;
                    font-weight: 400;
                    color: $dark;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                }
            }

            .reviews {
                .star-icon {
                    color: $yellow;
                }
            }
        }
    }

    &__product_details_page {
        .product-slider {
            z-index: 10;

            .slick-track {
                display: flex !important;
            }

            .slick-slide {
                margin: 0 6px;
                display: flex;
                height: auto;

                div {
                    width: 100% !important;
                    height: 100%;
                }
            }

            .slick-list {
                padding: 10px 0;
            }

            .slick-dots {
                li {
                    button {
                        &:before {
                            color: $white;
                        }
                    }

                    &.slick-active {
                        button {
                            &:before {
                                color: $white;
                            }
                        }
                    }
                }
            }
        }

        .product-card {
            background-color: $primary;
            border-radius: 10px;

            .product-profile {
                img {
                    object-fit: cover;
                }
            }

            .product-details {
                margin-top: 20px !important;

                h4 {
                    font-weight: 500;
                    font-size: 18px;
                    color: $dark;
                }

                span {
                    font-weight: 500;
                    font-size: 14px;
                    color: $grey;
                }

                p {
                    font-size: 14px;
                    font-weight: 400;
                    color: $dark;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                }
            }

            .reviews {
                .star-icon {
                    color: $yellow;
                }
            }

            @media (max-width: 580px) {
                width: 99% !important;
                img{
                    width: 100% !important;
                }
            }
        }
    }

    //testimonial
    &__testimonial {
        .testimonial-slider {
            z-index: 10;

            .slick-track {
                display: flex !important;
            }

            .slick-slide {
                margin: 0 6px;
                display: flex;
                height: auto;

                div {
                    width: 100% !important;
                    height: 100%;
                }
            }

            .slick-list {
                padding: 10px 0;
            }

            .slick-dots {
                li {
                    button {
                        &:before {
                            color: $white;
                        }
                    }

                    &.slick-active {
                        button {
                            &:before {
                                color: $white;
                            }
                        }
                    }
                }
            }
        }

        .testimonial-card {
            background-color: $primary;
            border-radius: 15px;
            .testimonial-user {
                img {
                    min-width: 70px;
                    width: 70px;
                    height: 70px;
                    object-fit: cover;
                }

                .user-details {
                    .user-name {
                        font-weight: 500;
                        font-size: 16px;
                    }

                    .user-designation {
                        font-size: 12px;
                    }
                }
            }

            .review-message {
                color: rgba($white, 0.8);
                font-size: 14px;
                display: -webkit-box;
                //-webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow:auto;
                max-height:178px;
            }

            .reviews {
                .star-icon {
                    color: $yellow;
                }
            }
        }
    }

    //blog
    &__blog {
        .blog-slider {
            .slick-track {
                display: flex !important;
            }

            .slick-slide {
                margin: 0 28px;
                display: flex;
                height: auto;

                div {
                    width: 100% !important;
                    height: 100%;
                }
            }

            .slick-list {
                padding: 30px 0;
                overflow: visible;
            }

            .slick-dots {
                bottom: -5px;

                li {
                    button {
                        &:before {
                            color: $white;
                        }
                    }

                    &.slick-active {
                        button {
                            &:before {
                                color: $white;
                            }
                        }
                    }
                }
            }

            .blog-card {
                background: #4CA1F2;
                box-shadow: 0 0 6px rgb(0 0 0 / 25%);
                border-radius: 15px;
                outline: 3px solid #141f31;
                outline-offset: -5px;

                .blog-image {
                    img {
                        min-width: 200px;
                        width: 200px !important;
                        height: 200px;
                        object-fit: cover;
                        border-radius: 50%;
                        margin: auto;
                        outline: 3px solid #141f31;
                        outline-offset: 2px;
                        display: flex;
                        align-items: center;

                        @media (max-width: 575px) {
                            min-width: 150px;
                            width: 150px !important;
                            height: 150px;
                        }
                    }
                }

                .blog-details {
                    h5 {
                        color: $white;
                    }

                    p {
                        display: -webkit-box;
                        overflow: hidden;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 7;
                        max-width: 100%;
                        color: rgba(255, 255, 255, 0.8);
                        font-size: 14px !important;
                    }
                }
            }
        }
    }

    .slick-dots {
        > li {
            display: inline-block;
        }

        > li:only-child {
            display: none;
        }
    }

    //qr-code
    &__qr-code {
        .qr-code-card {
            border-radius: 15px;

            .qr-profile {
                img {
                    min-width: 90px;
                    width: 90px;
                    height: 90px;
                    object-fit: cover;
                }
            }

            .qr-code-scanner {
                border-radius: 15px;
                box-shadow: inset 3px 3px 8px #e8e8e8, inset -3px -3px 4px #f5f5f5;

                img {
                    max-width: 146px;
                    min-width: 146px;
                    height: 146px;
                    object-fit: cover;
                }
            }

            .qr-code-btn {
                padding: 10px 16px;
                background: $primary;
                box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
                border: none;
                outline: none;
                border-radius: 25px;
                transition: all 0.3s ease;

                &:hover {
                    background: $primary;
                    box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
                }
            }
        }
    }

    //share btn
    .share-btn {
        a {
            padding: 10px 16px;
            background: $primary;
            box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
            border: none;
            outline: none;
            border-radius: 25px;
            transition: all 0.3s ease;

            &:hover {
                background: $primary;
                box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
            }
        }

        @media (max-width: 575px) {
            margin: 0 auto;
        }
    }

    //business hour
    &__timing {

        .business-card {
            padding: 20px !important;
            background-color: $bg-color;
            border-radius: 15px;
            border: 1px solid #283a5a;
            @media (max-width: 575px) {
                padding: 15px !important;
            }

            .calendar-icon {
                background-color: #283a5a;
                border-radius: 12px;
            }

            .business-hour-day-text {
                color: $primary !important;
            }

            .business-hour-time-text {
                color: $white !important;
            }

        }

        .business-card-today {
            border: 1px solid $primary;
        }

        //    &::before {
        //        content: '';
        //        position: absolute;
        //        left: -20px;
        //        height: 85%;
        //        top: 59.4%;
        //        transform: translateY(-50%);
        //        width: 40%;
        //        border-radius: 0 100px 100px 0;
        //        background: #141e30;
        //        box-shadow: inset 6px 6px 12px #000000, inset -6px -6px 12px #0c0c0c;
        //        z-index: 1;
        //    }
        //
        //    .shape-four {
        //        top: 55%;
        //        transform: translateY(-50%);
        //    }
        //
        //    .time-zone {
        //        background: $primary;
        //        box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
        //        border-radius: 25px;
        //        padding: 10px 13px;
        //        margin-bottom: 15px;
        //        transition: all 0.3s ease;
        //        cursor: default;
        //        z-index: 10;
        //        position: relative;
        //
        //        &:hover {
        //            background: $primary;
        //            box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
        //        }
        //
        //        span {
        //            font-weight: 500;
        //            font-size: 18px;
        //            color: $white;
        //        }
        //
        //        &:last-child {
        //            margin-bottom: 0;
        //        }
        //    }
    }
    //contact
    &__contact {
        .contact-form {
            input, textarea {
                padding: 0.688rem 0.75rem;
                background-color: #283a5a;
                border: 1px solid #364258;
                outline: none;
                color: $white;
                position: relative;
                z-index: 100;

                &:focus {
                    box-shadow: unset;
                    border: 1px solid $primary;
                }

                &::placeholder {
                    color: #e0e0e0;
                }
            }

            .contact-btn {
                padding: 10px 20px;
                background: $primary;
                box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
                border: round($number: 0);
                outline: none;
                transition: all 0.3s ease;

                &:hover {
                    background: $primary;
                    box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
                }
            }
        }
    }

    //language btn
    .language {

        ul {
            list-style: none;

            .lang-list {
                padding: 10px 20px;
                background: #4CA1F2;
                box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
                border: none;
                outline: none;
                border-radius:5px !important;
                transition: all 0.3s ease;
                width: -moz-fit-content;
                width: fit-content;

                .lang-head {
                    color: white;

                    i {
                        color: white;
                    }
                }

                .lang-hover-list {
                    margin: 15px 0 0;
                    font-size: 15px;
                    width: 115%;
                    left: unset !important;
                    right: 0;
                    min-width: 150px;

                    li {
                        padding: 5px 15px;

                        &:hover {
                            background-color: #f1faff !important;


                            a {
                                color: #009ef7 !important;
                            }
                        }

                        &.active {
                            background-color: #f1faff !important;

                            a {
                                color: #009ef7 !important;
                            }
                        }

                        a {
                            color: #5e6278 !important;
                            text-decoration: none;
                        }

                        img {
                            height: 20px !important;
                            width: 25px !important;
                        }
                    }
                }
            }
        }
    }
}

//Download btn
.vcard-three-btn {
    padding: 10px 20px;
    background: $primary;
    box-shadow: inset 6px 6px 12px #3172b1, inset -6px -6px 12px #51acff;
    border: none;
    outline: none;
    border-radius: 5px !important;
    transition: all 0.3s ease;

    i {
        color: $white;
    }

    &:hover {
        background: $primary;
        box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
    }

    @media (max-width: 575px) {
        margin: 0 auto;
    }
}

.gallery-vcard-block {
    height: 254px !important;
    width: 254px !important;
    max-height: 254px !important;
    max-width: 254px !important;
    object-fit: cover !important;
}

.gallery-profile {
    img {
        height: 227px !important;
    }
    a {
        .gallery-item {
            width: 216px !important;
            height: 220px !important;
        }
    }
}

.vcard-three{
    .language ul {
        .lang-list {
            .lang-hover-list {
                margin: 0 0 0;
                &.top-dropdown {
                    margin: -80px 0 0;
                }
            }
        }
    }
}
.vcard-three__testimonial {
    .testimonial-slider {
        .slick-slide {
            div {
                height: unset;
            }
        }
    }
}

.vcard-three__testimonial {
    .testimonial-slider {
        .testimonial-card {
            height: 178px !important;
        }
    }
}
@media (min-width: 350px) and (max-width: 573px) {
    #slick-slide30 {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    #slick-slide31 {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
.profile-description{
    font-size: 14px;
    text-align: center;
    color: white;
    h1,h2{
    color: white !important;
    }
}
#wrap{
    background-color: #ddd;
    padding: 50px 0;
}
#slider{
    width: 500px;
    margin: 0 auto;
    img{
        width: 100%;
    }
}
button{
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.slide-arrow{
    position: absolute;
    top: 99%;
    width: 15px !important;
}
.prev-arrow{
    z-index:99;
    left:137px;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 11px solid #ffffff;
    border-top: 11px  solid transparent;
    border-bottom: 11px  solid transparent;
    @media (max-width:575px) {
        left:40px;
    }
}
.next-arrow{
    z-index:99;
    right:137px;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 11px solid #ffffff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    @media (max-width:575px) {
        right:40px;
    }
}

.blog-next-arrow{
    z-index:99;
    left:137px;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 11px solid #ffffff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    @media (max-width:575px) {
        left:43px;
    }
}
.gallery-next-arrow{
    z-index:99;
    right:137px;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 11px  solid #ffffff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    @media (max-width:575px) {
        right:40px;
    }
}
.blog-prev-arrow{
    z-index:99;
    right:137px;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 11px solid #ffffff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-bottom: 11px solid transparent;
    @media (max-width:575px) {
        right:43px;
    }
}
.slide-arrow-blog {
    position: absolute;
    bottom: 0;
    width: 15px !important;
}

.slick-dots {
    bottom: -32px !important;
}

.vcard-three__blog .blog-slider .slick-list {
    margin-bottom: 15px !important;
}

.vcard-three__blog .blog-slider .slick-dots {
    margin-bottom: 204px !important;
}

.morelink {
    color: rgba($white, 0.8);
}

.lb-data .lb-number {
    display: none !important;
}

.social-icons {
    img {
        border-radius: 50% !important;
    }
}
.underline {
    background-color: $primary;
}
.font-primary {
    color:$primary !important;
}
.add-contact-btn{
    width: 185px !important;
    transition: all 0.3s ease;
    &:hover {
        background: $primary;
        box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
    }
}

.product-btn {
    padding: 10px 20px;
    background: $bg-color;
    box-shadow: inset 6px 6px 12px $dark, inset -6px -6px 12px $bg-color;
    border: round($number: 0);
    outline: none;
    transition: all 0.3s ease;

    &:hover {
        background: $bg-color;
        box-shadow: inset -6px -6px 12px $bg-color, inset 6px 6px 12px $dark;
    }
}

.see-all-product-btn{
    padding: 10px 20px;
    background: $primary;
    box-shadow: inset -6px -6px 12px #3172b1, inset 6px 6px 12px #51acff;
    border: round($number: 0);
    outline: none;
    transition: all 0.3s ease;

    &:hover {
        background: $primary;
        box-shadow: inset -6px -6px 12px #51acff, inset 6px 6px 12px #3172b1;
    }
}
