* {
    box-sizing: border-box;
}

:root {
    --primary: #0066b2;
    --accent: #00E1E1;
    --primary-2: #7580FF;
    --primary-3: #00E1E1;
    --primary-light: #F1F1F1;
    --primary-light-2: #E5F1FB;
    --white: #ffffff;
    --black: #000000;
    --trans: #00FFFFFF;
    --trans-gray: #80E8E8E8;
    --gray: #BDBDBD;
    --gray-dark: #8A8A8A;
    --gray-dark-2: #808080;
    --green: #23CF2A;
    --green-2: #8BC34A;
    --green-3: #CDDC39;
    --red: #F44336;
    --yellow: #FFC107;
    --h-font: "Lexend", sans-serif;
    --font: var(--h-font);
    --bg-grad: linear-gradient(45deg, var(--primary), var(--primary-2));
    --card-shadow: -1px 1px 6px 0px var(--gray);
    --card-shadow-sm: 0px 0px 6px -2px var(--gray);
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    background: var(--primary-light);
}

body:not(.auth-page, .no-grad) {
    /* background-image: url(../images/pars-banner-bg.png); */
    background-image: linear-gradient(180deg, rgb(0 102 178 / 20%), transparent);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 600px;
}
body.auth-page {
    background-color: #fff;
}
img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
}
ol, ul {
    padding-left: 20px;
}
h1 {
    font-size: 42px;
    font-weight: 600;
    font-family: var(--h-font);
}
h2, .h2-font {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--h-font);
}
h3, .h3-font {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--h-font);
}
h4, .h4-font {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--h-font);
}
h5, .h5-font {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--h-font);
}
h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--h-font);
}
body .btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 2px solid transparent;
    padding: 12px 30px;
    font-size: inherit;
    font-weight: 500;
    border-radius: 20px;
    transition: color .15s ease-in-out, background .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 28px;
}
::placeholder {
    color: var(--gray-dark);
}
.mb-30 {
    margin-bottom: 30px;
}
.text-black {
    color: var(--black, #000) !important;
}
.fw-semi{
    font-weight: 600;
}


.input-wrapper {
    position: relative;
    margin-bottom: 16px;
    font-family: var(--h-font);
}

.input-wrapper input {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: linear;
    transition-duration: .2s;
    color: var(--black);
    background: var(
    --white);
    padding: 14px .875rem;
    width: 100%;
    font-size: 14px;
    border-radius: .75rem;
    border: 1px solid var(--black);
    outline: none;
}
.pass-toggle-wrap {
    position: relative;
}

.pass-toggle-wrap .pass-toggle {
    position: absolute;
    top: 12px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.pass-toggle-wrap .pass-toggle:not(.active) .hide-pass {
    display: none;
}

.pass-toggle-wrap .pass-toggle.active .view-pass {
    display: none;
}

.pass-toggle-wrap input {
    padding-right: 42px;
}
.authentication-page .authentication-form .tab-pane {
    padding: 0 0;
}

.authentication-page .authentication-form .input-wrapper svg {
    position: absolute;
    top: 15px;
    left: 15px;
    fill: hsla(200, 4%, 44%, .5);
    width: 22px;
    height: 22px;
}

/*.authentication-page .authentication-form .input-wrapper input {
    padding-left: 3.125rem;
}*/

body .btn.btn-primary {
    background: var(--primary);
    border: 0;
    background-image: var(--bg-grad);
    background-repeat: no-repeat;
    color: #fff;
    box-shadow: -1px 1px 4px 0px var(--gray);
}
body .btn.btn-outline {
    border: 2px solid var(--gray);
    box-shadow: none;
}
body .btn.btn-outline:focus {
    /* border-color: #000; */
}
body .btn.btn-primary-clr {
    background: var(--primary);
    border: 0;
    color: #fff;
    box-shadow: none !important;
}


body .btn.btn-primary:hover {
    background-position: 500px 0;
}

.input-wrapper input:focus {
    background: #fff;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.input-wrapper label.error {
    font-size: 12px;
    text-align: left;
    width: 100%;
    color: #f00;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 0;
}

.authentication-inner-wrapper .bottom-others p {
    margin: 0;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
/*Authentication Pages End**/
/*****Homepage Start****/

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    width: auto;
}
.logo-wrapper img {
    border-radius: 4px;
}
.header ul.main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.header .menu-cta-wrapper .btn-outline {
    padding: 10px;
    border-radius: 40px;
    margin-left: 15px;
}
header.header.js-scrolled {
    box-shadow: var(--card-shadow);
    background-color: #fff;
    color: #000;
    padding: 16px 0;
}
.header .menu-cta-wrapper {
    display: flex;
    /* align-items: center; */
}
.header .menu-cta-wrapper .login-cta-wrap .btn-primary {
    height: 49px;
    display: flex;
    align-items: center;
}
.header ul.main-menu .menu-item {
    margin: 0 16px;
}

.header  .cta-wrapper {
    margin-left: 16px;
}
.header .cta-wrapper .btn {
    border-radius: 8px;
}
a.user-cta {
    width: 40px;
    height: 40px;
    display: inline-flex;
    background-image: linear-gradient(115deg , #f9ce34 0%, #ee2a7b 50%,  #6228d7 100%);
    text-align: center;
    color: #fff;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}
header.header {
    padding: 30px 0;
    /* border-bottom: 1px solid var(--gray); */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    /* background-color: #ffff; */
    transition: all 0.25s ease;
}
header.header.not-fixed {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
}
.header-white {
    color: #fff;
}
header.header .logo-black {
    display: none;
}

header.header.js-scrolled .logo-white {
    display: none;
}

header.header.js-scrolled .logo-black {
    display: block;
}
.header-inner ul.main-menu .menu-link:hover {
    color: var(--thm-primary);
}

.header-inner ul.main-menu .menu-link {
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 4px 0;
    font-size: 15px;
}

.header-inner ul.main-menu .menu-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: all 0.25s ease;
}

.header-inner ul.main-menu .menu-link:hover:before {
    width: 100%;
}

.hero-banner {
    padding: 40px 0 30px;
    position: relative;
}
.hero-banner h1.hero-title {
    text-align: center;
    margin-bottom: 14px;
}

.header + .main-content > *:first-child {
    padding-top: 150px;
}
.header + .main-content.search-template .hero-banner {
    padding-top: 110px;
}.header + .main-content > .all-categories-section {
    padding-top: 110px;
}
.user-profile-wrapper {
    position: relative;
}
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: max-content;
    min-width: 14rem;
    outline: transparent solid 2px;
    outline-offset: 2px;
    background: white;
    border: 1px solid #fff;
    color: rgb(26, 32, 44);
    box-shadow: var(--card-shadow);
    color: inherit;
    z-index: 1;
    border-radius: 15px;
    padding: 0px;
    margin-top: 10px;
    display: none;
}

.dropdown .dropdown-head {
    padding: 16px 20px 12px;
    width: 100%;
    border-bottom: 1px solid rgb(230, 236, 250);
    border-top-color: rgb(230, 236, 250);
    border-right-color: rgb(230, 236, 250);
    border-left-color: rgb(230, 236, 250);
    font-size: var(--chakra-fontSizes-sm);
    font-weight: 700;
    color: var(--chakra-colors-navy-700);
}

.dropdown .dropdown-head p {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.8;
}

.dropdown ul.dropdown-list {
    padding: 10px;
    margin: 0;
    list-style: none;
}

.dropdown ul.dropdown-list .dropdown-item a, .dropdown ul.dropdown-list .dropdown-item button {
    /* font-size: 14px; */
    line-height: 25px;
    padding: 6px 12px;
    display: inline-block;
    width: 100%;
    color: inherit;
}


.dropdown ul.dropdown-list .dropdown-item {
    padding: 0;
    border-radius: 7px;
}

.dropdown ul.dropdown-list .dropdown-item a .icon, .dropdown ul.dropdown-list .dropdown-item button .icon {
    width: 20px;
    display: inline-block;
    margin-right: 7px;
}
.hero-banner h1.hero-title {
    text-align: center;
    margin-bottom: 12px;
}
.hero-banner > .container {
    position: relative;
}
.hero-banner .sub-title {
    text-align: center;
    margin-bottom: 40px;
}

.hero-search .search-inner {
    display: flex;
    --col-gap: 12px;
    height: 100%;
}
.hero-search .search-inner .search-prefix {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 10px 18px 10px var(--col-gap);
    border-right: 2px solid var(--gray);
}
.hero-search .search-inner .input-group {
    width: 40%;
    padding: 0 var(--col-gap);
    position: relative;
    flex-grow: 1;
}
.hero-search .search-inner .search-submit {
    display: flex;
    gap: var(--col-gap);
}
.hero-search .search-inner .select-type {
    width: 30%;
    padding: 0 calc(var(--col-gap)  / 2);
    position: relative;
}
.hero-search .select-type select {
    padding: 8px 16px;
    outline: none;
    font-weight: 600;
    height: 100%;
    width: 100%;
    border: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M2.77498 7.42498C2.77498 7.26665 2.83332 7.10831 2.95832 6.98331C3.19998 6.74165 3.59998 6.74165 3.84165 6.98331L9.27498 12.4166C9.67498 12.8166 10.325 12.8166 10.725 12.4166L16.1583 6.98331C16.4 6.74165 16.8 6.74165 17.0417 6.98331C17.2833 7.22498 17.2833 7.62498 17.0417 7.86665L11.6083 13.3C11.1833 13.725 10.6083 13.9666 9.99998 13.9666C9.39165 13.9666 8.81665 13.7333 8.39165 13.3L2.95832 7.86665C2.84165 7.74165 2.77498 7.58331 2.77498 7.42498Z' fill='%232C2738'/%3e%3c/svg%3e") center no-repeat;
    background-size: 17px;
    background-position: calc(100% - 15px) 50%;
}
.hero-search .search-inner .search-shortcuts {
    display: flex;
    text-align: center;
    align-items: center;
    padding: 0 calc(var(--col-gap)  / 2);
    position: relative;
    width: auto;
    justify-content: space-evenly;
    min-width: max-content;
}

.hero-search .search-inner .search-shortcuts .label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-search .search-inner .search-shortcuts .icon {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 2px;
}

.hero-search  .search-shortcuts .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.main-search-holder {
    position: relative;
    height: 100px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    display: flex;
    padding: 0 180px;
    justify-content: flex-start;
}
.hero-search {
    border: 0px solid var(--gray);
    border-radius: 50px;
    overflow: hidden;
    width: 900px;
    max-width: 100%;
    height: 80px;
    margin: auto;
    padding: 12px 13px;
    box-shadow: 0 0 3px var(--gray);
    background: #fff;
    transition: all 0.05s ease;
}
.hero-search.js-scrolled {
    position: fixed;
    top: 12px;
    z-index: 102;
    height: 56px;
    width: min(500px, 40vw);
    padding: 8px 8px;
}
.hero-search.js-scrolled .search-inner [type="button"], .hero-search.js-scrolled .search-inner [type="submit"] {
    width: 40px;
    padding: 7px 7px;
}

.hero-search.js-scrolled .search-prefix {
    width: 55px;
    padding: 10px 15px 10px 10px;
}

.hero-search.js-scrolled .search-inner {
    --col-gap: 10px;
}
.hero-search.js-scrolled .search-inner .input-group input[type="search"] {
    font-size: 14px;
}
.hero-search .search-inner .input-group input[type="search"] {
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 6px 10px;
    font-size: 16px;
}

.hero-search form {
    height: 100%;
}

.hero-search .search-inner [type="submit"] {
    height: 100%;
    border-radius: 60px;
    padding: 12px 16px;
}
.hero-search .search-inner [type="button"] {
    line-height: 0;
    height: 100%;
    border-radius: 60px;
    padding: 10px 14px;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.hero-search input:-webkit-autofill,
.hero-search input:-webkit-autofill:hover, 
.hero-search input:-webkit-autofill:focus, 
.hero-search input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}


/***************Footer*****************/
footer.footer {
    border-top: 1px solid var(--gray);
    margin-top: 50px;
    position: relative;
    background-image: linear-gradient(0, rgb(0 102 178 / 20%), transparent);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
footer.footer > .container {
    position: relative;
    z-index: 3;
}
footer.footer ul.menu-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
footer.footer .logo-wrapper img {
    border-radius: 4px;
}
footer.footer ul.menu-list .menu-item {
    margin-bottom: 10px;
}

footer.footer .footer-bottom{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--gray);
    flex-wrap: wrap-reverse;
}

.footer-bottom ul.bottom-menu {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom ul.bottom-menu li.menu-item {
    padding: 0 14px;
    position: relative;
}

.footer-bottom ul.bottom-menu li.menu-item:not(:first-child) {
    border-left: 1px solid var(--gray);
}

.footer-bottom ul.bottom-menu li.menu-item:last-child {
    padding-right: 0;
}

footer.footer .footer-main {
    padding: 50px 0 80px;
}

.get-in-touch input[type="email"] {
    width: 100%;
    border: 1px solid var(--gray);
    border-radius: 4px;
    line-height: 25px;
    padding: 8px 10px;
    outline: none;
    box-shadow: none;
}

.get-in-touch button.btn.btn-primary {
    margin-top: 12px;
    padding: 8px 18px;
}
.footer li.menu-item a {
    position: relative;
    color: var(--black);
    word-break: break-word;
}
.footer li.menu-item a:hover {
    color: var(--primary);
}
.footer li.menu-item a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.footer li.menu-item a:hover:before {
    width: 100%;
}

.get-in-touch input[type="email"]:focus {
    border-color: var(--gray-dark-2);
}

.get-in-touch  h6 {
    margin-bottom: 10px;
    font-weight: 600;
    /* font-size: 18px; */
}
.drawer-modal.modal .modal-dialog {
    margin: 0;
    height: 100%;
    transform: translateX(-100%);
    opacity: 0;
}

.drawer-modal .modal-dialog .modal-content {
    border: none;
    border-radius: 0 10px 10px 0;
    min-height: 100%;
    padding: 25px 20px;
}

.drawer-modal.modal.show .modal-dialog {transform: translateX(0);}

.drawer-modal.modal.fade .modal-dialog {
    opacity: 1;
}
.drawer-right-modal.modal .modal-dialog {
    margin: 0 0 0 auto;
    height: 100%;
    transform: translateX(100%);
    opacity: 0;
}

.drawer-right-modal .modal-dialog .modal-content {
    border: none;
    border-radius: 10px 0 0 10px;
    min-height: 100%;
    padding: 25px 20px;
}

.drawer-right-modal.modal.show .modal-dialog {transform: translateX(0);}

.drawer-right-modal.modal.fade .modal-dialog {
    opacity: 1;
}
#filter-modal .modal-header {
    border: none;
    padding: 10px 0;
}

#filter-modal .modal-header .btn.btn-outline {
    padding: 3px 12px;
    height: 40px;
}
#filter-modal .modal-header .btn-outline.btn[data-bs-dismiss="modal"]{
    padding: 3px 6px;
    width: 40px;
}

#filter-modal .modal-body {
    padding: 20px 0;
}

.input-wrap, .radios-wrap {
    margin-bottom: 20px;
}

input:not([type="checkbox"], [type="radio"], [type=file]), textarea, select {
    width: 100%;
    border: none;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: -1px 1px 4px 0px rgba(0,0,0,0.5);
    outline: none;
    resize: none;
}

.input-wrap label, .radios-wrap label {
    margin-bottom: 10px;
}

#filter-modal .select2-dropdown {
    width: 100% !important;
}

.radios-wrap .radio-item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.radios-wrap .radio-item .error {
    order: 10;
}
.radios-wrap .radio-item .radio-label {
    display: block;
    background-color: var(--primary-light-2);
    border-radius: 10px;
    text-align: center;
    padding: 10px 15px;
    box-shadow: -1px 1px 4px 0px var(--gray);
}

.radios-wrap .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.radios-wrap .radio-item input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.radios-wrap .radio-item input[type=radio]:checked ~ .radio-label {
    background-color: var(--primary-2);
    color: #fff;
}


input[type=checkbox] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 3px;
    vertical-align: top;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background 0.15s ease-in-out;
}

input[type=checkbox]:checked {
    background-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M416 128L192 384l-96-96'/%3E%3C/svg%3E");
}

.checkbox-wrap {
    margin-bottom: 15px;
}
.about-banner {
    padding-bottom: 40px;
    text-align: center;
}

.about-banner .banner-content-container {
    max-width: 700px;
    margin: 0 auto;
}


.about-info-section .about-info-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-card {
    padding: 20px;
    border: 1px solid var(--gray);
    border-radius: 14px;
}

.about-card .icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    background-image: var(--bg-grad);
    border-radius: 10px;
    border: 0;
    color: #fff;
    box-shadow: none !important;
    padding: 13px;
    margin-bottom: 14px;
}

.about-card .icon svg {
    width: 100%;
    height: auto;
}

.about-card .title {
    margin-bottom: 14px;
}

.about-card .description {
    margin: 0;
}

.about-row-col .row {
    --bs-gutter-y: var(--bs-gutter-x);
}

.about-info-section {
    padding: 60px 0 40px;
}

.about-row-col {
    padding: 0 0 60px;
}

.how-it-works {
    padding: 60px 0;
}

.how-it-works .how-works {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.how-it-works .how-works ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.how-it-works .how-works ul li {
    position: relative;
    padding-left: 70px;
    counter-increment: item;
}

.how-it-works .how-works ul li:before {
    content: counter(item);
    position: absolute;
    top: 4px;
    left: 0;
    width: 45px;
    height: 45px;
    background: var(--primary);
    background-image: var(--bg-grad);
    border: 0;
    color: #fff;
    box-shadow: none !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.how-it-works .how-works ul li:not(:last-child) {
    margin-bottom: 30px;
}

.btn.btn-primary-outline {border: none;color: var(--primary);box-shadow: 0 0 0 2px var(--primary) inset;}

.btn.btn-primary-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

.join-us {
    text-align: center;
    padding: 60px 0;
}

.join-us .cta-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
}
/*************Footer End*****************/

/*Media Query**/
@media(min-width: 992px) {
    
}

@media(min-width:768px) {
    .container {
        max-width: 90%;
        width: 1600px;
    }   
    body.no-grad{
        background-color: #fff;;
    }
    
    
    body .btn.btn-outline:hover {
        background: var(--gray);
    }
    body .btn.btn-primary-clr:hover {
        background-color: #005899;
    }
    .my-favorites-listings .my-card .top-contents .thumbnail {
        width: max(130px, 26%);
    }
    main.main-content.about-main-content {
        font-size: 16px;
    }
    .sub-heading {
        font-size: 18px;
    }
}


@media(max-width:1199px) {

}

@media(max-width:991px) {

    
}

@media(max-width: 767px) {
    /* body {
        font-size: 14px;
    } */
    
    h1 {
        font-size: 30px;
    }
    h2, .h2-font {
        font-size: 20px;
    }
    h3, .h3-font {
        font-size: 22px;
    }
    h4, .h4-font {
        font-size: 20px;
    }
    h5, .h5-font {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }
    body:not(.auth-page, .no-grad) {
        background-size: 100% 400px;
    }
    header.header {
        padding: 20px 0;
    }
    .authentication-page {
        padding: 0;
        background: #fff;
    }

    .authentication-inner-wrapper {
        border-radius: 0;
        padding: 20px 20px;
        align-items: self-start;
        background-color: var(--white);
    }
    .input-wrapper input {
        padding: 10px 15px;
    }
    .input-wrapper label {
        font-size: 90%;
    }
    
    

    .header .menu-cta-wrapper a.btn, .header .menu-cta-wrapper button.btn {
        padding: 5px 10px;
        /* width: 38px; */
        height: 38px;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    .header .menu-cta-wrapper .btn.btn-sm-text {
        height: auto;
        padding: 8px 12px;
        font-size: 12px;
    }
    .header .menu-cta-wrapper a.btn svg, .header .menu-cta-wrapper a.btn img, .header .menu-cta-wrapper button.btn svg {
        width: 18px;
        height: 18px;
        margin: 0 !important;
    }

    .header .menu-cta-wrapper .btn-outline {
        margin-left: 8px;
    }

    .logo-wrapper {
        width: 100px;
    }

    .add-listing-wrap .left-col{
        display: none;
    }
    .header + .main-content > *:first-child {
        padding-top: 100px;
    }
    .hero-banner .sub-title {
        margin-bottom: 30px;
    }
    .hero-search .search-inner .search-prefix img {
        width: 22px;
        height: 22px;
    }
    
    .hero-search .search-inner button img {
        width: 20px;
        height: 20px;
    }
    
    .hero-search .search-inner .input-group input[type="search"] {
        height: auto;
        font-size: 14px;
        padding: 8px;
    }
    
    .hero-search {
        height: 56px;
        padding: 9px;
    }
    
    .hero-search .search-inner .search-prefix {
        padding: 0 10px 0 8px;
        border-right-width: 1px;
    }
    
    body .btn.btn-outline {
        border-width: 1px;
    }
    
    .hero-search .search-inner .search-submit .btn {
        padding: 0 0;
        width: 38px;
    }
    
    .hero-search .search-inner {
        --col-gap: 6px;
    }
    
    .inter-sec {
        padding: 20px 0;
    }
    
    .sec-top-head {
        margin-bottom: 20px;
    }
    
    .sm-w-20 {
        width: 20px;
        height: 20px;
    }
    
    .sm-w-25 {
        width: 25px;
        height: 25px;
    }
    
    
    footer.footer {
        margin-top: 30px;
    }
    
    footer.footer .logo-wrapper {
        margin-bottom: 25px;
        width: 100px;
    }
    
    footer.footer .footer-main {
        padding: 30px 0 40px;
    }
    
    footer.footer .footer-menu {
        margin-bottom: 30px;
    }
    
    .footer-bottom ul.bottom-menu {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
        row-gap: 10px;
    }
    
    .footer-bottom .copyright {
        text-align: center;
        width: 100%;
    }

    .about-info-section {
        padding: 30px 0 20px;
    }

    .about-banner {
        padding-bottom: 20px;
    }

    .about-card .icon {
        width: 40px;
        height: 40px;
        padding: 11px;
    }

    .about-card {
        padding: 15px;
    }

    .about-row-col {
        padding: 0 0 30px;
    }

    .how-it-works {
        padding: 30px 0;
    }

    .how-it-works .how-works ul li {
        padding-left: 50px;
    }

    .how-it-works .how-works ul li:before {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .join-us {
        padding: 30px 0;
    }

    
}

@media(max-width:520px) {
}

@media(max-width:320px) {}

/**Media Query End*/