/* Font */


/* font-family: "Poppins", sans-serif;
font-family: "Roboto", sans-serif;
font-family: "Inter", sans-serif; 
font-family: "Open Sans", sans-serif;*/

/* Font Poppins Bold */

@font-face {
    font-family: "Poppins";
    src: url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.woff2') format('woff2');
    font-weight:700;
}

@font-face {
    font-family: "Poppins";
    src: url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2');
    font-weight:600;
}

/* Font Poppins Medium */
@font-face {
    font-family: "Poppins";
    src: url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.woff2') format('woff2');
    font-weight:500;
}

/* Font Poppins Regular */
@font-face {
    font-family: "Poppins";
    src: url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.woff2') format('woff2');
    font-weight:400;
}

@font-face {
    font-family: "Poppins";
    src: url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.woff2') format('woff2');
    font-weight:300;
}
/* OpenSans */
@font-face {
    font-family: "OpenSans";
    src: url('../fonts/OpenSans-Light.woff') format('woff'),
        url('../fonts/OpenSans-Light.woff2') format('woff2');
    font-weight:300;
}



/* Font Roboto Bold */
@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto-Bold.woff') format('woff'),
        url('../fonts/Roboto-Bold.woff2') format('woff2');
    font-weight:700;
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto-Medium.woff') format('woff'),
        url('../fonts/Roboto-Medium.woff2') format('woff2');
    font-weight:500;
}

@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto-Regular.woff') format('woff'),
        url('../fonts/Roboto-Regular.woff2') format('woff2');
    font-weight:400;
}
@font-face {
    font-family: "Roboto";
    src: url('../fonts/Roboto-Light.woff') format('woff'),
        url('../fonts/Roboto-Light.woff2') format('woff2');
    font-weight:300;
}

/* Font Inter  */
@font-face {
    font-family: "Inter";
    src: url('../fonts/Inter-Regular.woff') format('woff'),
        url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight:400;
}

body{
	margin: 0;
	padding: 0;	
}

html {
	box-sizing: border-box;
}
*,
*:before,
*:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
:root{
    --black:#000000;
    --white:#ffffff;
    --text-light:rgba(255,255,255,0.5);
    --pink:#F66AA7;
    --border-light:rgab(255,255,255,0.3);
    --border-pink:#F66AA7;
}
.text-white{
    color: var(--white);
}
.text-black{
    color: var(--black);
}
.text-light{
    color: var(--text-light);
}
.text-pink{
    color: var(--pink);
}

.fw-400{
    font-weight: 400;
}
.fw-700{
    font-weight: 700;
}
.fw-600{
    font-weight: 600;
}
.fw-500{
    font-weight: 500;
}
.fw-300{
    font-weight: 300;
}
a{
    text-decoration: unset;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: var(--black);
    font-family: "Roboto", sans-serif;
}
a:hover{
    color: var(--pink);
}

ul{
	list-style: none;
	padding-inline-start: 0px;
	margin: 0;
	padding: 0;
}
body{
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
    background-color: #ffffff;
    color: var(--black);
}
h1,h2,h3,h4,h5,h6{
	margin-bottom: 0;
	font-family: "Poppins", sans-serif;
	color: var(--black);
}


/* comaon */
h1{
    font-size: 60px;
    line-height: 80px;
    font-weight: 600;
}

.fs-121{
    font-size: 100px;
    line-height: 140px;
    font-weight: 600;
}

h2{
    font-size: 30px;
    line-height: 51px;
    font-weight: 600;
}

h3{
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
}

h4{
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
}
.fs-36{
    font-size: 28px;
    line-height: 44px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

p{
    color: var(--black);
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0px;
}
.btn-pink,
.border-pink-btn,
.border-btn,
.btn-black{
    display: inline-block;
    background-color: var(--pink);
    border: 1px solid var(--pink);
    color: var(--white) !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px !important;
    padding: 12px 20px;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    font-family: "Roboto", sans-serif;
}
.login0with,.text-center {
	font-size: 20px;
	line-height: 28px !important;
}
.btn-pink:hover{
    color: var(--pink) !important;
    background-color: transparent;
}
.btn-black{
    border:1px solid var(--black);
    background-color: var(--black);
    color: var(--white) !important;
}
.btn-black:hover{
    border:1px solid var(--pink);
    background-color: var(--pink);
    color: var(--white) !important;
}
.border-pink-btn{
    border:1px solid var(--pink);
    background-color: transparent;
    color: var(--pink) !important;
}
.border-pink-btn:hover{
    background-color: var(--pink);
    color: var(--white) !important;
}
.border-btn{
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--black) !important;
}
.border-btn:hover{
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.btn-border{
    display: inline-block;
    background-color: transparent;
    border: 1px solid #000000;
    color: var(--black) !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px !important;
    padding: 12px 20px;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    font-family: "Roboto", sans-serif;

}
.btn-border:hover{
    color: var(--white) !important;
    background-color: var(--pink) !important;
    border: 1px solid var(--pink);
}

.fs-28{
    font-size: 22px;
    line-height: 30px;
}
.text-underline{
    text-decoration: underline;
}
/* .container{
    max-width: 1145px;
} */
.sec-pad{
    padding:100px 8px;
}
.text-uppercase{
    text-transform: uppercase;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-20{
    margin-bottom: 20px;
}
.font-poppins{
    font-family: "Poppins", sans-serif;
}

.font-roboto{
    font-family: "Roboto", sans-serif;
}
.font-opensans{
    font-family: "Open Sans", sans-serif;
}
.fs-30 {
    font-size: 30px;
    line-height: 40px;
}
.px-125{
    padding-right: 20px;
    padding-left: 20px;
}
/* ====  Header =====  */
.mx-40{
    margin-right: 40px;
    margin-left: 40px;
}
.px-40{
    padding: 0px 20px;
}
.cursor-pointer,
.cursor-pointer *{
    cursor: pointer;
}
.container{
    max-width: 1200px;
    padding: 0px;
}

.header-sec{
    border-bottom: 1px solid rgba(32, 35, 86, 0.08);
    background-color: var(--white);
    
}
.header-sec .navbar{
    position: sticky;
    width: 100%;
    transition: all 0.3s ease-in-out;
    
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: var(--white) !important;
    padding:26px 0px;
    
}
.navbar ul.navbar-nav{
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0px auto;
    flex-direction: row;
    padding-left: 10px;
    
}
.header-sec .container-fluid{
    flex-wrap: wrap;
}
.navbar ul.navbar-nav li a,
.navbar ul li.dropdown a{
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Inter", sans-serif;
    
}
.navbar ul li.active a,
.navbar ul li a:hover{
    color: var(--pink);
}
.navbar .navbar-brand img{
    height: 24px;
    width: auto;
    object-fit: contain;
}
.navbar-light .navbar-toggler{
    color: unset;
    border-color: unset;
    padding: 0px !important;
    border:unset;
}
.navbar-light .navbar-toggler:focus{
    box-shadow: unset !important;
}
.header-sec .btn-black{
    font-size: 16px;
    line-height: 16px !important;
}
.header-sec .login-details{
    display: flex;
    align-items: center;
    gap: 11px;
}
.header-sec .login-details a.btn-pink,
.header-sec .login-details a.border-pink-btn{
    padding: 12px 18px;
    cursor: pointer;
    font-size: 20px;
}
.header-sec .search-input input{
    border: 1px solid rgba(0,0,0,0.2);
    background-color: transparent;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    max-width: 200px;
}
.header-sec .search-input input:focus{
    box-shadow: unset;
    outline: unset;
}
.header-sec .search-input{
    position: relative;
}
.header-sec .search-input::before{
    content: "";
    background-image: url("../images/icons/header-search-light.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
 .border-icon img{
    height: 26px;
    width: 26px;
    object-fit: contain;
}
.border-icon{
    height: 58px !important;
    width: 58px !important;
    border: 1px solid rgba(0,0,0,0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.header-sec .dropdown a.nav-link,
.header-sec .dropdown a.nav-link:hover {
    color: var(--black);
    padding: 10px;
}
.header-sec .dropdown a.dropdown-toggle::after{
    border: unset;
    background-image: url("../images/icons/dropdown-icon-pink.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 9px;
    width: 16px;
    vertical-align: 2px;
    filter: brightness(0) invert(0);
}
.header-sec .navbar ul li.dropdown a.dropdown-toggle:hover::after,
.header-sec .navbar ul li.dropdown.active a.dropdown-toggle::after{
    filter: unset;
}
.menu-bar-icon  ul.navbar-nav{
    flex-direction: column;
    gap: unset;
    justify-content: start;
    align-items: start;
    gap: unset;
}
.menu-bar-icon .navbar-collapse{
    position: absolute;
    background: var(--white);
    box-shadow: 0px 0px 14px rgba(0,0,0,0.1);
    right: 0px;
    top: 85px;
    padding: 0px 18px;
    max-width: 253px;
    width: 100%;
    border-radius: 20px;
}
.menu-bar-icon  ul.navbar-nav li a{
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
    text-align: start;
    font-family: "Roboto", sans-serif;
    width: 100%;
    display: block;

}  

.menu-bar-icon  ul.navbar-nav > li{
    padding: 20px 0px;
    border-bottom: 1px solid #C4C4C4;
    width: 100%;
    display: block;
}
.menu-bar-icon  ul.navbar-nav > li:last-child{
    border-bottom: unset;
}
.desktop-menu .navbar-nav .dropdown-menu{
    position: absolute;
    top: 70px;
    background-color: var(--white);
    box-shadow: 0px 0px 14px rgba(0,0,0,0.1);
    border: 1px solid #E5E5E5;
    padding: 12px;
    border-radius: 12px;
    min-width: 394px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.desktop-menu .navbar-nav .dropdown-menu li a,
.right-sidebar ul li a{
    color: var(--black);
    padding: 13px 10px;
    font-family: "Inter", sans-serif;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}
.desktop-menu .navbar-nav .dropdown-menu li,
.right-sidebar ul li{
    margin-bottom: 10px;
}
.desktop-menu .navbar-nav .dropdown-menu li a:hover,
.right-sidebar ul li a:hover{
    background-color: rgba(229,229,229,0.4);
}
.desktop-menu .navbar-nav .dropdown-menu li a.selected,
.right-sidebar ul li a.selected{
    background-color: #E5E5E5;
}
.desktop-menu .navbar-nav .dropdown-menu .state-title li a,
.right-sidebar ul .state-title li a {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid #000;
    width: 100%;
    display: block;
}
.desktop-menu .navbar-nav .dropdown-menu .state-title li,
.right-sidebar ul .state-title li {
    margin-bottom: 12px;
    width: 100%;
}
.desktop-menu .navbar-nav .dropdown-menu .state-info{
    height: 336px;
    overflow-y: scroll;
    padding-right: 6px;
}

.desktop-menu .navbar-nav .dropdown-menu .state-info::-webkit-scrollbar-track,
.right-sidebar .state-info::-webkit-scrollbar-track
{
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	background-color: #F5F5F5;
}

.desktop-menu .navbar-nav .dropdown-menu .state-info::-webkit-scrollbar,
.right-sidebar .state-info::-webkit-scrollbar
{
	width: 2px;
	background-color: #E5E5E5;
}

.desktop-menu .navbar-nav .dropdown-menu .state-info::-webkit-scrollbar-thumb,
.right-sidebar .state-info::-webkit-scrollbar-thumb
{
	background-color: #000000;
}

/* Popup */
.login-pop .modal-dialog{
    max-width: 638px;
    margin: 0 auto;
}
.login-pop .modal-dialog .modal-content{
    border-radius: 20px;
    background-color: var(--white);
    padding: 34px 50px;
}

.login-pop .modal-dialog .modal-content .modal-body{
    padding: 0px;
}
.login-pop .modal-dialog .modal-content .modal-body .title{
    margin-bottom: 16px;
}
.form-style input{
    border: 1px solid rgba(0,0,0,0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
}
.form-style input::placeholder{
    color: rgba(0,0,0,0.5);
}
.form-style input:focus{
    box-shadow: unset;
    border-color: rgba(0,0,0,0.3);
}
.form-style .mb-18{
    margin-bottom: 18px;
}
.form-style .form-check{
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-style .form-check input{
    width: 38px !important;
    height: 38px;
    border: 1px solid #C4C4C4;
    padding: 0px 0px;
    appearance: none;
    /* background-color: #E1E1E5;
    border: 6px solid #fff; */
    background-clip: border-box;
    /*border-radius: 50%;*/
    box-shadow: 0px 0px 0px 1px #C4C4C4 ;

}
.form-style  .form-check-input:checked[type=checkbox]{
    background: var(--pink);
    border: 4px solid #fff;
}
.form-style .form-check-input:checked[type=radio]{
    background: var(--pink);
    border: 4px solid #fff;
}
.form-style .form-check label{
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    font-family: "Roboto", sans-serif;
}
.text-link{
    color: var(--black);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    text-decoration: underline;
    font-family: "Roboto", sans-serif;
}
.login-pop .login-info form{
    margin-bottom: 28px;
}
.login-pop .login-info hr{
    background-color: #C4C4C4;
    opacity: 1;
    margin: 0px;
}
.login-pop .login-info  p.fs-22,
.login-pop .register-info p.fs-22{
    font-size: 22px;
    line-height: 26px;
    color: var(--black) !important;
}
.login-pop .login-info .login-with{
    /*padding: 28px 0px;*/
    /*border-bottom: 1px solid #C4C4C4;*/
}
.login-pop .social-icon ul{
    display: flex;
    gap: 18px;
    justify-content: center;
}
.login-pop .social-icon ul li a{
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: 1px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-pop .social-icon ul li a:hover{
    background-color: var(--pink);
}
.login-pop .social-icon ul li a:hover img{
    filter: brightness(0) invert(1);
}
.login-pop .register-info{
    padding-top: 10px;
}
.mobile-block{
    display: none;
}

/* ==== Location Sidebar ==== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 238px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: right 0.3s ease;
    /* background-color: #1d1e21;
    padding: 65px 30px; */
    /* box-shadow: -2px 0 5px rgba(0,0,0,0.5); */
}


.mobile-menu.show {
    right: 0;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.mobile-menu.show .overlay {
    display: block;
}

.right-sidebar ul{
    padding: 12px 8px;
    height: 100vh;
    z-index: 99999;
    position: relative;
    background: #ffffff;
}  
.right-sidebar .state-info{
    height: calc(100% - 30px);
    overflow: scroll;
}

/* ==== End Location Sidebar ==== */

/* =========== End Header ===================  */

/* ------------footer-------- */
.footer-sec{
    padding: 100px 30px 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: unset !important;
    position: relative;
}
.footer-sec:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1300px;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(./../images/footer/footer-bg-img-light.png);
    z-index: -1;
}
.footer-sec .footer-box{
    background-color: var(--white);
    border-radius: 20px;
    padding: 80px 40px 25px;
    /* margin: 0 30px; */
}
.footer-sec .btn-border{
    border: 1px solid rgb(0 0 0 / 10%);
}
.footer-sec .post-btns a{
    font-size: 23px;
    line-height: 26px !important;
}
.footer-sec .post-btns{
    gap: 15px;
    margin: 23px 0 80px;
}
.footer-sec .heading-line h3{
    font-size: 55px;
    line-height: 82px;
    font-weight: 500;
}
.footer-sec .heading-line p{
    font-size: 28px;
    line-height: 32px;
    font-weight: 300;
} 
/* .footer-sec .social-media a{
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    opacity: 20%;
} */
.footer-sec .social-media a:hover{
    margin-top: -10px;
    transition: .3s;
}
.footer-sec .footer-part h4{
    margin-bottom: 20px;
}
.footer-sec .footer-menu{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-sec .footer-menu li{
    margin-bottom: 32px;
}
.footer-sec .footer-menu a{
    color: rgba(0,0,0,0.5);
}
.footer-sec .footer-menu a:hover{
    color: var(--pink);
}
.footer-sec .social-part{
    max-width: 300px;
    margin-left: auto;
}
.footer-sec .newsletter-part{
    max-width: 300px;
}
.footer-sec .newsletter-form .input-group{
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 50px !important;
    height: 60px;
    /* padding: 20px !important; */
}
.footer-sec .newsletter-form .input-group span{
    padding-right: 12px;
}
.footer-sec .newsletter-form input{
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black);
    background-color: transparent;
    background-clip: padding-box;
    border: unset;
    height: 60px;
    padding: 20px !important;
}
.footer-sec .newsletter-form input:focus{
    box-shadow: unset !important;
}
.footer-sec .newsletter-form input::placeholder{
    color: rgb(0 0 0 / 50%);
}
.footer-sec .copyright-line{
    padding-top: 100px;
    gap:20px;
    flex-wrap: wrap;
}
.footer-sec .copyright-line a{
    font-size: 22px;
    line-height: 25px;
    font-weight: 400;
    color: var(--black);
    margin: 0;
}
.footer-sec .copyright-line a:hover{
    color: var(--pink);
}
.footer-sec .copyright-line li{
    border-right: 2px solid var(--white);
    padding: 0 20px;
}
.footer-sec .copyright-line li:last-child{
    border-right: unset;
    padding-right: 0;
}
.footer-sec .main-logo{
    width: 215px;
    margin: 0;
}
.footer-sec .navbar-brand img{
    margin-right: 0 !important;
}

/* ----footer-top-sec--- */
.footer-top-sec .icon-txt{
    gap:18px;
    margin-bottom: 30px;
}
.footer-top-sec .icon-txt img{
    background: var(--black);
    width: 60px;
    height: 60px;
    padding: 12px;
    border-radius: 50px;
}
.footer-top-sec{
    padding: 0 125px;
    /* margin: 0 100px 0; */
}
.footer-top-sec h3{
    font-weight: 400;
    padding: 40px 0 15px;
}
.footer-top-bg{
    position: relative;
}
.footer-top-bg::before{
    content: '';
    background-image: url('../images/home/footer-above-bg-light.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height:calc(100% + 300px) ;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* -------------filter popup------- */
.filter-modal .modal-dialog {
    max-width: 1140px;
}
.filter-modal .modal-dialog .modal-content {
    padding: 32px 26px;
}
.filter-modal .filter-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 22px;
    line-height: 29px;
    color: var(--pink);
    font-family: "Open Sans", sans-serif;
}
.filter-modal .filter-btn.black-btn {
    display: inline-flex;
    gap: 5px;
    background-color: transparent;
    border: 1px solid var(--black) !important;
    color: var(--black) !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px !important;
    padding: 8px 13px;
    text-align: center;
    border-radius: 50px;
    font-family: "Roboto", sans-serif;
    transition: 0.3s ease-in-out;
}
.filter-modal .filter-btn.black-btn:hover {
    background-color: #E5E5E5;
}
.filter-select-row{
    column-gap: 20px;
    row-gap: 22px;
    margin-top: 24px;
}
.filter-select-row .select-bar{
    display: flex !important;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgb(0 0 0 / 10%);
    height: 58px;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    width: calc(50% - 10px);
}
.filter-select-row .select-bar p{
    color: var(--black);
    font-weight: 400;
}
.filter-select-row .select-bar li a{
    color: var(--black) !important;
    padding-right: 30px;
}
.filter-select-row .dropdown-toggle::after{
    display: none;
}
.filter-select-row .dropdown-toggle::before{
    content: '';
    position: absolute;
    top: 8px;
    right: 0;
    transform: rotate(-90deg);
    width: 15px;
    height: 15px;
    background-image: url(../images/home/left-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(1) invert(1);
}
.filter-select-row .dropdown-menu.show{
    border: 1px solid #E5E5E5;
    padding: 15px 0;
    border-radius: 12px;
    min-width: 100%;
    width: 100%;
}
.filter-select-row .dropdown-menu.show li a {
    padding: 10px !important;
    font-size: 16px;
    line-height: 20px;
}


.inner-banner,
.second-img{
   position: relative;
}
.inner-bg-img .first-img{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: auto;
   z-index: -1;
}
.inner-bg-img .sec-img{
   position: absolute;
   top: 50%;
   bottom: 0;
   left: 0;
   width: 100%;
   height: auto;
   z-index: -1;
}


/* -------inner-banner--- */

.inner-banner{
    padding: 100px 20px 0;
}

.inner-banner .filter-search{
    margin: 37px auto 90px;
    width: auto;
    gap:36px;
}
.inner-banner .filter-search input{
    background: #2F2F2F;
    border: unset;
    height: 60px;
    border-radius: 50px;
    padding: 15px 20px;
    color: var(--white);
    font-size: 22px;
    line-height: 29px;
    font-weight: 400;
    box-shadow: 0px 0px 24px 0px #D6D6D629;
}
.inner-banner .filter-search input::placeholder{
    color: var(--white);
    font-size: 22px;
    line-height: 29px;
    font-weight: 400;
}
.inner-banner .filter-search input:focus{
    outline: unset;
}
.inner-banner .filter-search .search-input{
    position: relative;
}
.inner-banner .filter-search .search-input::before{
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background-image: url(../images/icons/search-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.inner-banner .filter-btn{
    display: flex;
    gap: 5px;
    background-color: transparent;
    border: 1px solid var(--pink);
    color: var(--pink);
    font-size: 22px;
    font-weight: 400;
    line-height: 29px !important;
    padding: 15px 20px;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}
.inner-banner .filter-btn:hover{
    background: var(--pink);
    color: var(--white);
}
.inner-banner .filter-btn:hover img{
    filter: invert(0) brightness(4);
}

.recently-active-sec .active-side p{
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
}


/* Select */
.right-select{
    outline: unset !important;
    box-shadow: unset !important;
    width: auto;
    border: unset;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-align: right;
}
.right-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png") white no-repeat calc(100% - 5px) !important; 
  }
  /*For IE*/
  .right-select::-ms-expand { display: none; }
  .right-select option{
    /* text-align: left !important; */
    font-size: 16px;
  }
.sub-banner{
    position: relative;
}
.sub-banner .inner-bg-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}
.sub-banner .inner-bg-img img{
    height: 100%;
    width: 100%;
    z-index: -1;
    position: relative;
} 

/* location popup */
.location-icon-text{
    font-size: 12px;
    color: var(--black);
    width: auto !important;
    height: auto !important;
    border-radius: 20px !important;
    padding: 4px 6px;
}


.search-location input{
    padding: 6px 12px 6px 12px;
    font-size: 12px !important;
    line-height: 20px;
    max-width: 84px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: transparent;
    border-radius: 50px;
    color: var(--black);
}

.location-popup.login-pop .modal-dialog .modal-content{
    padding: 30px 20px;
}
.location-popup .search-input input{
    color: var(--black);
    padding: 12px 34px 12px 10px;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    outline: unset;
}
.location-popup form{
    margin-bottom: 0px !important;
}
.location-popup .search-input input:focus,
.search-location input:focus{
    outline: unset;
    box-shadow: unset;
}
.location-popup .search-input{
    position: relative;
    margin-bottom: 10px;
}
.location-popup .search-input::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    background-image: url(../images/home/gray-search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.location-popup .location-cities li .city-name {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    text-align: start;
    font-family: "Roboto", sans-serif;
    width: 100%;
    display: block;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    padding: 12px 10px;
    cursor: pointer;
}
.location-popup .location-cities li .city-name:hover{
    background-color: #E5E5E5;
}
.location-popup .location-cities li{
    margin-bottom: 12px;
}
.location-popup .location-cities ul{
    height: 310px;
    overflow-y: scroll;
}
.location-popup .location-cities ul::-webkit-scrollbar-track
{
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	background-color: #E5E5E5;
}

.location-popup .location-cities ul::-webkit-scrollbar{
	width: 2px;
	background-color: #E5E5E5;
}
.location-popup .location-cities ul::-webkit-scrollbar-thumb{
	background-color: #000000;
}

@media (max-width: 1200px){
    .filter-select-row .select-bar li a {
        padding-right: 20px;
        font-size: 20px;
    }
    .filter-select-row .select-bar{
        padding: 12px 18px;
    }
    .right-select{
        font-size: 20px;
        line-height: 24px;
    }
}
@media (max-width: 1024px){
    .inner-banner .filter-search {
        margin: 30px auto 50px;
        width: auto;
        gap: 20px;
    }
    .inner-banner .filter-search input {
        height: 50px;
        padding: 10px 20px;
        font-size: 18px;
        line-height: 22px;
    }
    .inner-banner .filter-search input::placeholder{
        font-size: 18px;
        line-height: 22px;
    }
    .inner-banner .filter-search .search-input::before {
        top: 16px;
    }
    .inner-banner .filter-btn{
        font-size: 18px;
        line-height: 22px;
        padding: 10px 20px;
    }
    .inner-banner .filter-btn img{
        width: 15px;
    }
    .inner-bg-img .first-img,
    .inner-bg-img .sec-img{
        height: 100%;
    }
    .inner-bg-img .sec-img {
        top: 10%;
    }
  }
@media (max-width: 991.98px) {
    .filter-select-row .select-bar li a {
        font-size: 16px;
    }
    .right-select{
        font-size: 16px;
        line-height: 18px;
    }
    .headBalance{
		font-size: 11px;
		top: 43px;
	}
}
@media (max-width: 767.98px) {

    .inner-banner .filter-search{
        gap:10px;
    }
    .inner-banner .filter-search {
        margin: 24px auto 35px;
    }
    .inner-banner .filter-search input {
        height: 36px;
        padding: 8px 12px;
        font-size: 14px;
        line-height: 19px;
    }
    .searchIconClass {
		height: 36px !important;
		width: 36px !important;
		right: 0px !important;
	}
    .inner-banner .filter-search input::placeholder{
        font-size: 14px;
        line-height: 19px;
    }
    .inner-banner .filter-btn{
        font-size: 14px;
        line-height: 16px;
        padding: 8px 12px;
    }
    .inner-banner .filter-search .search-input::before {
        top: 10px;
        right: 12px;
        width: 15px;
        height: 15px;
    }
    .inner-banner .filter-btn{
        padding: 3px 12px;
        width: 155px;
        justify-content: space-between;
    }
    .inner-banner .filter-search input{
        width: 155px;
    }
    .mobile-bg-img {
        width: 100%;
        position: absolute;
        z-index: -1;
    }
    .mobile-bg-img img{
        width: 100%;
    }

    .filter-modal .modal-dialog .modal-content {
        padding: 20px 18px;
    }
    .filter-select-row .select-bar li a {
        font-size: 15px;
    }
    .filter-select-row {
        row-gap: 16px;
        margin-top: 20px;
        flex-direction: column;
    }
    .filter-select-row .select-bar{
        width: 100%;
    }
    .filter-select-row .select-bar {
        padding: 9px 15px;
        height: 36px;
    }
    .filter-select-row .dropdown-toggle::before {
        top: 12px;
        right: 0;
        width: 10px;
        height: 10px;
    }
    .artical-img{
        width: 100%;
        position: absolute;
        z-index: -1;
    }
}



/* Popup */

.report-popup.login-pop .modal-dialog {
    max-width: 894px;
}

.report-info p.text-black{
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    color: var(--black);
    margin-bottom: 28px;
}

.report-info p.text-gray{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0,0,0,0.8);
    margin-bottom: 28px;
}
.report-popup .form-style input,
.report-popup .form-style input::placeholder{
    color: var(--black)!important;
    opacity: 1;
}
.report-info .report-logo img{
    width: auto;
    height: 132px;
    object-fit: contain;
}
.text-normal{
    text-transform: none !important;
}
.header-sec .menu-bar-icon .navbar-nav li a:hover,
.header-sec .menu-bar-icon .navbar-nav li.active a{
    color: var(--pink);
}

/* Search Popup */
.search-poup .modal-header{
    border: unset !important;
    padding: 0px 0px 20px;
}
.search-poup .modal-header .btn-close{
    padding: 0px !important;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 30px;
    top: 30px;
}
body.no-scroll{
    overflow: hidden;
}

.headBalance {
	color: #36c51a;
	padding: 6px 5px;
	text-align: center;
	margin-right: 0px;
	font-size: 14px;
	position: absolute;
	right: 0px;
	top: 81px;
}




@media (max-width: 1651px) {
    .headBalance{
		font-size: 11px;
		top: 66px;
	}
}

@media (max-width: 991.98px) {
    .headBalance{
		font-size: 11px;
		top: 39px;
	}
}


@media (max-width: 767.98px) {
	.headBalance{
		font-size: 11px;
		top: 43px;
	}
}


.desktop-menu{
	flex-grow: 1;
}

.alignClass {
	display: flex;
	justify-content: center;
	margin-bottom: 18px;
}

.deleteConfirm-wrapper{
	padding-top: 20px;
}

.delete-confirm-btn{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	gap: 20px;
}

.textAppearanceSettingDiv {
	display: flex;
	justify-content: right;
	gap: 5px;
	margin-bottom: 5px;
}

.textAppearanceSettings {
	border-radius: 7%;
	padding: 1px 3px 1px 3px;
	font-size: medium;
}

.feeButtonClass {
	width: 30% !important;
	text-align: center !important;
	text-overflow: ellipsis;
}

.feeWrapperClass {
	width: 80%;
	display: flex;
	justify-content: right;
}

.step-form-sec input::placeholder, .step-form-sec textarea::placeholder {
	opacity: 0.2;
	color: lightgrey;
}

.disabledItem {
    pointer-events: none;
    opacity: 0.4;
}

.disabledRegularOpacityItem {
    pointer-events: none;
    opacity: 1;
}

.displayOnlyDiv {
	width: 31%;
	.genre-field {
		width: 100%;
	}
	.regionDisplayInput {
		background-color: unset;
		border: 1px solid #000000 !important;
		text-align: center;
	}
	.regionReadOnlyInputWrapper {
		width: 100%;
	}
}

.regionReadOnlyFlexWrapper {
	display: flex;
	justify-content: space-between;
    gap:20px;
}

.adEditSessionLabel {
	margin: -5px 0px 10px -8px
}

.searchIconClass {
	border: none;
	position: absolute;
	width: 40px;
	height: 50px;
	background-color: transparent;
	right: 10px;
}

