:root {
    --theme-color-1: #f62e2d;
    --theme-color-2: #00733d;
    --theme-color-3: #f12f3a;
    --theme-color-4: #5a5a5c;
}

.bg-theme-color-1{
    background-color: var(--theme-color-1);
}
.bg-theme-color-2{
    background-color: var(--theme-color-2);
}
.bg-theme-color-3{
    background-color: var(--theme-color-3);
}
.bg-theme-color-4{
    background-color: var(--theme-color-4);
}
.text-theme-color-3{
    color: var(--theme-color-3);
}
.font-weight-500{
    font-weight: 500;
}
.font-weight-600{
    font-weight: 600;
}
.ul-padding{
    padding-left: 40px;
}
.h3{
    font-size: 18px;
    font-weight: 500;
}
.btn{
    background: var(--theme-color-3);
    color: #ffffff;
    height: 40px;
    line-height: 40px;
    padding: 0px 30px;
}
.btn:hover{
    background: #ffffff;
    color: var(--theme-color-3);
    border-color: var(--theme-color-3);
}
.btn.style-1{
    background: #fff;
    border: 2px solid var(--theme-color-3);
    padding: 0;
    font-size: 10px;
    font-weight: 700;
    height: 35px;
    line-height: 35px;
}
.btn.style-1:hover{
    background: var(--theme-color-3);
    color: #ffffff;
}
.btn.style-2{
    color: #fff;
}
.btn.style-2:hover{
    color: var(--theme-color-3);
}

.logo{
    margin-top: 0px !important;
}
.logo .logo-img{
    max-width: 90px;
}
.sticky-wrapper.is-sticky{
    /*z-index: 99999;
    position: fixed;
    width: 100%;*/
}
.float-btn{
    position:fixed;
    width:60px;
    height:60px;
    bottom:50px;
    right:10px;
    background-color: var(--theme-color-3);
    color:#FFF;
    border-radius:50px;
    text-align:center;
    box-shadow: 2px 2px 3px #999;
    font-size: 20px;
}

.float-btn .float-btn-icon{
    margin-top:21px;
}
.action_btn{
    border-radius: 4px;
    font-size: 75%;
    padding: 4px 7px;
    margin-right: 5px;
    font-weight: 400;
    color: #fff !important;
}
.action_btn.success{
    background-color: #93BE52;
}
.action_btn.danger{
    background-color: #FC6180;
}
.custom_loading {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    background-color: rgba(0, 0, 0, .7)
}
.spinner {
    position: absolute;
    /*top: 40%;
    left: 48%;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.spinner > i {
    font-size: 50px;
}
header{
    border-bottom: 1px solid var(--theme-color-3);
}
header.fixed-header{
    /*position: fixed !important;*/
    top: 0;
    left: 0;
    width: 100% !important;
}
header .navbar{
    margin-top: 19px;
}
#content{
    background: transparent;
}
.heading-block h2{
    font-size: 20px;
}
.intro-section .intro-sec{
    background: #ffffff;
    padding: 20px;
}
.menu-box-section a i{
    font-size: 36px;
    color: #ffffff;
}
.menu-box-section .intro-txt-bnr{
    text-align: center;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
}
.menu-box-section .menu-box{
    /*background: #222;*/
    height: 150px;
    position: relative;
}
.menu-box-section .menu-box h4{
    margin: 0px;
    font-size: 18px;
}
.menu-box-section .menu-box-col:nth-child(1),
.menu-box-section .menu-box-col:nth-child(3){
    padding-right: 0px;
}
.footer-mobile-nav {
    background: var(--theme-color-3);
    position: fixed;
    bottom: 0;
    /*height: 65px;*/
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 9;
}
.footer-mobile-nav a{
    color: #ffffff;
    font-size: 24px;
}
.bloc-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pre_loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}
.pre_loader img {
    /*width: 250px;
    height: 200px;*/
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    /*background-image: url(../images/logo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;*/
    /*margin: -100px 0 0 -100px;*/
}

/* Mobile Menu CSS */
aside {
    width: 300px;
    left: 0;
    top: 0;
    /*left: 300px;*/
    z-index: 1001;
    position: fixed;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: #fff;
    -webkit-transition: 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1), 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
}

.show-sidebar aside {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

aside .toggle {
    padding-left: 30px;
    padding-top: 30px;
    position: absolute;
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.show-sidebar aside .toggle .burger:before, .show-sidebar aside .toggle .burger span, .show-sidebar aside .toggle .burger:after {
    background: #000;
}

.show-sidebar aside {
    -webkit-box-shadow: 10px 0 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 10px 0 30px 0 rgba(0, 0, 0, 0.1);
}

aside .side-inner {
    /*padding: 30px 0;*/
    padding: 20px 0 30px 0;
    height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

aside .side-inner .profile {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 30px;
    /*padding-bottom: 30px;*/
    border-bottom: 1px solid #efefef;

    display: flex;
    padding: 0 20px 20px;
    align-items: center;
    height: 70px;
}
aside .side-inner .profile .img-box{
    margin-right: 15px;
}

aside .side-inner .profile img {
    /*width: 80px;
    margin: 0 auto 20px auto;*/
    width: 55px;
    margin: 0;
    border-radius: 50%;
}

aside .side-inner .profile .name {
    /*font-size: 18px;*/
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
}

aside .side-inner .profile .country {
    /*font-size: 14px;*/
    font-size: 12px;
    color: #cfcfcf;
}

aside .side-inner .profile.custom-profile-1{
    background: #fff;
    color: #000;
    margin: 0 15px;
    padding: 13px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
}
aside .side-inner .profile.custom-profile-1 .name,
aside .side-inner .profile.custom-profile-1 .country{
    color: #000000 !important;
    font-weight: 500;
}
aside .side-inner .counter {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #efefef;
    text-align: center;
}

aside .side-inner .counter div .number {
    display: block;
    font-size: 20px;
    color: #000;
}

aside .side-inner .counter div .number-label {
    color: #cfcfcf;
}

aside .side-inner .nav-menu ul, aside .side-inner .nav-menu ul li {
    padding: 0;
    margin: 0px;
    list-style: none;
}

aside .side-inner .nav-menu ul li a {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    /*color: #8b8b8b;*/
    color: #ffffff;
    position: relative;
    -webkit-transition: .3s padding-left ease;
    -o-transition: .3s padding-left ease;
    transition: .3s padding-left ease;
}

aside .side-inner .nav-menu ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0px;
    background-color: var(--theme-color-3);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s opacity ease, .3s visibility ease, .3s width ease;
    -o-transition: .3s opacity ease, .3s visibility ease, .3s width ease;
    transition: .3s opacity ease, .3s visibility ease, .3s width ease;
}

aside .side-inner .nav-menu ul li a:active, aside .side-inner .nav-menu ul li a:focus, aside .side-inner .nav-menu ul li a:hover {
    outline: none;
}

aside .side-inner .nav-menu ul li a:hover {
    background: #fcfcfc;
    color: #000;
}

aside .side-inner .nav-menu ul li a:hover:before {
    width: 4px;
    opacity: 1;
    visibility: visible;
}

aside .side-inner .nav-menu ul li.active a {
    background: #fcfcfc;
    color: #000;
}

aside .side-inner .nav-menu ul li.active a:before {
    opacity: 1;
    visibility: visible;
    width: 4px;
}

aside .side-inner .nav-menu ul li .collapsible {
    position: relative;
}

aside .side-inner .nav-menu ul li .collapsible:after {
    background-image: url(../images/chevron-right-icon.png);
    background-size: 20px 20px;
    display: inline-block;
    width: 20px;
    height: 20px;
    content:"";

    /*content: "\f105";
    font-size: 18px;
    font-family: 'Font Awesome 5 Free1';*/
    position: absolute;
    right: 20px;
    /*width: 20px;
    height: 20px;*/
    line-height: 20px;
    -webkit-transition: .3s transform ease;
    -o-transition: .3s transform ease;
    transition: .3s transform ease;
}

aside .side-inner .nav-menu ul li .collapsible[aria-expanded="true"] {
    background: #fcfcfc;
    color: #000;
}

aside .side-inner .nav-menu ul li .collapsible[aria-expanded="true"]:before {
    opacity: 1;
    visibility: visible;
    width: 4px;
}

aside .side-inner .nav-menu ul li .collapsible[aria-expanded="true"]:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    /*content: url(../images/chevron-right-solid.svg);*/

    background-image: url(../images/chevron-right-solid.svg);
    /*background-size: 10px 20px;
    display: inline-block;
    width: 10px;
    height: 20px;
    content:"";*/
}
aside .side-inner .profile{
    position: relative;
}
aside .side-inner .profile .user_active{
    position: absolute;
    top: 45px;
    left: 55px;
    color: green;
}

/* Burger */
.burger {
    width: 28px;
    height: 32px;
    cursor: pointer;
    position: relative;
    z-index: 99;
    float: right;
}

.burger:before, .burger span, .burger:after {
    width: 100%;
    height: 2px;
    display: block;
    background: #000;
    border-radius: 2px;
    position: absolute;
    opacity: 1;
}

.burger:before, .burger:after {
    -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    content: "";
}

.burger:before {
    top: 4px;
}

.burger span {
    top: 15px;
}

.burger:after {
    top: 26px;
}

/* Hover */
.burger:hover:before {
    top: 7px;
}

.burger:hover:after {
    top: 23px;
}

/* Click */
.burger.active span {
    opacity: 0;
}

.burger.active:before, .burger.active:after {
    top: 40%;
}

.burger.active:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
    /*for IE*/
}

.burger.active:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
    /*for IE*/
}

.burger:focus {
    outline: none;
}
body.show-sidebar{
    /*position: fixed;*/
}
header .custom-menu{
    margin: 15px;
    display: flex;
    align-items: center;
    /*justify-content: space-around;*/
}
header .custom-menu a{
    background: #fff;
    width: 80px;
    height: 65px;
    display: block;
    text-align: center;
    color: #000;
    font-weight: 500;
    padding: 12px 5px 5px 5px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
}
header .custom-menu a:nth-child(2){
    margin: 0 15px;
}
header .custom-menu a i{
    font-size: 24px;
}
header .custom-menu a span{
    display: block;
    /*font-size: 11px;*/
    font-size: 10px;
}
/* End Mobile Menu CSS */
.pagination{
    display: block;
}
.pagination>li>a.current {
    background: var(--theme-color-3);
    color: #fff;
    border-color: var(--theme-color-3);
}

/* Cookies CSS */

.cookie_wrapper {
    position: fixed;
    /*bottom: 50px;*/
    bottom: 10px;
    /*right: -370px;*/
    /*right: -395px;*/
    right: 0px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}
.cookie_wrapper.show {
    /*right: 20px;*/
    display: block;
}
.cookie_wrapper .cookie-title {
    display: flex;
    align-items: center;
    column-gap: 15px;

}
.cookie-title i {
    /*color: #4070f4;*/
    color: var(--theme-color-3);
    font-size: 32px;
}
.cookie-title h2 {
    /*color: #4070f4;*/
    color: var(--theme-color-3);
    font-weight: 500;
    font-size: 1.8rem;
}
.cookie_wrapper .cookie-data {
    margin-top: 16px;
}
.cookie_wrapper .cookie-data p {
    color: #333;
    font-size: 16px;
}
.cookie-data p a {
    /*color: #4070f4;*/
    color: var(--theme-color-3);
    text-decoration: none;
}
.cookie-data p a:hover {
    text-decoration: underline;
}
.cookie_wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie_wrapper .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: var(--theme-color-3);
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}
.cookie_wrapper .buttons #acceptBtn:hover {
    background-color: var(--theme-color-1)
}
#declineBtn {
    border: 2px solid var(--theme-color-3);
    background-color: #fff;
    color: var(--theme-color-3);
}
#declineBtn:hover {
    background-color: var(--theme-color-3);
    color: #fff;
}
/* End Cookies CSS */
.category-box-main .category-box{
    background: var(--theme-color-3);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    font-weight: 600;
    font-size: 16px;
    margin: 10px;
    letter-spacing: -0.4px;
    width: 100px;
    display: block;
    text-align: center;
    color: #ffffff !important;
    float: left;
}
.cbp-caption-overlayBottomAlong .cbp-caption.no-hover:hover .cbp-caption-defaultWrap {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.my_account_menu_box li{
    list-style: none;
    background: #fff;
    /*border: 1px solid #000000;*/
    /*box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
    /*box-shadow: 0 0 26px #efefef;*/
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    border-radius: 5px;
}
.my_account_menu_box li a{
    display: block;
    padding: 10px 20px;
    color: #000000;
    font-size: 16px;
}
.my_account_menu_box li a i{
    margin-right: 10px;
}

.profile-box{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 30px;
    /*padding-bottom: 30px;*/
    border-bottom: 1px solid #efefef;

    display: flex;
    padding: 0 20px 20px;
    align-items: center;
    height: 70px;
}
.profile-box .img-box{
    margin-right: 15px;
    flex: 0 0 auto;
}

.profile-box img {
    /*width: 80px;
    margin: 0 auto 20px auto;*/
    width: 55px;
    margin: 0;
    border-radius: 50%;
}

.profile-box .name {
    /*font-size: 18px;*/
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
}

.profile-box .country,
.profile-box .info{
    /*font-size: 14px;*/
    font-size: 12px;
    color: #cfcfcf;
}

.profile-box{
    background: #fff;
    color: #000;
    /*margin: 0 15px;*/
    padding: 13px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
}
.profile-box .name,
.profile-box .country,
.profile-box .info{
    color: #000000 !important;
    font-weight: 500;
}
.profile-box .info{
    display: block;
}
.my-account-page .profile-box{
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.blog article{
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,.1);
    margin-bottom: 10px;
}
.blog-pages .post-detail{
    border: none;
    margin: 0;
    padding-bottom: 0px;
}
.blog-pages .pagination{
    margin-top: 30px;
}
.event-listing-page .event-date{
    font-size: 16px;
    margin-bottom: 0px;
}
.event-listing-page .event-venue{
    font-size: 13px;
    margin: 0px;
}
.event-show-page .event-date{
    font-size: 16px;
}
.event-show-page .event-venue{
    font-size: 13px;
    margin-top: 0px;
}
.blog-btn-main{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.blog-btn-main a{
    width: 49%;
}
form #togglePassword{
    position: absolute;
    top: 35px;
    right: 25px;
    font-size: 16px;
    cursor: pointer;
}
.custom-member-list-style .team-inside{
    display: flex;
    width: 100%;
    text-align: left;
    /*min-height: 80px;*/
    min-height: 100px;
    color: #252525;
    align-items: center;
    margin-bottom: 15px;
}
.custom-member-list-style .team-inside .img-sec{
    /*width: 80px;
    height: 80px;*/
    width: 100px;
    height: 100px;
}
.custom-member-list-style .txt-sec{
    padding: 0px 10px;
}
.custom-member-list-style .team-inside .txt-sec span{
    margin-bottom: 0px;
}
.custom-member-list-style .team-inside .txt-sec h5{
    margin-bottom: 2px;
}
.custom-member-list-style .team-inside .txt-sec span{
    font-size: 12px;
}
.member-show-page .profile-company-content .nav{
    flex-wrap: nowrap;
    overflow: auto;
}
.member-show-page .profile-bnr{
    background-image: none;
}
.member-show-page .compny-profile .user-info{
    background: var(--theme-color-3);

    position: relative;
}
.member-show-page .compny-profile .user-info .user-in{
    padding: 15px 15px 0 15px;
    display: flex;
    width: 100%;
}
.member-show-page .user-profile .pro-avatar{
    width: 100px;
    height: 100px;
    margin-top: -25px;
    border-radius: 50%;
    background: var(--theme-color-3);
}
.member-show-page .user-profile .pro-avatar img{
    border-radius: 50%;
    height: 100%;
    width: 100%;
}
.member-show-page .user-text{
    width: calc(100% - 100px);
    padding: 0 10px 0;
}
.member-show-page .compny-profile .user-info h1{
    font-size: 17px;
    font-weight: 500;
}
.member-show-page .compny-profile .user-info h6{
    margin-bottom: 0px;
}
.member-show-page .compny-profile .user-info .social-links a{
    font-size: 16px;
    border: 2px solid #fff;
}
.member-show-page .profile-bnr{
    padding-top: 50px;
}
.member-show-page .compny-profile .user-info .social-links{
    margin-bottom: 15px;
    margin-top: 15px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    background: var(--theme-color-3);
    color: #ffffff;
}
.user-business-lead-box{
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    border-radius: 4px;
    padding: 10px 0;
}
.user-business-lead-box .team-inside{
    align-items: normal;
    display: block;
    padding: 10px 0px;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0px;
    min-height: 65px;
}
.user-business-lead-box .action_btn_box{
    padding: 0 10px;
}
.user-business-lead-box .action_btn_box .action_btn{
    font-size: 12px;
}
.user-business-lead-box .action_btn_box .action_btn:nth-child(1){
    margin-right: 15px;
}
/* custom-form */
.custom-form{
    padding: 15px !important;
}
/* End custom-form */
.contact-info{
    box-shadow: 0 0 20px rgba(0,0,0,0.06);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
    min-height: 0px;
}
.contact-info li p {
    font-size: 15px;
    line-height: 26px;
    margin-top: 15px;
}
.contact-info li a{
    font-size: 15px;
    line-height: 20px;
}
.contact-info .social-icon{
    margin-top: 0px;
}
.contact-info .social-icon a{
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: 1px solid var(--theme-color-3);
    color: var(--theme-color-3);
}
.image-box-main{
    /*display: contents;*/
    list-style: none;

}
.image-box-main li{
    width: 150px;
    display: inline-block;
    margin-right: 20px;
}
.image-box-main .com-inside {
    display: block;
    margin-bottom: 15px;
}
.image-box-main .com-inside h5{
    color: #000;
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
}
.custom-list-group{
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.06);
    color: #000000;
    font-weight: 500;
}
.desktop-menu{
    display: none !important;
}
header .logo{
    text-align: center;
    width: 100%;
}
.footer-menu{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.agree-content{
    max-height: 200px;
    overflow: auto;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 12px;
}
.agree-content p{
    line-height: 20px;
}
.terms_agree_page .login-register form{
    padding: 20px;
}

#footer .block .block-title:not(.no-underline):before{
    transform: translate(-50%, -50%);
    left: 50%;
}
.list-bg-grey li{
    background: #f3f3f3;
}
aside .side-inner .nav-menu ul li a img{
    width: 15px;
    height: 15px;
    margin-right: 16px;
}
.my_account_menu_box img{
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.sidebar-white{
    background: #ffffff;
}
.sidebar-white .side-inner .nav-menu ul li a{
    /*color: #141414;*/
    color: #000000;
}
.sidebar-white .side-inner .custom-menu img{
    width: 24px;
    height: 24px;
}
.sidebar-white .side-inner .profile.custom-profile-1{
    background-color: var(--theme-color-3);
}
.sidebar-white .side-inner .profile.custom-profile-1 .name, .sidebar-white .side-inner .profile.custom-profile-1 .country{
    color: #ffffff !important;
}
.sidebar-white .side-inner .nav-menu ul li a img{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.sidebar-white .side-inner .nav-menu ul li .collapsible:after {
    background-image: url(../images/chevron-right-solid.svg);
}
.sidebar-white .side-inner .nav-menu ul li a:hover {
    background: #dfdede;
}
.menu_tabs_section .nav-tabs .nav-link{
    color: #252525;
    font-weight: 500;
    font-size: 18px;
    border: none;
    padding: 10px 10px;
}
.menu_tabs_section .nav-tabs .nav-link.active{
    background: #fff;
    color: #000000;
    border-radius: 20px 20px 0 0;
}
.menu_tabs_section .nav-tabs .nav-link img{
    width: 40px;
}
.menu_tabs_section .nav-tabs{
    border: none;
}
.menu_tabs_section .menu_tabs{
    display: flex;
    overflow: auto;
    margin-bottom: 0px;
}
.menu_tabs_section .menu_tabs .mt-item{
    list-style-type: none;
}
.menu_tabs_section .menu_tabs .mt-item img{
    width: 40px;
}
.menu_tabs_section .menu_tabs .mt-item .mt-link{
    font-weight: 500;
    font-size: 18px;
    border: none;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252525;
    width: max-content;

}
.menu_tabs_section .menu_tabs .mt-item .mt-link.active{
    background: #fff;
    color: #000000;
    border-radius: 20px 20px 0 0;
}
.menu_tab_content{
    display: none;
}
.menu_tab_content.show{
    display: block;
}
.home-pages.blog article,
.blog-pages.blog article {
    box-shadow: none;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
    border-bottom: 20px solid var(--theme-color-3);
}
.home-pages.blog article:first-child{
    /*border-top-left-radius: 0px;*/
}
.home-pages.blog .post-detail,
.news_listing_page .post-detail{
    padding-top: 0px;
    text-align: left;
}
.home-pages.blog .post-title-main,
.news_listing_page .post-title-main{
    font-weight: 600;
}
#footer .block .block-title:not(.no-underline):before{
    background: var(--theme-color-3);
}
#footer a:hover{
    color: var(--theme-color-3);
}
.business_inquires_main {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
}
.business_inquires_main article{
    background-color: #f5f5f5 !important;
    border-radius: 20px !important;
    border-bottom: none !important;
}
.business_inquires_main article .post-detail{
    /*padding-left: 20px;
    padding-right: 20px;*/
    padding-left: 10px;
    padding-right: 10px;
}
.business_inquires_main article .post-detail .title a{
    color: var(--theme-color-3);
    font-weight: 600;
    display: block;
}
.business_inquires_main article .content{
    font-size: 14px;
}
.business_inquires_main article .lead-img{
    border-radius: 15px;
}
.business_inquires_main article .post-other-info{
    display: flex;
    justify-content: space-between;
    align-items: end;
    /*padding: 0 20px;*/
    padding: 0 10px;
    margin-top: -35px;
}
.business_inquires_main article .post-other-info a{
    color: var(--theme-color-3);
    font-size: 16px;
}
.business_inquires_main article .post-other-info .chat_link{
    font-size: 24px;
}
.profile-box.member_card{
    background-color: var(--theme-color-3);
    position: relative;
    /*max-width: 250px;*/
    max-width: 200px;
    width: 100%;
    /*margin-left: 20px;
    margin-top: -35px;*/
    margin: 0 0 0 0;
    padding: 8px;
}
.profile-box.member_card .user_active {
    position: absolute;
    top: 45px;
    left: 52px;
    /*color: green;*/
    color: #a8cf45;
    font-size: 12px;
}
.profile-box.member_card .name, .profile-box.member_card .country, .profile-box.member_card .info{
    color: #ffffff !important;
}
.profile-box.member_card .user_info span{
    display: block;
}
.member_card_main{
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
}
.member_card_main .member_card_box{
    background: #f5f5f5;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.member_card_main .member_card_box .profile-box{
    max-width: 100%;
}
.member_card_main .member_card_box .member_info{
    padding: 15px 0 0 0;
}
.member_card_main .member_card_box .member_info .title{
    color: var(--theme-color-3);
    font-weight: 600;
    display: inline-block;
}
.member_card_main .member_card_box .member_info .view_profile_link{
    color: var(--theme-color-3);
    font-weight: 600;
    float: right;
}
.member_card_main .member_card_box .member_info p{
    line-height: 1.5;
    font-size: 14px;
}
.member_card_main .member_card_box .member_info .social-links a{
    height: 30px;
    width: 30px;
    display: inline-block;
    line-height: 34px;
    text-align: center;
    background: var(--theme-color-3);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    margin-right: 5px;
}
.member_card_main .member_card_box .member_info .social-links a.chat_btn{
    float: right;
}
header .user-profile-menu{
    position: absolute;
    right: 25px;
    top: 25px;
}
header .user-profile-menu img{
    width: 45px;
    border-radius: 50%;
}
header .user-profile-menu span{
    color: #252525;
    font-weight: 600;
    margin-right: 5px;
}
header .user-profile-menu .dropdown-menu-right{
    right: 0;
    top: 50px !important;
    left: auto !important;
    transform:none !important;
}
header .dropdown-item.active, header .dropdown-item:active,header .dropdown-item:hover{
    background-color: var(--theme-color-3);
    color: #fff;
}

.single-member-page .profile-bnr{
    background-size: cover !important;
}
.single-member-page .user-profile .pro-avatar{
    border-radius: 50%;
    padding: 15px;
    background: transparent;
}
.single-member-page .user-profile .pro-avatar img{
    border-radius: 50%;
}
.single-member-page .compny-profile .user-info{
    background: #f5f5f5;
    bottom: -50px;
}
.single-member-page .compny-profile .user-info h1{
    color: #252525;
    font-weight: 600;
    font-size: 32px;
}
.single-member-page .compny-profile .user-info h6{
    color: #252525;
    font-size: 16px;
}
.single-member-page .compny-profile .user-info .social-links a{
    color: var(--theme-color-3);
    border: none;
    font-size: 20px;
    height: 30px;
    width: 30px;
}
.deliverable_main .deliverable_box{
    position: relative;
    display: inline-block;
    width: 100px;
    margin: 10px;
}
.deliverable_main .deliverable_box img{
    width: 100px;
    height: 100px;
}
.deliverable_main .deliverable_box .deliverable_number{
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    font-style: normal;
    z-index: 1;
    right: -8px;
    top: -5px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    background: var(--theme-color-3);
    color: #fff;
    text-align: center;
}
.deliverable_main .deliverable_box .deliverable_title{
    text-align: center;
    margin: 5px 0;
}
.single_deliverable_box{
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
}

.single_deliverable_box .deliverable_icon_box{
    /*flex: 0 0 30%;*/
    flex: 0 0 110px;
    padding: 10px 0;
    background: var(--theme-color-3);
    border-radius: 8px 0 0 8px;
    text-align: center;
    color: #fff;
}
.single_deliverable_box .deliverable_icon_box img{
    max-width: 70px;
    max-height: 70px;
}
.single_deliverable_box .deliverable_name{
    display: block;
    font-weight: 500;
    margin: 5px 0 0 0;
}
.single_deliverable_box .deliverable_datetime{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    /*flex: 0 0 70%;*/
    flex: 0 0 calc(100% - 110px);
}
header .back_btn{
    position: absolute;
    left: 10px;
    z-index: 9999;
}
header .back_btn img{
    width: 30px;
}
#upcoming-events-tab article,
#updates-tab article,
.news_listing_page article,
.event-listing-page article{
    margin-bottom: 0px;
    height: 100%;
}
.about-sec ul, .about-sec ol{
    font-weight: 500;
    color: #141414;
    line-height: 26px;
    text-rendering: optimizeLegibility;
    /*padding-left: 40px;*/
}
@media screen and (min-width: 768px) {
    .member-show-page .compny-profile .user-info{
        padding-left: 0px;
    }
    .member-show-page .user-profile .pro-avatar{
        position: relative;
        left: 0px;
    }
}
@media screen and (min-width: 992px) {
    .footer-mobile-nav {
        /*display: none;*/
    }
    .mobile-menu{
        /*display: none;*/
    }

}
@media screen and (max-width: 991px) {
    .desktop-menu{
        display: none !important;
    }
    header .logo{
        text-align: center;
        width: 100%;
    }

    .cookie_wrapper{
        max-width: 100%;
        border-radius: 0px;
        border-top: 2px solid var(--theme-color-3);
        bottom: 0;
    }
    .cookie_wrapper.show{
        /*right: 0px;*/
        display: block;
    }
}
@media screen and (max-width: 600px) {
    .business_inquires_main article .post-other-info a {
        font-size: 12px;
    }
    .business_inquires_main article .post-other-info .chat_link {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .single-member-page .profile-bnr .container{
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    .single-member-page .compny-profile .user-info{
        /*padding-left: 155px;*/
        border-radius: 0;
    }
    .single-member-page .user-profile .pro-avatar{
        /*float: left;*/
        width: 150px;

        position: absolute;
        margin-top: 0px;
        left: 20px;
        top: -50px;
    }
    .single-member-page .user-info .user-in{
        padding: 20px 20px;
    }
    .single-member-page .compny-profile .user-info h1{
        font-size: 26px;
    }
    .single-member-page .user-info .social-links{
        text-align: center;
        margin-top: 10px;
    }
    .single-member-page .compny-profile .user-info h6{
        margin-bottom: 10px;
    }
    .single-member-page .profile-company-content{
        padding-top: 60px;
    }
    .single-member-page .member_info{
        padding-left: 155px;
    }
}