@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&display=swap");

.ease, .slider .imgContainer .image, .slider .imgContainer .image img, .slider .indicators li, .slider .carousel-item .content > * {
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}

body {
    font-family: "Work Sans", sans-serif;
    background-image: -webkit-gradient(linear, left top, right top, from(#fece6d), to(#eb008a));
    background-image: linear-gradient(90deg, #fece6d, #eb008a);
    height: 100vh;
}

.slider {
    padding: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 1rem;
    -webkit-box-shadow: 0rem 0.25rem 1.25rem 0.0625rem rgba(0, 0, 0, 0.25);
    box-shadow: 0rem 0.25rem 1.25rem 0.0625rem rgba(0, 0, 0, 0.25);
}

    .slider .imgContainer {
        min-height: 18.75rem;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        background-image: linear-gradient(-45deg, #febd3a, #B8006C);
        -webkit-box-shadow: 0rem 0.125rem 0.625rem 0.0625rem rgba(0, 0, 0, 0.15);
        box-shadow: 0rem 0.125rem 0.625rem 0.0625rem rgba(0, 0, 0, 0.15);
        border-radius: 1rem;
        overflow: hidden;
    }

        .slider .imgContainer .image {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            opacity: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .slider .imgContainer .image img {
                max-height: 100%;
                -webkit-transform: translateX(-40px);
                transform: translateX(-40px);
                position: relative;
            }

            .slider .imgContainer .image.active {
                opacity: 1;
            }

                .slider .imgContainer .image.active img {
                    -webkit-transform: translateX(0px);
                    transform: translateX(0px);
                }

    /* slider content*/
    .slider .content {
        background-color: #ffffff;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

        .slider .content .date {
            font-size: 0.875rem;
            font-weight: 600;
            color: gray;
            margin-bottom: 0rem;
            margin-top: 0.5rem;
        }

        .slider .content .title {
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .slider .content .desc {
            font-size: 0.875rem;
            text-align: justify;
            color: gray;
            margin-bottom: 1rem;
        }

        .slider .content .readMoreBtn {
            background: #B8006C;
            padding: 0.5rem 1.5rem;
            color: #ffffff;
            font-weight: 600;
            border: none;
            text-transform: uppercase;
            outline: 0;
        }

    /*carousel slide*/
    .slider .slide {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .slider .indicators {
        top: 0;
        bottom: auto;
        margin: 0.25rem;
    }

        .slider .indicators li {
            height: 0.625rem;
            width: 0.625rem;
            background-color: #b3b3b3;
            border-radius: 1.25rem;
            background-clip: initial;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            border: none;
            margin: 0.25rem;
        }

            .slider .indicators li.active {
                width: 1.875rem;
                background-color: #B8006C;
            }

    /*animation*/
    .slider .carousel-item .content > * {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    .slider .carousel-item.active .content > * {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }

        .slider .carousel-item.active .content > *:nth-child(1) {
            -webkit-transition-delay: 0.05s;
            transition-delay: 0.05s;
        }

        .slider .carousel-item.active .content > *:nth-child(2) {
            -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

        .slider .carousel-item.active .content > *:nth-child(3) {
            -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
        }

        .slider .carousel-item.active .content > *:nth-child(4) {
            -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
        }

        .slider .carousel-item.active .content > *:nth-child(5) {
            -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
        }

        .slider .carousel-item.active .content > *:nth-child(6) {
            -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
        }

        .slider .carousel-item.active .content > *:nth-child(7) {
            -webkit-transition-delay: 0.35s;
            transition-delay: 0.35s;
        }

        .slider .carousel-item.active .content > *:nth-child(8) {
            -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
        }

        .slider .carousel-item.active .content > *:nth-child(9) {
            -webkit-transition-delay: 0.45s;
            transition-delay: 0.45s;
        }

        .slider .carousel-item.active .content > *:nth-child(10) {
            -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
        }

body {
    background: #f4eff2 !important;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

header {
    background: #ffffff;
    -webkit-box-shadow: 0px 3px 6px #00000029;
    box-shadow: 0px 3px 6px #00000029;
}

    header .logo {
        padding: 10px 0px;
    }

    header .top-link a {
        color: #000;
    }

        header .top-link a:hover {
            color: #07c2c4;
        }

    header .top-link .icon-bg {
        color: #69207E !important;
        font-family: 'Open Sans', sans-serif !important;
        background: #fff;
        border-radius: 100px;
        padding: 0px;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        -webkit-box-shadow: 0px 3px 6px #00000029;
        box-shadow: 0px 3px 6px #00000029;
    }

    header .top-link .dropdown-item:hover {
        background-color: #F1B8DA;
        color: #000;
    }

    header .top-link .number1 {
        display: none;
    }

    header .top-link .dropdown-toggle::after {
        position: relative;
        display: inline-block;
        padding: 5px;
        -webkit-box-shadow: 3px -3px 0 0 #000 inset;
        box-shadow: 3px -3px 0 0 #000 inset;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border-top: 0px;
    }

    header .top-link .cstm-btn {
        background: #07c2c4;
        color: #fff;
    }

        header .top-link .cstm-btn:hover {
            background-color: #B8006C;
            color: #fff;
        }

    header .dropdown-item {
        font-size: 16px;
        font-weight: 400;
    }

        header .dropdown-item:active {
            background-color: #cccccc;
        }

    header .in-navigation {
        background-color: #07c2c4;
    }

        header .in-navigation .nav-link {
            color: #fff;
        }

            header .in-navigation .nav-link::after {
                position: relative;
                display: inline-block;
                padding: 4px;
                -webkit-box-shadow: 2px -2px 0 0 #fff inset;
                box-shadow: 2px -2px 0 0 #fff inset;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                border-top: 0px;
            }

        header .in-navigation .active .nav-link {
            background: #ffffffd1;
            color: #07c2c4;
            font-weight: 600;
            border-radius: 2px;
        }

        header .in-navigation .upgrade {
            background: #AC1E72;
            padding-left: 15px;
            padding-right: 15px;
            line-height: 24px;
        }

        header .in-navigation .form-control {
            border-radius: 2px !important;
            background-color: #b50404;
            min-width: 300px;
            border: 0px;
            line-height: 36px;
            min-height: 40px;
            color: #000;
            position: relative;
            padding-left: 40px;
        }

        header .in-navigation .icon1 {
            font-size: 24px;
            left: 10px;
            position: absolute;
            z-index: 9999;
            color: #fff;
            line-height: 40px;
        }

        header .in-navigation .nav-item .dropdown-item:hover {
            background-color: #F1B8DA;
        }

        header .in-navigation .menu1 {
            color: #fff;
            font-size: 16px;
        }

.main-content {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

    .main-content .profile_block {
        background: transparent linear-gradient(24deg, #ECBB00 0%, #07c2c4 100%) 0% 0% no-repeat padding-box;
        -webkit-box-shadow: 0px 0px 10px #00000029;
        box-shadow: 0px 0px 10px #00000029;
        border-radius: 4px;
        padding: 20px;
    }

        .main-content .profile_block .profile-img {
            padding: 0px;
            margin: 0px auto;
            overflow: hidden;
        }

            .main-content .profile_block .profile-img img {
                width: 100%;
            }

        .main-content .profile_block .progress-link {
            padding: 10px 0px;
        }

            .main-content .profile_block .progress-link .progress-val {
                font-weight: 600;
                padding-bottom: 10px;
                color: #fff;
            }

            .main-content .profile_block .progress-link .progress {
                border-radius: 5rem;
                padding: 3px;
                background: #ffffff7a;
            }

                .main-content .profile_block .progress-link .progress .progress-bar {
                    background: #fff;
                    border-radius: 4rem;
                    color: #000;
                }

        .main-content .profile_block .profile-links {
            padding-top: 20px;
        }

            .main-content .profile_block .profile-links .list-group-item {
                background: transparent;
                color: #fff;
                padding: 10px 0px;
                border-color: #ffffff54;
            }

                .main-content .profile_block .profile-links .list-group-item .profile-name {
                    font-size: 16px;
                    font-weight: 600;
                    margin-bottom: 0px;
                }

                    .main-content .profile_block .profile-links .list-group-item .profile-name .pro-id {
                        font-weight: normal;
                        display: block;
                        font-size: 14px;
                    }

                .main-content .profile_block .profile-links .list-group-item a {
                    color: #fff;
                }

                .main-content .profile_block .profile-links .list-group-item .i-crcl {
                    border-radius: 50%;
                    font-size: 15px;
                    border: solid 1.5px #fff;
                    padding: 4px 5px 3px 5px;
                    font-weight: bold;
                    line-height: 18px;
                }

                .main-content .profile_block .profile-links .list-group-item .i-crcl-n {
                    border-radius: 50%;
                    font-size: 15px;
                    border: solid 1.5px #000;
                    padding: 4px 5px 3px 5px;
                    font-weight: bold;
                    color: #000;
                    line-height: 18px;
                }

    .main-content .Activity_Summary {
        color: #000000;
    }

        .main-content .Activity_Summary .h-title {
            font-size: 26px;
            font-weight: 500;
            padding-bottom: 10px;
            padding-top: 10px;
        }

        .main-content .Activity_Summary .card-group {
            -webkit-box-shadow: 1px 1px 8px #00000017;
            box-shadow: 1px 1px 8px #00000017;
            margin-bottom: 15px;
        }

            .main-content .Activity_Summary .card-group .card {
                border: 0px;
                border-right: solid 1px #7070702b;
                text-align: center;
            }

                .main-content .Activity_Summary .card-group .card:last-child {
                    border-right: 0px;
                }

            .main-content .Activity_Summary .card-group .card-title {
                font-size: 36px;
                font-weight: bold;
                margin-bottom: 0px;
            }

            .main-content .Activity_Summary .card-group .card-text {
                color: #909090;
            }

    .main-content .pack-info {
        margin-top: 20px;
    }

        .main-content .pack-info .h-title {
            font-size: 26px;
            font-weight: 500;
            padding-bottom: 10px;
            padding-top: 10px;
        }

        .main-content .pack-info .card {
            -webkit-box-shadow: 1px 1px 8px #00000017;
            box-shadow: 1px 1px 8px #00000017;
            margin-bottom: 15px;
            border: 0px;
        }

            .main-content .pack-info .card .date-frm {
                font-size: 26px;
                color: #07c2c4;
                padding: 0px 20px;
                font-weight: bold;
            }

            .main-content .pack-info .card .pack-table {
                margin: 20px 0px 0px;
            }

                .main-content .pack-info .card .pack-table table {
                    margin: 0px;
                }

                    .main-content .pack-info .card .pack-table table td {
                        color: #909090;
                        font-size: 14px;
                    }

                        .main-content .pack-info .card .pack-table table td span {
                            font-weight: bold;
                        }

    .main-content .rec-added-profil {
        margin: 15px 0px;
    }

        .main-content .rec-added-profil .card {
            -webkit-box-shadow: 1px 1px 8px #00000017;
            box-shadow: 1px 1px 8px #00000017;
            border: 0px;
        }

            .main-content .rec-added-profil .card .card-img {
                padding: 15px;
                height: auto;
            }

                .main-content .rec-added-profil .card .card-img img {
                    width: 100%;
                }

            .main-content .rec-added-profil .card .card-body {
                padding-top: 0px;
            }

                .main-content .rec-added-profil .card .card-body .card-title {
                    color: #07c2c4;
                    font-weight: 600;
                }

                .main-content .rec-added-profil .card .card-body dl {
                    font-size: 14px;
                    margin-bottom: 0px;
                }

                    .main-content .rec-added-profil .card .card-body dl dt {
                        font-weight: 600;
                    }

                    .main-content .rec-added-profil .card .card-body dl dd {
                        color: #909090;
                        margin-bottom: 0px;
                    }

            .main-content .rec-added-profil .card .card-footer .btn {
                background: #FDBD15;
                border: 0px;
                color: #000;
            }

    .main-content .icon2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .main-content .reg-block1 {
        background: #07c2c4;
    }

        .main-content .reg-block1 .g-outline {
            border: solid 2px #fff;
            margin-left: 20px;
            background: #FFFFFF24;
            min-width: 150px;
        }

    .main-content .trst-icon .card {
        background: transparent;
        border-top: 0px;
        border-bottom: 0px;
        margin: 20px 0px;
        border-left: 0px;
    }

        .main-content .trst-icon .card:last-child {
            border-right: 0px;
        }

    .main-content .trst-icon .img-80px {
        width: 100px;
    }

    .main-content .trst-icon .img-40px {
        width: 60px;
    }

    .main-content .trst-icon .img-60px {
        width: 80px;
    }

    .main-content .contact-blk {
        margin-top: 30px;
        margin-bottom: 30px;
    }

        .main-content .contact-blk h2 {
            padding-bottom: 20px;
            color: #07c2c4;
        }

        .main-content .contact-blk .list-group-item {
            padding-left: 0px;
        }

            .main-content .contact-blk .list-group-item p {
                color: #656565;
            }

        .main-content .contact-blk .map {
            -webkit-box-shadow: 0px 0px 10px #00000029;
            box-shadow: 0px 0px 10px #00000029;
        }

    .main-content .login {
        -webkit-box-shadow: 0px 0px 6px #00000021;
        box-shadow: 0px 0px 6px #00000021;
        border-radius: 0px;
        margin-left: 15px;
        margin-right: 15px;
    }

        .main-content .login .card-body {
            padding: 20px;
        }

            .main-content .login .card-body .card-title {
                font-size: 36px;
                margin-bottom: 30px;
            }

            .main-content .login .card-body .form-control {
                border-radius: 2px;
                height: 50px;
                line-height: 50px;
            }

        .main-content .login .cstm-btn {
            background: #07c2c4;
            color: #fff;
            border-radius: 2px;
            height: 50px;
        }

    .main-content .login-img {
        position: relative;
    }

        .main-content .login-img img {
            height: 100%;
        }

        .main-content .login-img::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(60deg, #ECBB00 0%, #07c2c4 100%) 0% 0% no-repeat padding-box;
            opacity: .6;
        }

        .main-content .login-img .login-txt {
            position: absolute;
            z-index: 9999;
            font-size: 46px;
            color: #fff;
            font-weight: 600;
            text-align: center;
            left: 16%;
            top: 40%;
        }

    .main-content .register {
        -webkit-box-shadow: 0px 0px 6px #00000021;
        box-shadow: 0px 0px 6px #00000021;
        border-radius: 0px;
    }

        .main-content .register .ph-num {
            width: 60px;
        }

        .main-content .register .steps_block {
            background: #fcedf7;
            padding: 15px;
        }

        .main-content .register .form-control {
            border-radius: 2px;
            height: 50px;
        }

        .main-content .register .gendr-b {
            border-radius: 2px;
            height: 50px;
            background: #F2F2F2;
            padding: 15px;
        }

        .main-content .register .cstm-btn {
            background: #07c2c4;
            color: #fff;
            border-radius: 2px;
            height: 50px;
        }

        .main-content .register .reg-stps .active {
            color: #07c2c4;
        }

            .main-content .register .reg-stps .active .steps {
                background: #07c2c4;
            }

        .main-content .register .reg-stps .nav-link {
            line-height: 40px;
        }

        .main-content .register .reg-stps .steps {
            background: #C2C2C2;
            padding: 4px 10px;
            border-radius: 50px;
            margin-right: 10px;
            color: #fff;
        }

footer {
    background: #fff;
    padding: 30px 0px;
    -webkit-box-shadow: 0px 0px 6px #00000029;
    box-shadow: 0px 0px 6px #00000029;
    position: relative;
    bottom: 0px;
}

    footer .f-title {
        font-size: 28ox;
        color: #000;
        font-weight: 600;
    }

    footer .list-group-item {
        border: 0px;
        padding: 3px 0px;
        font-size: 14px;
    }

        footer .list-group-item a {
            color: #909090;
        }

            footer .list-group-item a:hover {
                color: #07c2c4;
            }

    footer .text1 {
        font-size: 14px;
    }

        footer .text1 a {
            color: #07c2c4;
        }

.text1 {
    font-size: 16px;
    color: #909090;
}

.font-24 {
    font-size: 24px !important;
}

.mdi {
    font-size: 16px;
    vertical-align: middle;
    position: relative;
    top: -2px !important;
}

.bg-img {
    position: relative;
    min-height: 560px;
    display: block;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background: url("../images/10047.jpg") top center no-repeat;
    width: 100%;
}

    .bg-img:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(60deg, #ECBB00 0%, #07c2c4 100%) 0% 0% no-repeat padding-box;
        opacity: .6;
    }

    .bg-img .display-4 {
        font-weight: 500;
        margin-top: 120px;
    }

    .bg-img .reg-form {
        -webkit-box-shadow: 0px 3px 6px #00000029;
        box-shadow: 0px 3px 6px #00000029;
    }

        .bg-img .reg-form .form-control {
            border: 0px;
            color: #9A9A9A;
            padding: 0px;
        }

            .bg-img .reg-form .form-control:focus {
                -webkit-box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25);
                box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25);
            }

        .bg-img .reg-form .ph-num span {
            color: #000;
            line-height: 36px;
            padding-right: 10px;
        }

        .bg-img .reg-form .reg-btn {
            background: #FDBD15;
            border: 0px;
            border-radius: 0px;
            color: #000;
            font-size: 18px;
        }

        .bg-img .reg-form .card {
            border: 0px;
        }

.search-blk .h-title {
    font-size: 26px;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 40px;
}

.search-blk .reg-btn {
    background: #FDBD15;
    border: 0px;
    border-radius: 0px;
    color: #000;
    font-size: 18px;
}

.search-blk .form-control {
    border-radius: 0px !important;
    color: #9A9A9A;
}

.f-profile {
    margin-bottom: 70px;
}

    .f-profile .rec-added-profil {
        padding: 10px 0px;
    }

    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-inner .carousel-item.active,
    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-item-next,
    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-item-prev {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-item-right.active,
    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-item-next {
        -webkit-transform: translateX(20%);
        transform: translateX(20%);
    }

    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-item-left.active,
    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-item-prev {
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%);
    }

    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-item-right,
    .f-profile .carousel-multi-item.v-2.product-carousel .carousel-item-left {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .f-profile .fuchsia-rose-text {
        color: #db0075;
    }

    .f-profile .aqua-sky-text {
        color: #5cc6c3;
    }

    .f-profile .mimosa-text {
        color: #F0C05A;
    }

    .f-profile .list-inline-item .fas, .f-profile .list-inline-item .far {
        font-size: .8rem;
    }

    .f-profile .chili-pepper-text {
        color: #9B1B30;
    }

    .f-profile .carousel-multi-item .controls-top .btn-floating {
        color: #000;
        width: 0px;
        font-size: 40px;
    }

    .f-profile .carousel-multi-item .carousel-indicators li {
        height: .75rem;
        width: .75rem;
        max-width: .75rem;
        background-color: #BEBEBE;
        border-radius: 50%;
    }

    .f-profile .carousel-multi-item .carousel-indicators .active {
        height: 1rem;
        width: 1rem;
        max-width: 1rem;
        background-color: #07c2c4;
    }

    .f-profile .carousel-multi-item .carousel-indicators {
        margin-bottom: -2rem;
    }

.component-accordion1 {
    margin: 0px;
}

    .component-accordion1 .srch-btn1 {
        display: none;
    }

    .component-accordion1 .cstm-hdr1 {
        background: #07c2c4;
        color: #fff;
        font-size: 18px;
        padding: 15px;
        margin-bottom: 0px;
    }

    .component-accordion1 .custom-control-input:checked ~ .custom-control-label::before {
        border-color: #07c2c4;
        background-color: #07c2c4;
    }

    .component-accordion1 .custom-control {
        margin-bottom: 10px;
    }

    .component-accordion1 .custom-checkbox .custom-control-label::before {
        border-radius: 0px;
    }

    .component-accordion1 .panel-group:last-child {
        margin-bottom: 15px;
    }

    .component-accordion1 .panel-group .panel {
        border: 0 none;
        border-bottom: solid 1px #eee;
        margin-bottom: 0px;
    }

    .component-accordion1 .panel-group .panel-heading {
        background-color: #ffffff;
        border-radius: 5px 5px 0 0;
        color: #444;
        padding: 0;
    }

        .component-accordion1 .panel-group .panel-heading h4 {
            margin: 0;
        }

        .component-accordion1 .panel-group .panel-heading a {
            background: #ffffff;
        }

            .component-accordion1 .panel-group .panel-heading a.collapsed {
                background: #ffffff;
            }

            .component-accordion1 .panel-group .panel-heading a:hover.active, .component-accordion1 .panel-group .panel-heading a.active {
                color: #3ec1d5;
            }

    .component-accordion1 .panel-group .panel-title a {
        border-radius: 5px 5px 0 0;
        color: #888;
        display: block;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5;
        position: relative;
        padding: 15px;
        -webkit-transition: color .2s ease-in-out;
        transition: color .2s ease-in-out;
    }

        .component-accordion1 .panel-group .panel-title a:hover {
            color: #444;
            text-decoration: none;
        }

        .component-accordion1 .panel-group .panel-title a.collapsed::after, .component-accordion1 .panel-group .panel-title a::after {
            content: "\e313";
            font-family: "Material Design Icons";
            font-size: 18px;
            line-height: 60px;
            padding-left: 20px;
            position: absolute;
            right: 19px;
            top: 0;
        }

        .component-accordion1 .panel-group .panel-title a:after {
            content: "\e316";
        }

    .component-accordion1 .panel-body {
        background: #ffffff;
        color: #888;
        padding: 20px;
    }

    .component-accordion1 .panel-group .panel-heading + .panel-collapse > .panel-body,
    .component-accordion1 .panel-group .panel-heading + .panel-collapse > .list-group {
        border-top: 1px solid #eee;
    }

.search_reasult .card-title {
    color: #07c2c4;
    font-size: 24px;
    margin-bottom: 0px;
}

.search_reasult .small-text {
    color: #909090;
    font-size: 14px;
    line-height: 24px;
}

.search_reasult .card {
    padding: 15px;
    -webkit-box-shadow: 0px 0px 8px #0000000d;
    box-shadow: 0px 0px 8px #0000000d;
    margin-bottom: 15px;
    border: 0px;
}

    .search_reasult .card .card-body {
        padding: 0px;
    }

        .search_reasult .card .card-body .card-title {
            margin-bottom: 15px;
        }

        .search_reasult .card .card-body .about {
            font-size: 14px;
            background: #EAEAEA;
            padding: 5px;
            margin-bottom: 10px;
        }

            .search_reasult .card .card-body .about span {
                color: #07c2c4;
            }

        .search_reasult .card .card-body dl {
            margin-bottom: 0px;
        }

        .search_reasult .card .card-body dt {
            color: #2C2C2C;
            font-size: 14px;
        }

        .search_reasult .card .card-body dd {
            margin-bottom: 0px;
            font-size: 14px;
            color: #6C6C6C;
            margin-bottom: 5px;
        }

        .search_reasult .card .card-body .nav-link {
            padding: 5px 0px;
        }

            .search_reasult .card .card-body .nav-link:hover {
                color: #07c2c4;
            }

                .search_reasult .card .card-body .nav-link:hover .icon-l {
                    background: #07c2c4;
                    color: #fff;
                }

            .search_reasult .card .card-body .nav-link .icon-l {
                background: #EBEBEB;
                color: #000;
                padding: 6px;
                border-radius: 2px;
                font-size: 24px;
                margin-right: 10px;
            }

        .search_reasult .card .card-body .cstm-btn {
            display: block;
            background: #07c2c4;
            text-align: center;
            border-radius: 2px;
            color: #fff;
        }

            .search_reasult .card .card-body .cstm-btn:hover {
                color: #fff;
            }

.search_reasult .pagination {
    border-radius: 2px !important;
}

    .search_reasult .pagination .page-item .page-link {
        color: #07c2c4;
    }

        .search_reasult .pagination .page-item .page-link:hover {
            z-index: 2;
            color: #fff;
            text-decoration: none;
            background-color: #07c2c4;
            border-color: #07c2c4;
        }

    .search_reasult .pagination .page-item.disabled .page-link {
        color: #6c757d;
    }

    .search_reasult .pagination .page-item:first-child .page-link {
        margin-left: 0;
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }

    .search_reasult .pagination .page-item:last-child .page-link {
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
    }

.profile1 .card-img {
    min-height: 100%;
    cursor:pointer;
}

.profile1 .card-title {
    color: #000;
    font-size: 24px;
    margin-bottom: 0px;
}

    .profile1 .card-title span {
        color: #07c2c4;
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

.profile1 .small-text {
    color: #909090;
    font-size: 14px;
    line-height: 24px;
}

.profile1 .card {
    padding: 15px;
    -webkit-box-shadow: 0px 0px 8px #0000000d;
    box-shadow: 0px 0px 8px #0000000d;
    margin-bottom: 15px;
    border: 0px;
}

    .profile1 .card .card-body {
        padding: 0px;
    }

        .profile1 .card .card-body .card-title {
            margin-bottom: 15px;
        }

        .profile1 .card .card-body .about {
            font-size: 14px;
            background: #EAEAEA;
            padding: 5px;
            margin-bottom: 10px;
        }

            .profile1 .card .card-body .about span {
                color: #07c2c4;
            }

        .profile1 .card .card-body dl {
            margin-bottom: 0px;
        }

        .profile1 .card .card-body dt {
            color: #2C2C2C;
            font-size: 14px;
            font-weight: 600;
        }

        .profile1 .card .card-body dd {
            margin-bottom: 0px;
            font-size: 14px;
            color: #6C6C6C;
            margin-bottom: 5px;
        }

        .profile1 .card .card-body .nav-link {
            padding: 5px 0px;
        }

            .profile1 .card .card-body .nav-link:hover {
                color: #07c2c4;
            }

                .profile1 .card .card-body .nav-link:hover .icon-l {
                    background: #07c2c4;
                    color: #fff;
                }

            .profile1 .card .card-body .nav-link .icon-l {
                background: #EBEBEB;
                color: #000;
                padding: 6px;
                border-radius: 2px;
                font-size: 24px;
                margin-right: 10px;
            }

    .profile1 .card .nav-tabs .nav-item .active {
        color: #07c2c4 !important;
        border: 0px;
        border-bottom: solid 2px #07c2c4;
    }

    .profile1 .card .nav-tabs .nav-item .nav-link {
        color: #676767;
    }

    .profile1 .card .tab-content .tab-pane {
        padding: 1.5rem;
    }

        .profile1 .card .tab-content .tab-pane .border-bottom {
            padding: 20px 0px;
        }

        .profile1 .card .tab-content .tab-pane .about {
            font-size: 16px;
            color: #909090;
        }

        .profile1 .card .tab-content .tab-pane .p-info h2 {
            color: #07c2c4;
            font-size: 24px;
        }

            .profile1 .card .tab-content .tab-pane .p-info h2 .btn {
                font-size: 16px;
                color: #07c2c4;
            }

        .profile1 .card .tab-content .tab-pane .p-info dt {
            font-weight: 600;
        }

@media (min-width: 320px) and (max-width: 780px) {
    header .top-link .phone {
        display: none;
    }

    header .top-link .number1 {
        display: block;
    }

    .bg-img .display-4 {
        font-size: 32px;
        margin-top: 20px;
    }

    .main-content .pack-info .card .date-frm {
        padding: 0px;
        display: block;
        font-size: 18px;
    }

    .main-content .rec-added-profil {
        margin: 0px;
    }

    .main-content .g-outline {
        margin-top: 20px;
    }

    .main-content .trst-icon .card {
        border: 0px;
    }

    .main-content .login-img {
        display: none;
    }

    .main-content .register .reg-stps {
        display: none;
    }

    .component-accordion1 {
        margin: 0px;
    }

        .component-accordion1 .srch-btn1 {
            display: block;
            color: #fff;
            margin-top: -3px;
        }
}

@media (min-width: 768px) {
    .slider .indicators {
        top: auto;
        bottom: 0;
    }
}

/*indicators*/
@media (min-width: 992px) {
    .slider .indicators {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        left: auto;
        margin: auto 1rem;
        bottom: 0;
        top: 0;
    }

        .slider .indicators li.active {
            height: 1.875rem;
            width: 0.625rem;
        }
}
/*# sourceMappingURL=custom.css.map */

.customError {
    border: 1px solid red
}

.input-validation-error {
    border-color: red;
}