/* header section start */
header {
    background: var(--blue-color);
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .navbar-brand img {
    width: 100%;
    max-width: 250px;
}

header .navbar-nav .features_list .sub_menu {
    position: absolute;
    width: auto;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    overflow: hidden;
    z-index: 100;
    top: 54px;
    width: 250px;
}

header .navbar-nav .features_list:hover .sub_menu {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
    top: 66px;
}

header .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0 20px;
    transition: 0.5s;
    display: flex;
    align-items: center;
}

header .navbar-nav .nav-item .nav-link:hover {
    color: var(--main-color);
}


header .navbar-light .navbar-nav .nav-link.active,
header .navbar-nav .features_list .sub_menu li a.active {
    color: var(--main-color);
}

header .navbar-nav .features_list .sub_menu li a {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

header .navbar-nav .features_list .sub_menu li:before {
    position: absolute;
    left: -3px;
    top: 7px;
    width: 0px;
    height: 65%;
    background: var(--main-color);
    border-radius: 0px 5px 5px 0;
    content: '';
    transition: 0.3s;
}

header .navbar-nav .features_list .sub_menu li:hover::before {
    width: 6px;
}

header .navbar-nav .features_list .sub_menu li:hover a {
    color: var(--main-color);
    padding-left: 5px;
}

header .navbar-nav .features_list .sub_menu li {
    position: relative;
    padding: 8px 15px;
    border-bottom: 1px solid #80808029;
}

header .navbar-nav .nav-item:last-child .nav-link img {
    width: 30px;
    margin-right: 10px;
}








/* header section end */


/* hero section start */
.hero_section {

    background: linear-gradient(#00000000, #730037d4), url(../images/main-banner-bg.jpg);
    background-size: cover;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero_content h1 span {
    color: var(--main-color);
}

.heart-shape {
    position: relative;
}

.heart-shape img {
    width: 80px;
    position: absolute;
    top: -66px;
    right: 297px;
    animation: zmin3 8s linear infinite
}

@keyframes zmin3 {
    0% {
        transform: translateY(10px);
    }

    20% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.coll_btn .call_bg {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s all ease;
    cursor: pointer;
}

.coll_btn p {
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    text-transform: uppercase;
    color: #fff;
}

.coll_btn a {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--main-color);
    text-decoration: none;
}

.hero_content h5 {
    font: normal normal 700 18px Inter;
    color: var(--main-color);
}

.hero_content {
    position: relative;
    z-index: 1;
}

.hero_img {
    height: 100%;
}

.hero_img img {
    width: 95%;
    position: absolute;
    bottom: -1px;
}

.wating_img img {
    position: absolute;
    left: -40px;
    top: 28%;
    animation: heroimg 2s infinite alternate ease-in-out;
}

@keyframes heroimg {
    0% {
        transform: translate(0px, 10px);
    }

    100% {
        transform: translate(0px, -50px);
    }
}

.main_hero_img {
    position: relative;
}

.counter_main {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 15px 20px 15px 35px;
}

.counter_main:before,
.counter_main:after {
    clip-path: polygon(0 0, 92% 0, 100% 40%, 100% 70%, 100% 100%, 30% 100%, 0 100%, 0% 30%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    background: var(--main-color);
    z-index: -1;
}

.counter_main:after {
    top: -4px;
    background: #ffffff1a;
    z-index: -7;
    left: 4px;
}

.counter_main ul li {
    border-left: 1px solid #eeeeee4a;
    padding: 0px 20px;
}

.counter_main ul li h3 {
    font: normal normal 800 40px Inter;
    color: var(--blue-color);
}

.counter_main ul li p {
    font: normal normal 600 14px Inter;
    color: #ffffff;
}

.counter_main ul li span {
    font: normal normal 600 40px Inter;
    color: var(--blue-color);
    line-height: 30px;
    margin-left: 3px;
}

/* hero section end */


/* services section start */
.services_box {
    padding: 25px 30px;
    position: relative;
    z-index: 1;
    background: #0e1120;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.services_box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 99.5%;
    width: 99.5%;
    content: '';
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    background: #ffffff;
    z-index: -1;
    bottom: 1px;
    margin: auto;
    right: 0;
}

.services_box:after {
    width: 0%;
    height: 0%;
    background: var(--blue-color);
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    z-index: -1;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 0.5s;
}

.services_box h4 {
    color: #fff;
}

.services_box::after {
    width: 100%;
    height: 100%;
}

.services_box h4 {
    transition: 0.5s;
}

.services_box .services_img {
    background: var(--main-color);
    width: 65px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    border-radius: 2px;
    margin: 0 auto;
}

.services_box .services_img img {
    width: 35px;
}

.services_box .services_img:before {
    position: absolute;
    width: 95%;
    height: 96%;
    content: '';
    background: var(--blue-color);
    z-index: -1;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    left: 2px;
    border-radius: 2px;
}

.services_section {
    background-color: #FDFAF8;
}

.read_more {
    position: relative;
    width: fit-content;
}

.read_more .scrolldown-btn {
    right: -9px;
}

.read_more a {
    color: var(--main-color);
    font: normal normal 600 14px Inter;
    text-decoration: none;
}

/* services section end */


/* main form section start */
.form_section {
    background: var(--blue-color);
    position: relative;
}

.form_section::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/bg-map.png);
    opacity: 0.5;
}

.main_form_box .banner__list label {
    font: normal normal 500 14px Inter;
    color: #fff;
    margin-bottom: 10px;
}

.main_form_box .banner__list .banner__inputlist select {
    width: 100%;
    padding: 13px 15px;
    font: normal normal 600 14px Inter;
    outline: none;
    background: transparent;
    border: 0;
}

.main_form_box .banner__list .banner__inputlist:before {
    width: 99%;
    height: 97%;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    z-index: -1;
    right: 0;
    margin: auto;
    bottom: 0;
}

.main_form_box .banner__list .banner__inputlist {
    position: relative;
    background: var(--main-color);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}


.main_form_box .banner__list label span {
    color: var(--main-color);
}

/* main form section end */


/* about section start */
.about_content h3 span,
.about_content h2 span {
    color: var(--main-color);
    padding-left: 6px;
}

.about_work img {
    width: 25%;
}

.about_work p {
    font-size: 14px;
}

/* about section end */


/* our happy customer section start */

.our_customer_section {
    background: #f1f7fe;
}

.our_customer_section .acamic_img img,
.profile_tabs-main .acamic_img img,
.search-widget_post .widget-content .acamic_img .profile_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: 1;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.acamic_img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.acamic_img:before {
    position: absolute;
    left: -5px;
    top: -4px;
    height: 102%;
    background: #adadada6;
    content: '';
    width: 103%;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.customer_details {
    position: absolute;
    bottom: 0px;
    z-index: 1000;
    padding: 0px 20px;
    width: 100%;
    clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.customer_details h4 {
    color: #fff;
    padding-top: 15px;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 17px;
}

.acamic_img p {
    color: var(--main-color);
}

.customer_details p i {
    color: var(--main-color);
    padding-right: 5px;
}

.customer_details:before {
    background: var(--blue-color);
    position: absolute;
    left: 0;
    content: '';
    height: 100%;
    width: 100%;
    z-index: -1;
    filter: blur(8px);
    -webkit-filter: blur(20px);
}

.customer_details:after {
    width: 100%;
    height: 2px;
    top: 0;
    position: absolute;
    left: 0;
    content: '';
    background: linear-gradient(to right, #ff1182, black, #ff1182);
}

.main_next_prev {
    position: absolute;
    top: 25px;
    width: 100%;
    right: 21px;
    font-size: 15px;
}

.main_next_prev .swiper-button-prev {
    width: 173%;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: none;
}

.swiper-button-prev .scrolldown-btn {
    left: 0px;
    transform: rotate(90deg);
}

.swiper-button-prev .main_btn a {
    left: 36px;
}

/* our happy customer section end */


/* features seciton start */

.features_section {
    background-color: #fff;
}

.features_box {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 25px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.features_img img {
    width: 55px;
    object-fit: cover;
}

.features_box:before,
.features_box:after {
    position: absolute;
    height: 200px;
    width: 200px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 9;
    transform: scale(0);
    content: "";
    transition: all 600ms ease;
}

.features_box:hover {
    background-color: #0e1120;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .20);
}

.features_box:hover:after {
    transform: scale(1.7);
    opacity: .10;
    transition-delay: 400ms;
}

.features_box:hover:before {
    transform: scale(1);
    opacity: .20;
    transition-delay: 300ms;
}

.features_box:hover p {
    color: #ffffffdb !important;
}

.features_box:hover h4 {
    color: #ffffffdb !important;
}

.features_box_2 {
    background: var(--blue-color);
}

/* features seciton end */


/* review section start */
.review_section {
    background: url(../images/home/review-bg.png);
    height: 100%;
    width: 100%;
    background-size: cover;
}

.review_box {
    background: #fff;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 17px 17px;
    position: relative;
    border-radius: 10px;
}

.review_box::after {
    left: 45px !important;
}

.review_box::before,
.review_box::after {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 90px;
    margin: auto;
    width: 24px;
    content: '';
    background: url(../images/home/left-quote.png);
    height: 45px;
    background-size: cover;
}

.review_img {
    position: absolute;
    left: 0;
    top: -48px;
    right: 0;
    justify-content: center;
    display: flex;
    width: 90px;
    height: 90px;
    background: #fff;
    margin: auto;
    border-radius: 50%;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.review_img img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
}

.review_content {
    margin-top: 45px;
}

.review_content h6 {
    font: normal normal 500 14px Inter;
    color: var(--main-color);
}

.review_content p {
    font-size: 13px;
}

.rounder {
    height: 75px;
    width: 75px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    border: 3px solid var(--main-color);
    animation: slideDas 5s infinite linear;
}

@keyframes slideDas {
    100% {
        transform: rotate(360deg);
    }
}

.rounder:before,
.rounder:after {
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--main-color);
    content: '';
}

.rounder:before {
    left: 7px;
    top: 0;
}

.rounder:after {
    right: 0;
    bottom: 7px;
}

/* review section end */


/*area secion start  */

.big_meet_img:before {
    width: 102%;
}

.area_section .acamic_img img {
    height: 500px;
    object-position: 100% 100%;
}

.customer_details a {
    font: normal normal 500 14px Inter;
    text-decoration: none;
    color: var(--main-color);
    padding-right: 15px;
    display: flex;
}

.area_section .acamic_img:hover:after {
    height: 100%;
    width: 100%;
    opacity: 1;
    transform: scaleY(1);
}

.area_section .acamic_img:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 0%;
    background: #0000004f;
    content: 'Meet Singles in Your Area';
    z-index: 1;
    transition: 0.5s;
    right: 0;
    margin: auto;
    bottom: 0;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0px 3px 0px #5b5b5b;
    opacity: 0;
    transform: scaleY(0);
}

.area_section .acamic_img img {
    transition: 0.5s;
    overflow: hidden;
}

.area_section .acamic_img img:hover {
    transform: scale(1.2);
}

/* area secion end */


/* news latter section start */
.news_latter_section .news_container {
    background: var(--blue-color);
    border-radius: 5px 30px 5px 30px;
    padding: 20px 20px 20px 40px;
    position: relative;
    top: 55px;
    z-index: 1;
    box-shadow: 0px 7px 20px 0px #8484840a;
}

.contac_cont {
    margin-left: 15px;
}

.news_latter_text a {
    font-size: 45px;
    color: var(--main-color);
    margin-right: 25px;
}

.news_latter_form input {
    width: 100%;
    padding: 10px 0px;
    border: 0;
    outline: none;
    border-bottom: 1px solid #dbdbdb3d;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.news_latter_form button {
    font-size: 30px;
    position: relative;
    left: -30px;
    padding-bottom: 10px;
    color: var(--main-color);
}

/* news latter section end */


/* footer section start */
footer {
    background-image: linear-gradient(var(--blue-color), #06070e);
    position: relative;
}

footer:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url(../images/home/bg-map.png);
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
}

.footer_box ul li a {
    background: #172940;
    color: #fff;
    border-radius: 0px 10px;
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 1;
}

.footer_box ul li a:hover {
    border-radius: 50%;
}

.footer_box ul li a i {
    position: relative;
    z-index: 100;
}

.footer_box ul li a:before {
    height: 0%;
    width: 0%;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-radius: 50%;
    transition: 0.5s;
    right: 0;
    bottom: 0;
    margin: auto;
}

.footer_box ul li a i {
    z-index: 100;
    position: relative;
}

.footer_box ul li a:hover:before {
    width: 100%;
    height: 100%;
}

.footer_box ul li {
    margin: 0px 10px;
}

.footer_box p {
    font: normal normal 300 14px/25px Inter;
    letter-spacing: 0px;
    color: #ffffff;
}

.footer_box img {
    width: 250px;
}

.footer_box ul li a img {
    max-width: 16px;
    z-index: 2;
}

.footer_quick_links ul li a {
    font: normal 400 14px/ 36px Inter;
    color: #ffffff;
    transition: 0.5s;
}

.footer_quick_links h5,
.footer_contact h5 {
    font: normal 600 18px/ 20px Inter;
}

.copy_bottom {
    background: var(--blue-color);
    padding: 15px 0px;
    text-align: center;
}

.contact_info .icon {
    margin-right: 12px;
    background: #172940 0% 0% no-repeat padding-box;
    border-radius: 0px 7px;
    min-width: 35px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_quick_links ul li a:hover,
.contact_info .details p a:hover {
    color: var(--main-color);
    padding-left: 5px;
}

.contact_info .details p {
    font: normal normal 300 14px/22px Inter;
    color: #ffffff;
}

.contact_info .details p a {
    color: #ffffff;
    transition: 0.5s;
}

.copy_right_text p,
.copy_bottom a,
.copy_bottom p {
    font: normal 400 14px/ 20px Inter;
    color: #fff;
}

.footer_quick_links ul .main_features_member a {
    display: flex;
    align-items: center;
}

.footer_quick_links ul .main_features_member .features_content {
    margin-left: 15px;
}

.main_features_member .features_img img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.main_features_member .features_img .inactive_user,
.main_features_member .features_img .active_user {
    height: 12px;
    width: 12px;
    background: #444444;
    border-radius: 50%;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 4px;
    border: 2px solid #fff;
}

.main_features_member .features_img .active_user {
    background: green;
}


.main_features_member .features_img .active_user::before {
    position: absolute;
    right: -6px;
    content: '';
    background: green;
    z-index: 100000;
    border: 0px solid #62bd19;
    -webkit-border-radius: 30px;
    height: 20px;
    width: 20px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    bottom: -6px;
}

.features_img {
    position: relative;
}

.features_content h6 {
    font: normal normal 500 16px Inter;
    margin: 0;
    color: var(--main-color);
}

.features_content p {
    font: normal normal 400 13px Inter;
    color: #fff;
    margin-bottom: 0;
    margin-top: 2px;
}

.copy_right_text p a {
    color: var(--main-color);
}

/* footer section end */



/* breadcrumb section start */

.breadcrumb_section {
    padding: 120px 0px;
    margin-top: 70px;
    position: relative;
}

.bg-1 {
    background: linear-gradient(#00000000, #730037d4), url(../images/1.jpg);
    background-size: cover;
}

.bg-2 {
    background: linear-gradient(#00000000, #730037d4), url(../images/2.jpg);
    background-size: cover;
}

.bg-3 {
    background: linear-gradient(#00000000, #730037d4), url(../images/3.jpg);
    background-size: cover;
}

.bg-4 {
    background: linear-gradient(#00000000, #730037d4), url(../images/4.jpg);
    background-size: cover;
}

.bg-5 {
    background: linear-gradient(#00000000, #730037d4), url(../images/5.jpg);
    background-size: cover;
}

.bg-6 {
    background: linear-gradient(#00000000, #730037d4), url(../images/6.jpg);
    background-size: cover;
}

.bg-7 {
    background: linear-gradient(#00000000, #730037d4), url(../images/7.jpg);
    background-size: cover;
}

.bg-8 {
    background: linear-gradient(#00000000, #730037d4), url(../images/8.jpg);
    background-size: cover;
}

.bg-9 {
    background: linear-gradient(#00000000, #730037d4), url(../images/9.jpg);
    background-size: cover;
}

.bg-10 {
    background: linear-gradient(#00000000, #730037d4), url(../images/10.jpg);
    background-size: cover;
}

.breadcrumb_heading h2 {
    font-size: 45px;
    color: #fff;
    text-shadow: 0px 5px 0px #0e112040;
}

.breadcrumb_list {
    background: #fff;
    width: fit-content;
    padding: 13px 20px;
    position: absolute;
    right: 19px;
    bottom: 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    transform: skewX(30deg);
}

.breadcrumb_list:before,
.breadcrumb_list:after {
    position: absolute;
    right: 0;
    background: #ff1182;
    height: 13%;
    width: 4%;
    content: '';
    bottom: 0;
    transition: 0.5s;
    z-index: -1;
}

.breadcrumb_list:after {
    left: 0;
    top: 0;
}

.breadcrumb_list:hover::before,
.breadcrumb_list:hover::after {
    width: 100%;
    height: 100%;
}

.breadcrumb_list ul {
    transform: skewX(-30deg);
}

.breadcrumb_list ul li,
.breadcrumb_list ul li a {
    font: normal normal 600 14px Inter;
    margin: 0px 5px;
    color: #000;
}

.breadcrumb_list ul li .scrolldown-btn {
    position: relative;
    text-align: start;
    margin: unset;
    left: -20px;
}

/* about us page start */

.start_date_section .features_img img {
    width: 90px;
}

.start_date_section .counter_box {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    background: linear-gradient(45deg, #2ab2fe, #c954ff, #ff1182);
    z-index: 1;
    border-radius: 0;
    padding: 20px 25px;
}

.start_date_section .counter_box:before {
    position: absolute;
    left: 1px;
    top: 0;
    width: 99%;
    height: 98%;
    content: '';
    background: #0e1120;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    z-index: -1;
    bottom: 0;
    margin: auto;
    right: 0;
}

.start_date_section .counter_box:after {
    height: 0%;
    width: 0%;
    background: #ffffff05;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
    right: 0;
    bottom: 0;
    margin: auto;
}

.start_date_section .counter_box:hover::after {
    width: 99%;
    height: 98%;
}

.start_date_section .counter_box p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.start_date_section .counter_box .coonter span,
.start_date_section .counter_box .coonter h1 {
    font-size: 45px;
    font-weight: 700;
    padding-left: 5px;
}

.datin_img img {
    width: 100%;
    animation: move 5s infinite;
    transform: translateY(0);
}


@keyframes move {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(90px)
    }
}


@keyframes datinimg {
    0% {
        transform: translate(0px, -80px);
    }

    100% {
        transform: translate(0px, 100px);
    }
}


/* about us page end */


/* single member page start */

/* .single_member{
    background: linear-gradient(#00000000, #730037d4), url(../images/about/pageheader.jpg);
} */

.profile_section {
    background: linear-gradient(#00000000, #0e1120), url(../images/cover.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    position: relative;
    margin-top: 65px;
}

.profile_section .profile_name {
    position: relative;
    top: 50px;
}

.user_message_links .icon {
    height: 40px;
    width: 40px;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    min-width: 40px;
    min-height: 40px;
    color: #fff;
}

.user_message_links li {
    margin: 0px 13px;
}

.profile_content .user_name h3 {
    font-size: 30px;
}

.profile_content .user_name p i {
    color: #ffffff;
    padding-right: 5px;
}

.acitve_time {
    color: var(--main-color);
}

.profile_content {
    position: absolute;
    bottom: 5px;
}

.main_tab_list_header .nav-tabs .nav-link.active {
    background: transparent;
    border: 0;
    color: var(--main-color);
    position: relative;
}

.main_tab_list_header .nav-tabs .nav-link.active:before {
    position: absolute;
    left: 0;
    bottom: -38px;
    height: 20px;
    width: 20px;
    background: #f1f7fe;
    content: '';
    right: 0;
    margin: auto;
    transform: rotate(45deg) translateX(-50%);
}

.main_tab_list_header {
    margin-bottom: 15px;
}

.profile_content {
    position: absolute;
    bottom: 5px;
}

.main_tab_list_header .nav-tabs .nav-link {
    font: normal normal 500 15px Inter;
    color: #fff;
    border: 0;
}

.main_tab_list_header .nav-tabs .nav-link:hover {
    color: var(--main-color);
}

.main_tab_list_header .nav-tabs .nav-link:hover span,
.main_tab_list_header .nav-tabs .nav-link.active span {
    color: #fff;
}

.main_tab_list_header .nav-tabs .nav-link span {
    background: var(--main-color);
    padding: 2px 7px;
    font-size: 10px;
    margin-left: 7px;
    position: relative;
    border-radius: 2px;
}

.main_tab_list_header .nav-tabs .nav-link span:before {
    position: absolute;
    content: "";
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 8.7px 5px 0;
    border-color: transparent #ff1182 transparent transparent;
}

.profile_section .profile_name:before {
    background: linear-gradient(45deg, #2ab2fe, #8f00d1, #ff1182);
}

.main_tabs_section {
    background-color: #f1f7fe;
}

.create-post .thumb-img img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.border_rounder {
    height: 70px;
    width: 70px;
    position: absolute;
    border: 1px dashed var(--main-color);
    border-radius: 50%;
    left: -5px;
    right: 0;
    bottom: 0;
    margin: auto;
    top: 0;
    animation: roudder 3s infinite linear;
}

@keyframes roudder {
    100% {
        transform: rotate(360deg);
    }

}

.create-post .thumb-img {
    position: relative;
}

.border_rounder:before,
.border_rounder:after {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background: var(--main-color);
}

.border_rounder:before {
    left: 0;
    top: 9px;
}

.border_rounder:after {
    right: 0;
    bottom: 11px;
}

.create-post .thumb-content h5 {
    font: normal normal 700 17px Inter;
}

.create-post .thumb-content h6 {
    font: normal normal 600 15px Inter;
}

.create-post .thumb-content h6 i {
    padding-right: 5px;
    color: var(--main-color);
}

.create-post .thumb-content h6 p {
    font: normal normal 500 13px Inter;
    padding-left: 20px;
    position: relative;
}

.create-post .thumb-content h6 p:before {
    content: '|';
    left: 8px;
    position: absolute;
}

.create-post .lab-content .post-form input {
    font-size: 15px;
    padding: 40px 35px;
    width: 100%;
    outline: none;
    font-weight: 500;
}

.content-type .content-list li {
    position: relative;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 30px;
}

.content-type .content-list li input {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    cursor: pointer;
}

.create-post {
    background: #fff;
    padding: 30px 0px 0px 0px;
    box-shadow: #3c404300 0px 1px 2px 0px, #3c40430d 0px 2px 6px 2px;
}

.content-type {
    padding: 18px 35px;
    border-top: 1px solid #80808030;
}

.content-type .content-list li i {
    padding-right: 7px;
    color: var(--main-color);
}

.content-type .content-list li a {
    color: #000;
}

.create-post .lab-inner {
    padding: 0px 35px;
}

.content-type .content-list .post-submit {
    background: var(--main-color) !important;
    position: relative !important;
    padding: 9px 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-left: auto;
}

.search-widget_post .search-title h5 {
    font-weight: 700;
}

.search-widget_post {
    background: #fff;
    padding: 25px 25px;
    box-shadow: #3c404300 0px 1px 2px 0px, #3c40430d 0px 2px 6px 2px;
}

.search-widget_post .search-title {
    padding: 10px 0px;
    position: relative;
    border-bottom: 1px solid #80808057;
    margin-bottom: 20px;
}

.search-widget_post .search-title:before {
    width: 100%;
    height: 1px;
    bottom: 0px;
    background: gray;
}

.search-widget_post .widget-content select {
    font: normal normal 500 14px Inter;
    border: 1px solid #80808054;
    padding: 14px 20px;
}

.search-widget_post .widget-content .form-select:focus {
    border-color: #ff1182;
    box-shadow: 0 0 0 0px #ff11822e;
}

.like-widget_post .widget-content .image-thumb a img {
    border-radius: 5px;
}

.like-widget_post .widget-content .image-thumb {
    border: 1px solid #0000001c;
    padding: 5px;
    border-radius: 5px;
    position: relative;
}

.like-widget_post .widget-content .image-thumb:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0 0;
    border-color: #ff1182 transparent transparent transparent;
    border-radius: 5px 0px 0px 0px;
}

.like-widget_post .widget-content .image-thumb::after {
    position: absolute;
    content: '';
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: url(../images/members/heart-solid.svg);
}

.active-group .widget-content .group-item:first-child {
    border-bottom: 1px solid #ecf0f3;
}

.group-item .lab-inner .lab-content .img-stack li {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.3);
    color: #fff;
}

.group-item .lab-inner .lab-content .img-stack li:nth-child(7n+7) {
    transform: translateX(0px);
    background-color: var(--main-color);
}

.active-group .widget-content .group-item h6 {
    font: normal normal 600 15px Inter;
}

.profile_main .info-card-content li {
    display: flex;
    width: 100%;
    padding: 12px 20px;
}

.profile_main .info-card-content li .info-name {
    width: 22%;
    color: var(--blue-color);
}

.profile_main .info-card-content li p {
    margin: 0;
}

.profile_main .info-card-content li:nth-child(1),
.profile_main .info-card-content li:nth-child(3),
.profile_main .info-card-content li:nth-child(5),
.profile_main .info-card-content li:nth-child(7) {
    background: #0000001a;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.profile_main .info-card-content li .info-details span {
    color: #000;
    padding-right: 20px;
    font-size: 15px;
}

.info-card-title {
    border-bottom: 1px solid #8080802e;
    padding: 18px 0px;
}

.info-card-title h6 {
    font: normal normal 700 17px Inter;
}

.search-widget_post .widget-content .acamic_img .profile_img img {
    height: 300px;
    object-position: 100% 20%;
}

.search-widget_post .widget-content .acamic_img:before {
    left: -3px;
    top: -3px;
    height: 102%;
    content: '';
    width: 102%;
}

.group_section .search-widget_post {
    box-shadow: #3c40432e 0px 1px 2px 0px, #3c404329 0px 2px 6px 2px;
}

/* single member page end */


/* single group page start */
.main_mediatab .main_tab_list_header {
    background: var(--blue-color);
    padding: 15px 20px;
}

.all_media_tab_s {
    background: #fff;
    box-shadow: #3c404300 0px 1px 2px 0px, #3c40430d 0px 2px 6px 2px;
}

.media_title {
    border-bottom: 1px solid #80808057;
    padding: 16px 20px;
}

.upload_media h5 {
    font: normal normal 600 15px Inter;
    background: var(--main-color);
    width: fit-content;
    padding: 11px 25px;
    color: #fff;
    border-radius: 5px;
}

.upload_media {
    position: relative;
}

.upload_media input {
    position: absolute;
    left: 0;
    top: 4px;
    opacity: 0;
    cursor: pointer;
}

.upload_media_img {
    position: relative;
}

.upload_media_img img {
    height: 300px;
    object-fit: cover;
    object-position: 100% 25%;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    z-index: 1;
}

.upload_media_img:before {
    position: absolute;
    left: -4px;
    top: 0px;
    height: 102%;
    background: #adadada6;
    content: '';
    width: 103%;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    margin: auto;
    right: 0;
    bottom: 0;
}

.edite_profile {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translate(0px, 30px);
    transition: 0.5s;
}

.profile_name:hover .edite_profile {
    opacity: 1;
    transform: translate(0px, -10px);
}

.edite_profile h5 {
    background: #0e112070;
    padding: 10px 20px;
    border: 1px solid #ffffff80;
    border-radius: 5px;
    font: normal normal 500 15px Inter;
    color: #fff;
    cursor: pointer;
}

.edite_profile h5 i {
    padding-right: 5px;
    color: var(--main-color);
}

.edite_profile input {
    position: absolute;
    opacity: 0;
}

/* single group page end */


/* login page start */
.login_box .login-other {
    display: flex;
    margin-bottom: 30px;
}

.login_box .login-other-item img {
    margin-right: 6px;
}

.login_box .login-other-item {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid hsla(0, 0%, 100%, .12);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    text-transform: capitalize;
    color: #fff;
    transition: 0.5s;
    margin: 0px 8px;
}

.login_box .login-other-item:hover {
    background: var(--main-color);
}

.login_box {
    background: var(--blue-color);
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
}


.login_box label {
    font: normal normal 500 15px Inter;
    margin-bottom: 7px;
    color: #fff;
}

.login_box label span {
    color: var(--main-color);
}

.login_box input.form-control {
    padding: 17px 20px;
    font: normal normal 500 15px Inter;
    border-radius: 10px;
    border-color: #ffffff14;
    background: #ffffff14;
    color: #fff;
}

.login_box input.form-control:focus {
    border-color: #ff1182 !important;
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 0%);
}

.login_box .login_btn {
    padding: 15px 20px;
    border-radius: 11px;
    font: normal normal 600 15px Inter;
    background: var(--main-color);
    color: #fff;
}

.other {
    text-align: center;
    position: relative;
    color: #919191;
    font: normal normal 500 15px Inter;
    margin: 30px 0px;
}

.other:before,
.other:after {
    position: absolute;
    width: 40%;
    background: #212431;
    height: 1px;
    content: '';
    bottom: 0;
    margin: auto;
    top: 0;
}

.other:before {
    left: 0;
}

.other:after {
    right: 0;
}

.forgot_pass a {
    font: normal normal 500 15px Inter;
    color: #919191;
}

.no-account {
    color: #ffffff87;
    font-size: 14px;
}

.tf-color {
    color: var(--main-color) !important;
}

/* login page end */


/* pricing plan page start */
.pricing_plan {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 0px 0px 50px 0px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    background: #dbdbdb;
    z-index: 10;
}

.pricing_plan .price_plan {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    z-index: 100;
    padding: 30px 20px 15px 20px;
}

.pricing_plan .price_plan h4 {
    font: normal normal 700 18px Inter;
    color: #fff;
}

.pricing_plan .price_plan h6 {
    font: normal normal 600 14px Inter;
    color: #fff;
}

.pricing_plan .price_plan h1 {
    font: normal normal 800 40px Inter;
    color: #ffffff;
}

.plan_list li {
    font: normal normal 500 14px Inter;
    margin-top: 20px;
    color: #fff;
}

.plan_list li i {
    color: var(--main-color);
    font-size: 14px;
    padding-right: 5px;
}

.pricing_plan:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 98%;
    width: 98%;
    content: '';
    background: #0e1120;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    z-index: -1;
}

.pricing_plan .price_plan:before {
    position: absolute;
    left: 0;
    top: 6px;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 98%;
    width: 98%;
    content: '';
    background: var(--main-color);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    z-index: -1;
    filter: blur(8px);
    -webkit-filter: blur(30px);
}

.pricing_plan .price_plan:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80%;
    content: '';
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    right: 0;
    margin: auto;
    background: linear-gradient(to right, #93115500, #ffffff80, #ff118200);
}

.plan_list {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* pricing plan page end */


/* blog page start */
.blog_section {
    background-color: #f1f7fe;
}

.post_item {
    background: #fff;
    padding: 0px 0px;
    box-shadow: #3c404300 0px 1px 2px 0px, #3c40430d 0px 2px 6px 2px;
}

.post_thumb {
    padding: 20px 20px;
}

.post_thumb img {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    width: 100%;
}

.post_thumb .swiper-button-next:after {
    content: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 30px;
    color: var(--main-color);
}

.post_content .meta {
    font: normal 700 13px Inter;
}

.post_content .meta a {
    color: var(--main-color);
}

.post_content {
    padding: 0px 20px;
}

.post_content h3 a {
    font: normal normal 800 27px Inter;
    color: #0e0e0e;
    transition: 0.5s;
}

.post_content h3 a:hover,
.blog_footer .right a:hover,
.blog_footer .viewall:hover {
    color: var(--main-color);
}

.blog_footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative;
}

.blog_footer:before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    top: 0;
    background: linear-gradient(to right, #93115500, #0d0f1d45, #ff118200);
}

.blog_footer .viewall {
    font: normal normal 500 14px / 22px Inter;
    color: #060606;
    transition: 0.5s;
}

.blog_footer .right a {
    font: normal normal 600 14px / 22px Inter;
    color: #060606;
    padding: 0px 10px;
    transition: 0.5s;
}

.blog_footer .right a i,
.blog_footer .viewall i {
    color: var(--main-color);
    padding-right: 5px;
}

.widget_side {
    background: #fff;
    padding: 0px 0px;
    box-shadow: #3c404300 0px 1px 2px 0px, #3c40430d 0px 2px 6px 2px;
}

.widget_side {
    padding: 30px;
}

.widget_side .widget_header h5::before,
.widget_side .widget_header h5::after,
.widget_side.widget_search .search_wrapper button {
    position: absolute;
    content: '';
}

.widget_side .widget_header h5::before {
    width: 40px;
    height: 4px;
    background-color: var(--main-color);
    bottom: -20px;
    border-radius: 2px;
}

.widget_side .widget_header h5 {
    font: normal normal 700 20px Inter;
    position: relative;
    margin-bottom: 40px;
}

.widget_side .widget_header h5:after {
    border-bottom: 5px dotted var(--main-color);
    width: 30px;
    bottom: -20px;
    left: 45px;
}

.widget_side.widget_search .search_wrapper input {
    height: 50px;
    padding: 13px 23px;
    line-height: 50px;
    border: none;
    width: 100%;
    outline: none;
    color: #000;
    background-color: #0000000f;
}

.widget_side.widget_search .search_wrapper button {
    padding: 0;
    top: 0;
    right: 0;
    line-height: 50px;
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    cursor: pointer;
    color: #000;
    background: #bbbbbb36;
}

.widget_side.widget_search .search_wrapper {
    position: relative;
}

.widget_category ul li {
    border-bottom: 1px solid #80808066;
    padding: 9px 0px;
}

.widget_category ul li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font: normal normal 600 14px Inter;
    color: #000;
    align-items: center;
}


.widget_category ul li a span:last-child {
    width: 30px !important;
    height: 30px !important;
    background: transparent;
    display: flex;
    border-radius: 50%;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
}

.widget_category ul li a:hover span:first-child {
    transition: all 0.3s ease-in-out;
}

.widget_category ul li a:hover span:first-child {
    padding-left: 10px;
    color: var(--main-color);
}

.widget_category ul li a:hover span:last-child {
    background-color: var(--main-color);
    color: #fff;
}

.widget_category ul li:last-child {
    border: 0;
}

.post_thumb_sie img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
}

.widget_post ul li {
    border-bottom: 1px solid #80808038;
    padding: 20px 0;
}

.post-content a,
.post-content a h6 {
    font: normal normal 700 16px Inter;
    color: #000;
    transition: 0.5s;
}

.post-content a:hover,
.post-content a h6:hover {
    color: var(--main-color);
}

.widget_archive ul li {
    border: 1px solid #0000002b;
    padding: 10px 20px;
    display: flex;
    margin: 5px;
    border-radius: 3px;
    transition: 0.5s;
}

.widget_archive ul li a {
    font: normal normal 500 14px Inter;
    color: #000;
    transition: 0.5s;
}

.widget_archive ul li:hover {
    background: var(--main-color);
}

.widget_archive ul li:hover a {
    color: #fff;
}

.embed-responsive iframe {
    width: 100%;
    height: 350px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.post_content blockquote {
    background: var(--main-color);
    padding: 25px 30px 25px 80px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
}

.post_content blockquote:before {
    position: absolute;
    left: 20px;
    top: 0;
    content: '';
    background: url(../images/blog/post/b-code.png);
    width: 40px;
    height: 30px;
    bottom: 0;
    margin: auto;
}

.post_content blockquote p {
    color: #fff;
    font-style: italic;
    margin: 0;
    font-size: 15px;
}

.blog_footer .footer_box ul li a {
    background: #0e11203d;
    color: #000;
    border-radius: 50%;
}

.widget_archive ul .tags_list {
    position: relative;
    background: var(--main-color);
    margin-right: 25px;
    color: #fff;
}

.widget_archive ul .tags_list:before {
    position: absolute;
    top: 46%;
    right: 0;
    transform: rotate(45deg) translateY(-50%);
    width: 15px;
    height: 15px;
    background: var(--main-color);
    content: '';
}

.reply_btn a {
    font: normal normal 500 14px / 22px Inter;
    color: var(--main-color);
}

.reply_box {
    border-bottom: 1px solid #80808066;
}

.leave_comment_box input,
.leave_comment_box textarea {
    padding: 17px 20px;
    border: 1px solid #80808033;
    outline: navajowhite;
    border-radius: 5px;
    font: normal normal 500 14px inter;
    width: 100%;
    background: #80808014;
    color: #000;
}

.widget_category .list_yeaer li a span:last-child {
    background: transparent !important;
}

.widget_category .list_yeaer li a:hover span:last-child {
    color: var(--main-color) !important;
}

/* blog page end */


/* contact page start */
.contact_box .img_cont img {
    width: 50px;
}

.contact_box .contac_cont h5 {
    font-size: 17px;
    font-weight: 600;
}

.contact_box .contac_cont p,
.contact_box .contac_cont a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.contact_contect_main p {
    font: normal normal 400 15px / 25px Inter;
}

.contact_contect_main h6,
.contact_contect_main h2 span {
    color: var(--main-color);
}

.contact_section {
    background: url(../images/contact.png);
    background-size: cover;
}

.form-group{
    margin-bottom: 15px;
}

.contact-section {
    background-color: #fff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
    border-radius: unset;
    padding: 45px 45px 45px 45px;
}

.sec-title .sub-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--main-color);
    margin: 0 0 16px;
    display: block;
}

.sec-title .title {
    font-size: 35px;
    font-weight: 800;
    line-height: 45px;
    color: #101010;
}

.contact-section .from-control {
    padding: 20px 0px 10px 0px;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #F8F3F3;
    background-color: transparent;
    border-radius: unset;
    color: #454545;
    outline: none;
    width: 100%;
}

.btn-part .main_btn {
    background: var(--main-color);
    padding: 13px 25px;
    font: normal normal 600 15px Inter;
}

#navbar-wrapper {
    display: none;
}

/* contact page end */


/* why us section start */

.why_people_choose_us {
    background: linear-gradient(#0e1120d1, #0e112091), url(../images/home/why-us.jpg);
    background-size: cover;
    padding: 100px 0px;
    background-attachment: fixed;
}

.why_choose_us p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #e5dede;
}

/* why us section start */


/* General styles */
#FAQ {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.faq_img img {
    width: 100%;
}

.accordian {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 15px 20px;
    border-radius: 8px;
}

.item {
    background-color: #d00f7426;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    transition: background-color 0.3s ease;
}

.item.selected {
    background-color: #ffffff;
}

.FAQ-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #131414;
}

.faqQuestion {
    font-size: 15px;
    color: #131414;
    text-align: start;
}

.FAQ-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #131414;
}

.FAQ-content.show {
    max-height: 9999px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.expandToggle {
    background: #e3107e;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.FAQ-ShowMore {
    text-align: center;
    margin-top: 10px;
}

.FAQ-ShowMore button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #06965c;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.FAQ-ShowMore button:hover {
    background-color: #8ee0c4;
    color: black;
    font-weight: 700;
}

/* faq section start */

@media (max-width: 1024px) {
    .accordian {
        max-width: 100%;
    }

    .item {
        padding: 12px 16px;
    }

    .FAQ-title {
        font-size: 16px;
    }

    .expandToggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .accordian {
        padding: 10px;
    }

    .item {
        padding: 10px 14px;
    }

    .FAQ-title {
        font-size: 14px;
    }

    .expandToggle {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .accordian {
        padding: 5px;
    }

    .item {
        padding: 8px 12px;
    }

    .FAQ-title {
        font-size: 12px;
    }

    .expandToggle {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* faq section start */

.privacy_policy p {
    font-size: 15px;
}

.policy_list li {
    list-style: none;
    padding: 3px 0px;
}

.policy_list li a {
    text-decoration: underline;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.conditions_italic li {
    font-style: italic;
    color: #152367;
}


.login_section{
    background: #161a2d;
}

.interests-box {
  margin: 0;
  padding: 0
}

.interests-box li {
  margin-bottom: 10px;
  list-style: none;
}

.interests-box li a i {
  margin-right: 5px
}

.interests-box li a {
  background: #ff1283;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 10px 20px;
  display: inline-block;
  transition: .5s ease;
  width: 100%;
  border-radius: 5px
}

.interests-box li a:hover,
.interests-box li a:focus {
  -webkit-filter: brightness(150%);
  filter: brightness(150%);
  color: #fff
}

.match-profile p{
    margin-bottom: 0px;
}

.user-tab-login {
  border: 1px solid #e91184;
  border-radius: 5px;
  padding: 7px 15px !important;
}

.user-tab-register{
  border: 1px solid #e91184;
  border-radius: 5px;
  padding: 7px 15px !important;
  margin-left: 5px;
}

.display-in{
    display: inline-block;
    padding: 5px 40px 5px 5px !important;
    margin-bottom: 5px;
}

















/*Whatsup chat css*/

.chat-page-content {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: "proxima-nova", "Source Sans Pro", sans-serif;
  font-size: 1em;
  letter-spacing: .1px;
  color: #32465a;
  text-rendering: optimizeLegibility;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -webkit-font-smoothing: antialiased;
}

#frame {
  width: 95%;
  min-width: 360px;
  max-width: 1000px;
  height: 92vh;
  min-height: 300px;
  max-height: 720px;
  background: #E6EAEA
}

@media screen and (max-width: 360px) {
  #frame {
    width: 100%;
    height: 100vh
  }
}

#frame #sidepanel {
  float: left;
  min-width: 280px;
  max-width: 340px;
  width: 40%;
  height: 100%;
  background: #2c3e50;
  color: #f5f5f5;
  overflow: hidden;
  position: relative
}

@media screen and (max-width: 735px) {
  #frame #sidepanel {
    width: 58px;
    min-width: 58px
  }
}

#frame #sidepanel #profile {
  width: 80%;
  margin: 25px auto
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile {
    width: 100%;
    margin: 0 auto;
    padding: 5px 0 0;
    background: #32465a
  }
}

#frame #sidepanel #profile.expanded .wrap {
  height: 210px;
  line-height: initial
}

#frame #sidepanel #profile.expanded .wrap p {
  margin-top: 20px
}

#frame #sidepanel #profile.expanded .wrap i.expand-button {
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  filter: FlipH;
  -ms-filter: FlipH
}

#frame #sidepanel #profile .wrap {
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  -moz-transition: .3s height ease;
  -o-transition: .3s height ease;
  -webkit-transition: .3s height ease;
  transition: .3s height ease
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap {
    height: 55px
  }
}

#frame #sidepanel #profile .wrap img {
  width: 50px;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid #e74c3c;
  height: auto;
  float: left;
  cursor: pointer;
  -moz-transition: .3s border ease;
  -o-transition: .3s border ease;
  -webkit-transition: .3s border ease;
  transition: .3s border ease
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap img {
    width: 40px;
    margin-left: 4px
  }
}

#frame #sidepanel #profile .wrap img.online {
  border: 2px solid #2ecc71
}

#frame #sidepanel #profile .wrap img.away {
  border: 2px solid #f1c40f
}

#frame #sidepanel #profile .wrap img.busy {
  border: 2px solid #e74c3c
}

#frame #sidepanel #profile .wrap img.offline {
  border: 2px solid #95a5a6
}

#frame #sidepanel #profile .wrap p {
  float: left;
  margin-left: 15px
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap p {
    display: none
  }
}

#frame #sidepanel #profile .wrap i.expand-button {
  float: right;
  margin-top: 23px;
  font-size: .8em;
  cursor: pointer;
  color: #435f7a
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap i.expand-button {
    display: none
  }
}

#frame #sidepanel #profile .wrap #status-options {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 150px;
  margin: 70px 0 0;
  border-radius: 6px;
  z-index: 99;
  line-height: initial;
  background: #435f7a;
  -moz-transition: .3s all ease;
  -o-transition: .3s all ease;
  -webkit-transition: .3s all ease;
  transition: .3s all ease
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options {
    width: 58px;
    margin-top: 57px
  }
}

#frame #sidepanel #profile .wrap #status-options.active {
  opacity: 1;
  visibility: visible;
  margin: 75px 0 0
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options.active {
    margin-top: 62px
  }
}

#frame #sidepanel #profile .wrap #status-options:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #435f7a;
  margin: -8px 0 0 24px
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options:before {
    margin-left: 23px
  }
}

#frame #sidepanel #profile .wrap #status-options ul {
  overflow: hidden;
  border-radius: 6px
}

#frame #sidepanel #profile .wrap #status-options ul li {
  padding: 15px 0 30px 18px;
  display: block;
  cursor: pointer
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options ul li {
    padding: 15px 0 35px 22px
  }
}

#frame #sidepanel #profile .wrap #status-options ul li:hover {
  background: #496886
}

#frame #sidepanel #profile .wrap #status-options ul li span.status-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px 0 0
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options ul li span.status-circle {
    width: 14px;
    height: 14px
  }
}

#frame #sidepanel #profile .wrap #status-options ul li span.status-circle:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  margin: -3px 0 0 -3px;
  background: transparent;
  border-radius: 50%;
  z-index: 0
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options ul li span.status-circle:before {
    height: 18px;
    width: 18px
  }
}

#frame #sidepanel #profile .wrap #status-options ul li p {
  padding-left: 12px
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options ul li p {
    display: none
  }
}

#frame #sidepanel #profile .wrap #status-options ul li#status-online span.status-circle {
  background: #2ecc71
}

#frame #sidepanel #profile .wrap #status-options ul li#status-online.active span.status-circle:before {
  border: 1px solid #2ecc71
}

#frame #sidepanel #profile .wrap #status-options ul li#status-away span.status-circle {
  background: #f1c40f
}

#frame #sidepanel #profile .wrap #status-options ul li#status-away.active span.status-circle:before {
  border: 1px solid #f1c40f
}

#frame #sidepanel #profile .wrap #status-options ul li#status-busy span.status-circle {
  background: #e74c3c
}

#frame #sidepanel #profile .wrap #status-options ul li#status-busy.active span.status-circle:before {
  border: 1px solid #e74c3c
}

#frame #sidepanel #profile .wrap #status-options ul li#status-offline span.status-circle {
  background: #95a5a6
}

#frame #sidepanel #profile .wrap #status-options ul li#status-offline.active span.status-circle:before {
  border: 1px solid #95a5a6
}

#frame #sidepanel #profile .wrap #expanded {
  padding: 100px 0 0;
  display: block;
  line-height: initial !important
}

#frame #sidepanel #profile .wrap #expanded label {
  float: left;
  clear: both;
  margin: 0 8px 5px 0;
  padding: 5px 0
}

#frame #sidepanel #profile .wrap #expanded input {
  border: none;
  margin-bottom: 6px;
  background: #32465a;
  border-radius: 3px;
  color: #f5f5f5;
  padding: 7px;
  width: calc(100% - 43px)
}

#frame #sidepanel #profile .wrap #expanded input:focus {
  outline: none;
  background: #435f7a
}

#frame #sidepanel #search {
  border-top: 1px solid #32465a;
  border-bottom: 1px solid #32465a;
  font-weight: 300
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #search {
    display: none
  }
}

#frame #sidepanel #search label {
  position: absolute;
  margin: 10px 0 0 20px
}

#frame #sidepanel #search input {
  font-family: "proxima-nova", "Source Sans Pro", sans-serif;
  padding: 10px 0 10px 46px;
  width: calc(100% - 25px);
  border: none;
  background: #32465a;
  color: #f5f5f5
}

#frame #sidepanel #search input:focus {
  outline: none;
  background: #435f7a
}

#frame #sidepanel #search input::-webkit-input-placeholder {
  color: #f5f5f5
}

#frame #sidepanel #search input::-moz-placeholder {
  color: #f5f5f5
}

#frame #sidepanel #search input:-ms-input-placeholder {
  color: #f5f5f5
}

#frame #sidepanel #search input:-moz-placeholder {
  color: #f5f5f5
}

#frame #sidepanel #contacts {
  height: calc(100% - 42px);
  overflow-y: scroll;
  overflow-x: hidden
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts {
    height: calc(100% - 149px);
    overflow-y: scroll;
    overflow-x: hidden
  }

  #frame #sidepanel #contacts::-webkit-scrollbar {
    display: none
  }
}

#frame #sidepanel #contacts.expanded {
  height: calc(100% - 334px)
}

#frame #sidepanel #contacts::-webkit-scrollbar {
  width: 8px;
  background: #2c3e50
}

#frame #sidepanel #contacts::-webkit-scrollbar-thumb {
  background-color: #243140
}

#frame #sidepanel #contacts ul li.contact {
  position: relative;
  padding: 10px 0 15px;
  font-size: .9em;
  cursor: pointer;
  list-style: none;
}

#frame #sidepanel #contacts ul li.contact a {
  color: #fff
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts ul li.contact {
    padding: 6px 0 46px 8px
  }
}

#frame #sidepanel #contacts ul li.contact:hover {
  background: #32465a
}

#frame #sidepanel #contacts ul li.contact.active {
  background: #32465a;
  border-right: 5px solid #435f7a
}

#frame #sidepanel #contacts ul li.contact.active span.contact-status {
  border: 2px solid #32465a !important
}

#frame #sidepanel #contacts ul li.contact .wrap {
  width: 88%;
  margin: 0 auto;
  position: relative
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts ul li.contact .wrap {
    width: 100%
  }
}

#frame #sidepanel #contacts ul li.contact .wrap span {
  position: absolute;
  left: 0;
  margin: -2px 0 0 -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #2c3e50;
  background: #95a5a6
}

.unread-message {
  position: absolute;
  right: 0;
  top: 12px
}

#frame #sidepanel #contacts ul li.contact .wrap span.online {
  background: #2ecc71
}

#frame #sidepanel #contacts ul li.contact .wrap span.away {
  background: #f1c40f
}

#frame #sidepanel #contacts ul li.contact .wrap span.busy {
  background: #e74c3c
}

#frame #sidepanel #contacts ul li.contact .wrap img {
  width: 40px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  height: 40px;
  object-fit: cover
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts ul li.contact .wrap img {
    margin-right: 0
  }
}

#frame #sidepanel #contacts ul li.contact .wrap .meta {
  padding: 5px 0 0
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts ul li.contact .wrap .meta {
    display: none
  }
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .name {
  font-weight: 600;
  margin-bottom: 0;
  line-height: 28px;
  color:#fff;
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .preview {
  margin: 5px 0 0;
  padding: 0 0 1px;
  font-weight: 400;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -moz-transition: 1s all ease;
  -o-transition: 1s all ease;
  -webkit-transition: 1s all ease;
  transition: 1s all ease
}

#frame #sidepanel #contacts ul li.contact .wrap .meta .preview span {
  position: initial;
  border-radius: initial;
  background: none;
  border: none;
  padding: 0 2px 0 0;
  margin: 0 0 0 1px;
  opacity: .5
}

#frame #sidepanel #bottom-bar {
  position: absolute;
  width: 100%;
  bottom: 0
}

#frame #sidepanel #bottom-bar button {
  float: left;
  border: none;
  width: 50%;
  padding: 10px 0;
  background: #32465a;
  color: #f5f5f5;
  cursor: pointer;
  font-size: .85em;
  font-family: "proxima-nova", "Source Sans Pro", sans-serif
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #bottom-bar button {
    float: none;
    width: 100%;
    padding: 15px 0
  }
}

#frame #sidepanel #bottom-bar button:focus {
  outline: none
}

#frame #sidepanel #bottom-bar button:nth-child(1) {
  border-right: 1px solid #2c3e50
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #bottom-bar button:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid #2c3e50
  }
}

#frame #sidepanel #bottom-bar button:hover {
  background: #435f7a
}

#frame #sidepanel #bottom-bar button i {
  margin-right: 3px;
  font-size: 1em
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #bottom-bar button i {
    font-size: 1.3em
  }
}

@media screen and (max-width: 735px) {
  #frame #sidepanel #bottom-bar button span {
    display: none
  }
}

#frame .content {
  float: right;
  width: 60%;
  height: 100%;
  overflow: hidden;
  position: relative
}

@media screen and (max-width: 735px) {
  #frame .content {
    width: calc(100% - 58px);
    min-width: 300px !important
  }
}

@media screen and (min-width: 900px) {
  #frame .content {
    width: calc(100% - 340px)
  }
}

#frame .content .contact-profile {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #f5f5f5
}

#frame .content .contact-profile img {
  width: 40px;
  border-radius: 50%;
  float: left;
  margin: 9px 12px 0 9px;
  height: 40px;
  object-fit: cover
}

#frame .content .contact-profile p {
  float: left;
  margin-bottom: 0;
  line-height: 60px
}

#frame .content .contact-profile .social-media {
  float: right
}

#frame .content .contact-profile .social-media i {
  margin-left: 14px;
  cursor: pointer
}

#frame .content .contact-profile .social-media i:nth-last-child(1) {
  margin-right: 20px
}

#frame .content .contact-profile .social-media i:hover {
  color: #435f7a
}

#frame .content .messages {
  height: auto;
  min-height: calc(100% - 93px);
  max-height: calc(100% - 93px);
  overflow-y: scroll;
  overflow-x: hidden
}

@media screen and (max-width: 735px) {
  #frame .content .messages {
    max-height: calc(100% - 105px)
  }
}

#frame .content .messages::-webkit-scrollbar {
  width: 8px;
  background: transparent
}

#frame .content .messages::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3)
}

#frame .content .messages ul li {
  display: inline-block;
  clear: both;
  float: left;
  margin: 15px 15px 5px;
  width: calc(100% - 25px);
  font-size: .9em
}

#frame .content .messages ul li:nth-last-child(1) {
  margin-bottom: 20px
}

#frame .content .messages ul li.sent img {
  margin: 6px 8px 0 0
}

#frame .content .messages ul li.sent p {
  background: #435f7a;
  color: #f5f5f5;
  position: relative;
  padding-bottom: 22px;
  min-width: 140px
}

#frame .content .messages ul li.sent p .sent-chat-time-date {
  position: absolute;
  bottom: 3px;
  right: 15px;
  color: #fff;
  font-size: 9px
}

#frame .content .messages ul li.replies img {
  float: right;
  margin: 6px 0 0 8px
}

#frame .content .messages ul li.replies p {
  background: #f5f5f5;
  float: right;
  position: relative;
  padding-bottom: 22px;
  min-width: 140px
}

#frame .content .messages ul li.replies p .replies-chat-time-date {
  position: absolute;
  bottom: 3px;
  right: 15px;
  color: #919191;
  font-size: 9px
}

#frame .content .messages ul li img {
  width: 22px;
  border-radius: 50%;
  float: left;
  height: 22px;
  object-fit: cover
}

#frame .content .messages ul li p {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 205px;
  line-height: 130%
}

@media screen and (min-width: 735px) {
  #frame .content .messages ul li p {
    max-width: 300px
  }
}

#frame .content .message-input {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 99;
  background: #fff
}

#frame .content .message-input .wrap {
  position: relative
}

#frame .content .message-input .wrap input {
  float: left;
  border: none;
  width: calc(100% - 90px);
  padding: 12px 32px 12px 8px;
  font-size: 14px;
  color: #32465a
}

@media screen and (max-width: 735px) {
  #frame .content .message-input .wrap input {
    padding: 15px 32px 16px 8px
  }
}

#frame .content .message-input .wrap input:focus {
  outline: none
}

#frame .content .message-input .wrap .attachment {
  position: absolute;
  right: 62px;
  z-index: 4;
  margin-top: 13px;
  font-size: 18px;
  color: #435f7a;
  opacity: .5;
  cursor: pointer
}

@media screen and (max-width: 735px) {
  #frame .content .message-input .wrap .attachment {
    margin-top: 17px;
    right: 65px
  }
}

#frame .content .message-input .wrap .attachment:hover {
  opacity: 1 !important
}

#frame .content .message-input .wrap button {
  float: right;
  border: none;
  width: 50px;
  padding: 12px 0;
  cursor: pointer;
  background: #32465a;
  color: #f5f5f5
}

@media screen and (max-width: 735px) {
  #frame .content .message-input .wrap button {
    padding: 16px 0
  }
}

#frame .content .message-input .wrap button:hover {
  background: #435f7a
}

#frame .content .message-input .wrap button:focus {
  outline: none
}

.query-modal .modal-content {
  border: none;
  background: #f60194;
}
.query-modal .modal-header {
  border: none;
  padding: 10px 15px 0;
  background: #f60194;
}
.query-modal .modal-body p {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

.future-left-img img{
   max-width: 100%;
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
   border-radius: 5px;
}


.provide-service-sec{
  padding: 60px 0;
}

.provide-service-sec h3{
  text-align: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 30px;
}
.country-img-con{
  text-align: center;
}
.country-img-con ul{
    padding: 0;
}

.country-img-con ul li {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 8px;
  margin: 5px;
  position: relative;
}


.country-img-con ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 4px;
  height: 20px;
  background: #f90194;
  border-radius: 2px;
}


.country-img-con ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 4px;
  height: 20px;
  background: #f90194;
  border-radius: 2px;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff1182;
}
.pm-top-0{
   padding-top: 0 !important;
}

@media screen and (max-width: 991px) {
   .hero_section {
    height: 900px;
    padding-top: 140px;
    text-align: center;
   }

   .hero_img img {
    position: relative;
   }

   .login-acton{
    margin: 0 auto;
    margin-bottom: 30px;
   }
   .user-tab-login {
      width: 100%;
      display: inherit;

    }
    .user-tab-register {
      width: 100%;
      display: inherit;
      margin-left: 0px;
    }
    .wating_img img {
      left: -34px;
      top: 0%;
    }

}