/********** Template CSS **********/

* {
    direction: rtl; 
    font-family:'Tajawal', sans-serif, arial;
}



a {
    text-decoration: none;
    color: var(--dark);
}

h1,
h2,
h3,
h4,
h5 {
    color: #000;
}

:root {
    --primary: #4d6982;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
    --primary2: #e0dcd9;
    --primary3: #fcb131;
    --bg: #f9f9f9;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.color-primary{
    color: var(--primary) !important;

}
.color-blue {
    background-color: #a3c7e8;
    border: none;
    outline: #a3c7e8;
    color: white;
    transition: all 0.5s
}
    .color-blue:hover {
        background-color: white;
        color: #a3c7e8;
    }
.share-button {
    width: 154px;
    height: 35px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .3s linear;
    top: 190px;
    left: 0px;
    position: fixed;
    z-index: 999999;
    background-color: hsla(0,0%,100%,.8);
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 10%);
}

    .share-button:hover {
        transform: scale(1.1);
    }

    .share-button span {
        position: absolute;
        width: 100%;
        height: 100%;
        background: hsla(0,0%,100%,.8);
        color: black;
        text-align: center;
        line-height: 35px;
        z-index: 999;
        transition: .6s linear;
        border-radius: 50px;
    }

    .share-button #copy {
        border: none;
        background-color: transparent;
    }

    .share-button:hover span {
        transform: translateX(-100%);
        transition-delay: .3s;
    }

    .share-button a, .share-button button {
        flex: 1;
        font-size: 15px;
        color: #2d3436;
        text-align: center;
        transform: translateX(-100%);
        opacity: 0;
        transition: 0.3s linear;
    }

    .share-button:hover a, .share-button:hover button {
        opacity: 1;
        transform: translateX(0);
    }

    .share-button a:nth-of-type(1) {
        transition-delay: 1s;
    }

    .share-button a:nth-of-type(2) {
        transition-delay: 0.8s;
    }

    .share-button a:nth-of-type(3) {
        transition-delay: 0.6s;
    }

    .share-button button {
        transition-delay: 0.4s;
    }


/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/**/



/*** Button ***/

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}
.main-category .btn-lg-square {
    width: 5rem;
    height: 5rem;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border: none ;
}



/*** Navbar ***/


.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar-brand img {
    width: 250px;
    height: 60px;
    object-fit: contain;
}



/*** Header ***/

#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../../SharqCenter/img/3.jpg) center center no-repeat;
    background-size: cover;
    height: 300px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/

.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #4D6075 !important;
    background-color: var(--bg) !important;

}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Img Border ***/

.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** category ***/

.category-item {
    transition: .5s;
    background-color: #fff !important;
    box-shadow: 0 0 45px rgb(0 0 0 / 7%);
    height: 150px !important;
}

.category-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/

.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Event Listing ***/

.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.event-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.event-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/*-------------------------------------------------------------- # Gallery --------------------------------------------------------------*/

.gallery {
    padding-bottom: 0;
}

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 20px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ff5821;
}

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #c08850 !important;
    }

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(71, 61, 58, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-area {
    background: #555 url(../../SharqCenter/img/sharqcenter.jpg) repeat  scroll 0% 34%;
   color: #535353;

}

#footer {
    background: rgba(213, 213, 213, 0.9) none repeat scroll 0% 0%;
    padding: 0 0 30px 0;
    font-size: 16px;


}

#footer .footer-top {
    background: rgba(255, 255, 255, 0.89) none repeat scroll 0% 0%;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

    #footer .footer-top .footer-info h3 {
        font-size: 34px;
        margin: 0 0 20px 0;
        line-height: 1;
        font-weight: 700;
        color: var(--primary);
    }

    #footer .footer-top .footer-info p {
        font-size: 16px;
        line-height: 2;
        margin-bottom: 0;
        color: #4D6075;
        text-align: justify !important;
        text-justify: inter-word;
        word-break: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    #footer .footer-top .footer-info #read_more {
        text-decoration-line: underline;
        color: var(--primary2);
    }
    #footer .footer-top .footer-info #read_more {
        text-decoration-line: underline;
        color: var(--primary);
    }
.unit-section .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 5rem 0;
}
.unit-section .social-links2 {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
   
}

#footer .footer-top .social-links a {
    display: inline-block;
    background: #f4f5f8;
    color: var(--primary);
    line-height: 1;
    margin-right: 4px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.unit-section {
    margin-top: 3rem;
}

.unit-section .social-links a {
    display: inline-block;
    color: #777;
    line-height: 1;
    margin-right: 4px;
    width: 50px;
    height: 50px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
    .unit-section .social-links2 a {
        display: inline-block;
        color: #fff;
        line-height: 1;
        margin-right: 4px;
        width: 40px;
        height: 40px;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        border-radius: 50px;
    }

#footer h3 {
    color: #c08852;
}
#footer .footer-top .social-links a i {
    line-height: 0;
    font-size: 16px;
}

.unit-section .social-links a i {
    line-height: 0;
    font-size: 30px;
}
.unit-section .social-links2 a i {
    line-height: 0;
    font-size: 20px;
}

#footer .footer-top .social-links a:hover,
.unit-section .social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
}
#footer .footer-top .social-links a:hover,
.unit-section .social-links2 a:hover {
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
}



#footer .footer-top h4,
.unit-info .portfolio-info h6 {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}


#footer .footer-top h4::before,
#footer .footer-top h4::after,
.unit-info .portfolio-info h6::before,
.unit-info .portfolio-info h6::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
}

    #footer .footer-top h4::before,
    .unit-info .portfolio-info h6::before {
        right: 0;
        background: #b24cff;
    }

    #footer .footer-top h4::after,
    .unit-info .portfolio-info h6::after {
        background: var(--primary3);
        width: 60px;
    }

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    #footer .footer-top .footer-links ul i {
        padding-right: 8px;
        color: var(--primary);
    }

#footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #ececec;
    padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #282828;
}

    #footer .footer-top .footer-links ul a:hover {
        color: #d8b999;
    }

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    line-height: 2;
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
    background: #d8b999;
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
    background: #13a456;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-weight: bold;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ddd;
}

.bg-appointment {
    background: linear-gradient(#f8f5ef, #f8f5ef, url(../img/Almaigliah_001.jpg))center center no-repeat;
    background-size: cover;
}
    .bg-appointment .container {
        background-color: #4D6075;
        border-radius: 40px 0px;
        color:#fff;
    }
    .appointment-form {
    background: #e4ccac;
}


/**********************************************/

@media (min-width: 992px) {
    .text-lg-start {
        text-align: right!important;
    }
}

.me-auto {
    margin-inline: auto;
}

.bg-primary {
    background-color: transparent !important;
}

.text-end {
    text-align: left!important;
}

.rounded-circle{
    border:1px solid var(--primary);
}

.text-primary {
    color: #047aab !important;
}

.btn-primary,
.btn-dark,
.btn-outline-primary.active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary {
    border-color: #3f97bb !important;
}

    .btn-primary:hover,
    .btn-dark:hover,
    .btn-outline-primary:hover,
    .btn-outline-primary::after {
        color: #000;
        background-color: #3f97bb !important;
        border-color: #3f97bb !important;
    }

    .btn-outline-primary:focus,
    .btn-outline-primary.active:focus {
        box-shadow: none;
    }

.btn-primary:focus {
    color: #000;
    background-color: #3f97bb !important;
    border-color: #3f97bb !important;
}

.dropdown-mega {
    position: static;
}

    .dropdown-mega .dropdown-menu {
        width: 60%;
        top: auto;
        left: 5%;
    }

@media (min-width: 768px) {
    .mega-content .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

.icon .fa {
    font-size: 35px;
}

.text-start {
    text-align: right!important;
}


/* Facts Section
--------------------------------*/

#facts {
    background-color: #DEE2E6;
    background-size: cover;
    padding: 60px 0 0 0;
    position: relative;
}

#facts::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
}

#facts .container {
    position: relative;
}

#facts .counters span {
    font-weight: bold;
    font-size: 48px;
    display: block;
}

#facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #111;
}

#facts .facts-img {
    text-align: center;
    padding-top: 30px;
}

.selectpicker {
    background-color: transparent;
    border: none;
}

#WAButton {
    margin-bottom: 115px!important;
}

.back-to-top {
    margin-bottom: 0px!important;
}

.floating-wpp-button {
    width: 60px !important;
    height: 60px !important;
}

.floating-wpp .floating-wpp-popup.active {
    width: 390px !important;
    z-index: 1 !important;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    /*background: url("../img/onfocus-video-bg.jpg") center center no-repeat;*/
    background-color: var(--primary);
    background-size: cover;
    padding: 50px 0 30px 0;
    position: relative;
}

    .counts::before {
        content: "";
        position: absolute;
        background: #fff;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .counts .title h3 {
        font-size: 36px;
        font-weight: 700;
        color: #4D6075;
    }
    .counts .title {
        position: relative;
        color: #4D6075;
        margin-bottom: 40px;
    }

.title h3 {
    font-size: 36px;
    font-weight: 700;
    color: #4D6075;
}
.counts .counters span {
    font-size: 36px;
    display: inline-flex;
    font-weight: 700;
    color: var(--primary);
    right: 0;
    margin: 1rem;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #4D6075;
}

.counts p {
    color: #4D6075;
}

@media (min-width: 1200px) {
    .counts {
        background-attachment: fixed;
    }
}


/*===================================================
count-area
===================================================*/

.count-area {
    position: relative;
    background-color: #F3F3F3;
}

.count-area .count-item {
    text-align: center;
}

.count-area .count-item-circle {
    height: 100px;
    width: 100px;
    border: 1px solid #777;
    border-radius: 100%;
    margin: 0px auto;
    position: relative;
}

.count-item-circle span {
    font-size: 40px;
    height: 40px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    right: 0px;
}

.count-area .chart {
    position: relative;
}

.percent-blocks {
    padding-top: 45px;
    padding-bottom: 70px
}

.count-item h2 {
    font: 700 30px "Open Sans", sans-serif;
    text-align: center;
    margin: 30px 0px 5px;
}

.chart canvas {
    position: absolute;
}

.count-item h5 {
    font: 500 15px "Open Sans", sans-serif;
    padding: 2px 15px;
    text-transform: uppercase;
    margin: 0px;
    border-left: 2px solid #c08852;
    border-right: 2px solid #c08852;
    display: inline-block;
}

.image-upload>input {
    display: none;
}

.nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 55px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: none;
    overflow-x: auto;
    z-index: 1 !important;
}

.nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-weight:bold;
    font-size: 13px;
    color: #444444;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}
.dropdown-item {
    white-space:unset;
}
    .nav__link:hover {
    background-color: #eeeeee;
}

.nav__link--active {
    color: var(--primary);
}

.nav__icon {
    font-size: 18px;
}

a:hover {
    color: var(--primary);
}

@media screen and (max-width: 992px) {
    .nav {
        display: flex;
    }
}


/*--------------------------------------------------------------
    # Blog
    --------------------------------------------------------------*/

.blog {
    padding: 40px 0 20px 0;
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 20px 0 20px 0;
}

.blog .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {
    color: var(--color-primary);
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #c1c8d0;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

    .blog .entry .entry-meta ul li + li {
        padding-right: 20px;
    }

.blog .entry .entry-meta i {
    font-size: 16px;
    line-height: 0;
}

.blog .entry .entry-meta a {
    color: #777777;
    font-size: 16px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 16px;
    border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
    background: #df3740;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #a4afba;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #606f7e;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: var(--color-primary);
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 16px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 16px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px;
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #556270;
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
    color: rgba(85, 98, 112, 0.5);
    margin-right: 5px;
}

.blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
    width: 60px;
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: var(--color-primary);
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 16px;
    color: #6b7b8d;
    margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 16px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 16px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 16px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #e9797f;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #606f7e;
}

.blog-pagination {
    color: #8795a4;
    margin-top: 10px;
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: #556270;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li.active,
.blog-pagination li:hover {
    background: var(--primary);
}

.blog-pagination li.active a,
.blog-pagination li:hover a {
    color: var(--primary);
    color: white;
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: var(--color-primary);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: #de323c;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #556270;
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 16px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: #556270;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 16px;
    color: #aaaaaa;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #96a2af;
    font-size: 16px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid white;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 16px;
}


/*--------------------------------------------------------------
    # Top Bar
    --------------------------------------------------------------*/

#topbar {
    background: #39312f;
    font-size: 16px;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    height: 40px;
}

#topbar .contact-info i {
    font-style: normal;
    color: #ff5821;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #ff5821;
}

#topbar .cta a {
    color: #fff;
    background: #ff5821;
    padding: 10px 20px;
    display: inline-block;
    transition: 0.3s;
}

#topbar .cta a:hover {
    background: #ff6b3b;
}

.swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}


/*--------------------------------------------------------------
    # Portfolio Details
    --------------------------------------------------------------*/

.blog {
    padding-top: 40px;
}

.blog .blog-slider img {
    width: 100%;
}

.blog .blog-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.blog .blog-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
    opacity: 1;
    border: 1px solid var(--color-primary);
}

.blog .blog-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.blog .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(var(--color-secondary-rgb), 0.15);
}

.blog .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-secondary-light);
}

.blog .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.blog .portfolio-info ul li+li {
    margin-top: 10px;
}

.blog .portfolio-description {
    padding-top: 30px;
}

.blog .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog .portfolio-description p {
    padding: 0;
    text-align: justify;
}

.blog .social {
    position: relative;
    left: 0;
    right: 0;
    opacity: 1;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: right;
}

.blog .social a {
    transition: color 0.3s;
    color: var(--color-white);
    background: var(--primary);
    margin: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: 0.3s;
}

.blog .social a i {
    line-height: 0;
    font-size: 16px;
}

.blog .social a:hover {
    background: var(--color-primary-light);
}

.blog .social i {
    font-size: 18px;
    margin: 0 2px;
}

.input-group input {
    color: #000;
}

.page-subheader .sort-by-list {
    display: inline-block;
    padding: 0px;
}

.page-subheader .sort-by-list li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.page-subheader .sort-by-list li.active a {
    padding-right: 20px;
    border-color: #3F3F3F;
    background-color: #444343;
    color: #FFF;
}

.page-subheader .sort-by-list li a {
    position: relative;
    display: block;
    padding: 2px 7px;
    background-color: #F4F4F4;
    border-width: 1px;
    border-style: solid;
    border-color: #DDDCDC;
    color: #414040;
}

.page-subheader .items-per-page {
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

.page-subheader .items-per-page label {
    display: inline-block;
    margin-right: 10px;
}

.page-subheader .items-per-page b {
    font-weight: 400;
}

.page-subheader .items-per-page .sel {
    display: inline-block;
    width: 60px;
    position: relative;
}

.dealer-section-space {
    margin: -5px -14px 25px;
    background-color: #9B9B9B;
    padding: 10px 25px;
    font-size: 18px;
    text-transform: uppercase;
}

#prop-smlr-slide_0 .owl-item {
    padding: 5px;
}

#prop-smlr-slide_0 .owl-item .item-entry {
    padding: 10px
}

#prop-smlr-slide_0 .owl-item .item-entry h5 {
    text-transform: uppercase;
    font-weight: 600;
    color: #9B9B9B;
    letter-spacing: 2px;
    position: relative;
}

.register-area {
    padding: 40px;
}

.bottom-section {
    padding: 1rem;
    background-color: #F3F3F3;
    text-align: center;
}

.page-search {
    background: #5672f9;
    padding: 30px 0;
}

.page-search .advance-search .form-group {
    margin-bottom: 0;
}

.page-search .advance-search .form-control {
    border: 1px solid #fff;
    color: #fff;
}

.page-search .advance-search ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.page-search .advance-search ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.page-search .advance-search :-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.page-search .advance-search :-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}



.bg-gray {
    background: #F5F5F5;
}

.bg-1 {
    background: url("../images/home/hero.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-2 {
    background: url(../images/subscription/subscription-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-3 {
    background: url(../images/call-to-action/cta-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-4 {
    background: #5672f9;
}

.navigation {
    padding: 20px 0;
}

.login-button {
    border: 2px solid #dedede;
    margin-right: 8px;
    padding: 6px 20px !important;
}

.add-button {
    background: #28a745;
    color: #fff;
    padding: 8px 20px !important;
    display: inline-block;
}

.add-button:hover {
    color: #fff;
}

.main-nav .nav-item .nav-link {
    font-size: 16px;
    line-height: 43px;
    padding: 0 20px;
}

.main-nav .nav-item .nav-link span {
    margin-left: 4px;
}

.main-nav .nav-item .nav-link.dropdown-toggle {
    padding-right: 10px;
}

.main-nav .nav-item .dropdown-toggle::after {
    border: none;
}

.main-nav .nav-item.active .nav-link {
    color: #5672f9;
}

.main-nav .search .nav-link i {
    font-size: 15px;
    height: 43px;
    width: 43px;
    line-height: 43px;
    color: #5672f9;
    border: 1px solid #5672f9;
    border-radius: 3px;
    text-align: center;
}

.main-nav .search .input-group {
    width: 300px;
}

.main-nav .search .input-group .input-group-addon {
    background: #5672f9;
    color: #fff;
    border: 1px solid #5672f9;
}

.main-nav .search .input-group .input-group-addon i {
    font-size: 15px;
    padding-right: 5px;
    padding-left: 5px;
}


.nav-item.dropdown {
    position: relative;
}

.dropdown-item.active,
.dropdown-item:active {
    background: #5672f9;
}

.dropdown-item {
    font-size: 16px;
    padding: 10px 60px 10px 10px;
}

@media (min-width: 768px) {
    .dropdown-slide {
        position: static;
    }
    .dropdown-slide .open>a,
    .dropdown-slide .open>a:focus,
    .dropdown-slide .open>a:hover {
        background: transparent;
    }
    .dropdown-slide.full-width .dropdown-menu {
        left: 0 !important;
        right: 0 !important;
    }
    .dropdown-slide:hover .dropdown-menu {
        display: none;
        opacity: 1;
        display: block;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 1;
        visibility: visible;
        color: #777;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    .dropdown-slide .dropdown-menu {
        margin-top: 0;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        position: absolute;
        padding: 15px;
        border: 1px solid #ebebeb;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: .3s all;
        position: absolute;
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        transition: visibility 0.2s, opacity 0.2s, -webkit-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
        transition: visibility 0.2s, opacity 0.2s, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
        transition: visibility 0.2s, opacity 0.2s, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99), -webkit-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
    }
}

@media (min-width: 768px) and (max-width: 480px) {
    .dropdown-slide .dropdown-menu {
        -webkit-transform: none;
        transform: none;
    }
}

@media (max-width: 480px) {
    .navbar-toggleable-md>.container {
        margin-right: 0;
        margin-left: 0;
        padding-left: 25px;
        padding-right: 25px;
    }
}

.hero-area .content-block h1,
.hero-area-2 .content-block h1 {
    color: #fff;
    font-size: 65px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .hero-area .content-block h1,
    .hero-area-2 .content-block h1 {
        font-size: 40px;
    }
}

.hero-area .content-block p,
.hero-area-2 .content-block p {
    color: #fff;
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero-area .content-block p,
    .hero-area-2 .content-block p {
        font-size: 17px;
    }
}

.hero-area {
    padding: 100px 0 0;
}

.hero-area .content-block {
    padding-bottom: 80px;
}

.hero-area .advance-search {
    background: #fff;
    padding: 40px 30px;
    border-radius: 3px;
    margin-bottom: -50px;
    box-shadow: -1px 3px 6px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
    .hero-area .advance-search {
        margin-bottom: -80px;
    }
}

@media (max-width: 480px) {
    .hero-area .advance-search .block {
        display: block !important;
    }
}

.hero-area .advance-search .form-control {
    color: #000;
    border-color: #dedede;
}

.hero-area .advance-search button {
    display: block;
}

@media (max-width: 480px) {
    .hero-area .advance-search button {
        width: 100%;
    }
}

.short-popular-category-list {
    margin-top: 40px;
}

.short-popular-category-list h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}

.short-popular-category-list ul {
    margin-top: 20px;
}

.short-popular-category-list ul li {
    margin: 0 2px;
}

.short-popular-category-list ul li a {
    border: 1px solid #404040;
    color: #c1c1c1;
    font-weight: 200;
    padding: 4px 10px;
    font-size: 12px;
}

.short-popular-category-list ul li a i {
    margin-right: 2px;
}

.page-breadcrumb {
    background: none;
    margin-top: 10px;
    margin-bottom: 0;
}

.page-breadcrumb li a {
    color: #fff;
}

.page-breadcrumb li.active {
    color: #fff !important;
}

.category-slider {
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.07);
    background: #fff;
    padding: 20px 0;
}

.btns {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.btns button {
    padding: 15px 40px;
    border-radius: 5px;
    margin: 0 10px;
    cursor: pointer;
    transition: .3s;
}

.btns button:hover,
.btns button.active {
    color: #fff;
}


/*********css********/

.slideInRight .nav-pills .nav-item .btn {
    color: var(--dark);
}

.slideInRight .nav-pills .nav-item .btn:hover,
.slideInRight .nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.slideInRight .nav {
    position: initial;
    bottom: 0;
    width: 100%;
    height: 55px;
    box-shadow: none;
    background-color: #ffffff;
    display: flex;
    overflow-x: auto;
    z-index: 1 !important;
}

.slideInRight .nav-item a {
    padding-right: 2rem;
    padding-left: 2rem;
}

@media screen and (min-width: 1024px) {
    .slideInRight .nav {
        display: block;
    }
}

.slideInRight .nav-pills .nav-item .active {
    border-bottom: none;
}

.tab-content a,
.unit-info a {
    color: #777;
}

.portfolio-details .unit-info .portfolio-info {
    box-shadow: none;
}

.tag {
    background-color: var(--primary);
}

.bottom-section .fa {
    margin-left: 1rem;
}

.unit-section .tag {
    width: fit-content;
}

.unit-section .vertical-line {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

@media (max-width: 768px) {
    .unit-section .vertical-line {
        border-left: none;
        border-right: none;
    }
}

@media (min-width: 768px) {
    .col-md-8 {
        flex: 0 0 auto;
        width: 100%;
    }
}

#choose-filter {
    display: none;
}

.search-section a,
.search-section button {
    border-radius: 0;
}

.search-btn {
   
    -ms-flex: 0 1 63.89px;
    flex: 0 1 63.89px;
    height: 52.89px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 0;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
}

    .search-btn .btn,
    #myModal .btn {
        margin: auto 2px;
        border: 1px solid var(--primary) !important;
        background-color: var(--primary) !important;
        color: #fff;
        border-radius: 4px;
    }

@media (min-width: 768px) {
    .search-section .col-md-6 {
        flex: 0 0 auto;
        width: 45%;
    }
}

.search-btn .btn .fa,
#myModal .btn .fa,
.search-btn .btn .fas,
#myModal .btn .fas {
    color: var(--primary);
}

.after_modal_appended {
    position: relative;
}

.modal-sec .modal {
    position: relative !important;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop {
    display: none !important;
}

.modal-open {
    overflow-y: auto !important;
}

@media (max-width: 992px) {
    .search-filter {
        display: none;
    }
}

.modal-sec .modal {
    z-index: 0;
}

.close {
    background-color: transparent;
}

.modal-header {
    border-bottom: none;
}

.modal-dialog .modal-content {
    border-radius: 0;
}

#mymodal {
    padding-left: 0;
}

.card {
    border-radius: 0;
}

@media (max-width: 992px) {
    .top-bar {
        display: none !important;
    }
}
.top-bar {
    background: var(--bg) !important;
}

.modal-open {
    padding-right: 0 !important;
}

.post-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-box {
    margin: 10%;
}

.swiper {
    z-index: 0 !important;
}

.py-4 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.ps-3, .ps-3 a {
    color: var(--primary);
}

.btn-lg-square .fa, .btn-lg-square .far {
    font-size: x-large;
}
.main-category .btn-lg-square .fa, .main-category .btn-lg-square .far {
    font-size: large;
}
.fa-search{
    color:#fff;
}
.bg-light {
    background-color: #edf2f9 !important;
}
    .bg-light .rounded {
        border: 1px dashed #c08852 !important;
        justify-content: center;
    }
.page-item .active {
    background-color: #c08850!important;
    border-color: #c08850 !important;
}


    .page-item.active .page-link {
        z-index: 3;
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

#searchForm select, #StoreMainActivitiesSelect {
    border-width: 2.5px !important;
    border-style: solid !important;
    background-color: #fff !important;
    color: var(--primary);
}
.btn-outline-danger, .btn-dark {
    color: #fff;
    border-color: var(--primary);
    background-color: var(--primary);
}
.btn-outline-danger:hover, .btn-dark:hover, .btn-outline-danger:focus, .btn-outline-danger:active:focus {
    border-image: linear-gradient(var(--primary2), var(--primary3))30 !important;
    border-width: 3px !important;
    border-style: solid !important;
    background-color: #fff !important;
    color: var(--primary);
}
.container-xxl {
    padding-top: 2rem !important;
}
.rounded-circle {
    border: 1px solid var(--primary) !important;
}


#trail_version {
    background: #ff000024;
    font-size: 16px;
    -webkit-transform: rotate(630deg);
    top: 40vh;
    left: -48px;
    position: fixed;
    z-index: 999999;
    height: 40px;
    width: 130px;
    display: flex;
    justify-content: center;
    line-height: 39px;
}

@media screen and (min-width: 992px) and (max-width: 1111px) {
    .navbar-expand-lg .navbar-collapse {
        font-size: 10px;
    }
}



.fa-3x {
    font-size: 3rem;
}

.widget-close {
    float: right;
    color: #636363;
    position: relative;
    background: transparent;
    border: none;
    font-size: 2rem;
    z-index: 1;
}

.sub-category {
    margin-top: 3.5rem;
}

/* Style for the icons */
.wrapper .icon {
    position: absolute;
    top: 0;
    width: 2rem;
    display: flex;
    align-items: center;
}

.main-category .icon:first-child {
    left: 9%;
    background-color: var(--primary);
    height: 80%;
    margin-top: 3rem;
}

.main-category .icon:last-child {
    right: 9%;
    justify-content: flex-end;
    background-color: var(--primary);
    height: 80%;
    margin-top: 3rem;
    display: none;
}




.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:active {
    position: relative;
    background-color: var(--light);
    color: var(--primary);
}

.btn:focus, .btn:active:focus, .btn.active:focus,
.btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none !important;
    box-shadow: none !important;
}

input {
    box-shadow: none !important;
}

select {
    box-shadow: none !important;
}

textarea {
    box-shadow: none !important;
}

.slotholder:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 25;
}

.bottom-header .d-sm-flex {
    margin-right: 10rem;
}