:root {
    --white: #fff;
    --black: #000;
    --primary: #ef3f29;
    --secondary: #3f66b0;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.df {
    display: flex;
}

.aic {
    align-items: center;
}

.ais {
    align-items: flex-start;
}

.aie {
    align-items: flex-end;
}

.jcc {
    justify-content: center;
}

.jcsb {
    justify-content: space-between;
}

.frr {
    flex-direction: row-reverse;
}

.fw {
    flex-wrap: wrap;
}

.fnw {
    flex-wrap: nowrap;
}

.gap1 {
    gap: 1rem;
}

.gap2 {
    gap: 2rem;
}

@media (min-width: 1700px) {
    .container-lg,
    .container {
        max-width: 1380px;
    }
}

section {
    position: relative;
    padding: 4rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    top: 0;
    width: 100%;
    padding: 2rem 0 0;
    transition: 0.3s ease-in-out;
}

header.sticky {
    position: fixed;
}

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

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.9375rem;
    font-weight: normal;
    color: var(--white);
    padding: 0;
    line-height: 1;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 0 5px #000;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--white);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.form-inline {
    margin-left: 1rem;
}

.form-inline .dropdown .dropdown-toggle {
    background: transparent;
    border: 0;
    outline: none;
    font-size: 1.5rem;
    color: var(--white);
}

.form-inline .dropdown .dropdown-item {
    color: var(--black);
    font-weight: 400;
    text-transform: capitalize;
    font-size: 1.125rem;
}

.form-inline .dropdown .dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
}

/* Main slider CSS */

.main-slider {
    padding: 0;
    background: url(../images/banner-bg.png) top/cover no-repeat;
}

.main-wrapper {
    display: flex;
}

.logoWrap {
    background: url(../images/logo-bg.jpg) center/cover no-repeat;
    /* width: 30%; */
    flex: 0.5;
    /* height: 350px; */
}

.mainSlider {
    /* width: 70%; */
    flex: 1.25;
}

.mainSlider .swiper-pagination-bullet {
    height: 1rem;
    width: 1rem;
    background: transparent;
    opacity: 1;
    border: 1px solid var(--white);
}

.mainSlider .swiper-pagination-bullet-active {
    background: var(--white);
}

.heading {
    font-size: 2.125rem;
    font-weight: 600;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
}

.login-info-sec p {
    color: #707070;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
}

.login-info-sec p a {
    color: var(--black);
    font-weight: 500;
}

.login-info-sec .btn-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 0.5rem;
}

.login-info-sec .btn-group p {
    text-align: center;
    color: #707070;
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.themeBtn {
    display: block;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
    padding: 1em;
    text-align: center;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    background: var(--secondary);
    text-transform: uppercase;
}

.themeBtn:hover {
    background: var(--primary);
    color: var(--white);
}

.themeBtn .label-right,
.themeBtn .label-left {
    font-size: 0.875rem;
    width: 80px;
    position: absolute;
    left: -15px;
    top: 15px;
    display: inline-block;
    background: var(--primary);
    transform: rotate(-50deg);
    transition: 0.3s ease-in-out;
}

.themeBtn .label-right {
    transform: rotate(50deg);
    left: auto;
    right: -15px;
    top: 15px;
}

.themeBtn:hover span {
    background: var(--secondary);
}

.themeBtn.redBtn {
    background: var(--primary);
}

.themeBtn.redBtn:hover {
    background: var(--secondary);
}

/* hero-section */
.hero-section {
    padding-top: 0;
}

.hero-section .row [class*='col-'] {
    display: flex;
}

.hero-card .content > p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-card .afterLogin > p {
    display: block;
    -webkit-line-clamp: initial;
}

.afterLoginCard .content {
    padding: 0 1.125rem;
    flex-direction: column;
    justify-content: space-between;
}

.hero-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-card .card-top {
    padding: 0.975rem 0;
    text-align: center;
    transition: 0.3s ease-in-out;
    background: var(--black);
    display: block;
}

.hero-card .card-top h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.hero-card .content {
    padding: 1.375rem 1.125rem;
}

.hero-card .content p {
    color: #8b8b8b;
    font-size: 1.125rem;
}

.hero-card .content-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    min-height: 235px;
    height: 100%;
}

.hero-card .content-row p {
    font-size: 1rem;
    width: 55%;
}

.afterLoginCard .content p {
    width: 100%;
    text-align: center;
}

.afterLoginCard .content .btn-group {
    flex-direction: row;
}

.hero-card .btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-card .content-row .themeBtn {
    font-size: 0.8125rem;
    padding: 1em;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
}

.hero-card .imgWrap {
    display: block;
    padding: 0 1.125rem 1.375rem;
}

.hero-card .imgWrap figure {
    overflow: hidden;
    border-radius: 10px;
}

.hero-card .imgWrap img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.hero-card:hover .imgWrap img {
    transform: scale(1.125);
}

.hero-card:hover .card-top {
    background: var(--primary);
}

.maryLand .hero-card .imgWrap {
    display: block;
    padding: 0;
}

.innermapSec {
    padding-top: 2rem;
    position: relative;
}

.innermapSec .mapIN {
    position: absolute;
    z-index: -111111;
    top: -20rem;
    right: 10rem;
}

.innermapSec p {
    color: #000;
    font-weight: 500;
    font-size: 1.125rem;
    padding-top: 1rem;
}

innermapSec h2 {
    font-size: 1.438rem;
    font-weight: 500;
    color: #000;
}

.innermapSec .form-group .form-control {
    border-radius: 5px;
    border: 1px solid #bcbcbc;
    height: 70px;
    width: 100%;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background-image: url("../images/iconbox.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 31px;
    color: #8b8b8b;
    font-size: 1rem;
    font-weight: 500;
}

.innermapSec h3 {
    font-size: 2.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

.innermapSec .innerPARA p {
    color: #707070;
}

.innerPARA strong {
    color: #000;
}

.innermapSec .flag {
    align-items: center;
    display: flex;
    justify-content: end;
    gap: 1.5rem;
}

.flag h2 {
    margin-bottom: 0;
    font-size: 1.375rem;
    font-weight: 600;
}

.compnayIMG {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compnayIMG {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compnyCard h2 {
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    padding: 15px 0;
    font-weight: 500;
}

.compnyCard {
    border-bottom: 1px solid #d6d6d6;
    /* padding-bottom: 8.2rem; */
    min-height: 512px;
}

.compnayAddress p {
    color: #000;
}

.offerbox h2 {
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    padding: 15px 0;
    font-weight: 500;
}

.offerbox {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 1.6rem;
    min-height: 512px;
}

.offerButtn p {
    color: #000;
    font-size: 1.125rem;
    font-weight: 400;
}

.offerButtn h3 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    text-decoration: underline;
}

.offertext label {
    color: #000;
    font-size: 1.125rem;
    font-weight: 400;
    margin-right: 0.5rem;
}

.offerbox h4 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    padding-top: 1rem;
}

.offertext2 label {
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.offertext3 label {
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.offerButtn label {
    margin-right: 0.5rem;
}

.companySec h2 {
    font-size: 3.125rem;
    font-weight: 600;
    padding-bottom: 3rem;
}

.countryBox {
    display: flex;
    align-items: end;
    gap: 1rem;
    flex-direction: column;
}

.countryBox .country {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.countryBox .country h4 {
    color: #000;
}

.hero2heroSec {
    background-image: url("../images/usmap.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero2heroSec p a {
    color: var(--primary);
}

.headingRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.businessCard {
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
    display: block;
    height: 100%;
}

.businessCard h5 {
    margin: 0;
    padding: 0.5rem 0;
}

.businessCard img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.hero2heroSec.result .row {
    gap: 1.25rem 0;
}

.hero2heroSec.details {
    background-image: none;
}

.hero2heroSec.details .row [class*="col-"] {
    display: flex;
}

.detailCard {
    padding-bottom: 3rem;
    width: 100%;
    border-bottom: 2px solid #8b8b8b;
}

.detailCard .head {
    border-block: 2px solid #8b8b8b;
    padding: 0.5rem;
}

.detailCard .head h2 {
    margin: 0;
    font-size: 3rem;
}

.detailCard .body {
    margin-top: 1rem;
}

.detailCard .body .heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detailCard .body .heading figure {
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px #ddd;
    border-radius: 100%;
    padding: 0.5rem;
    overflow: hidden;
}

.detailCard .body .heading figure img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.detailCard .body h6 {
    font-weight: 600;
    text-decoration: underline;
}

.detailCard .body .d-flex div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.detailCard .body .d-flex {
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
}

.detailCard .body .d-flex div label {
    margin: 0;
}

.detailCard .body .d-flex + .d-flex {
    margin: 1rem 0;
}

.detailCard .body .d-flex div.customDiv {
    width: 100%;
}

.loginPage {
    padding: 8rem 0;
}

.formWrap {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 5rem 8rem;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

.loginPage .formWrap p {
    font-size: 1.375rem;
    text-align: center;
}

.loginPage .formWrap p a {
    color: var(--primary);
    font-weight: 500;
}

.formWrap form {
}

.formWrap .form-group {
    margin-bottom: 1.75rem;
}

.formWrap label {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.formWrap label span {
    color: var(--primary);
}

.formWrap .form-group .form-control {
    border-radius: 5px;
    height: 50px;
    width: 100%;
    font-size: 1rem;
    padding-left: 1rem;
    background: var(--white);
    border: none;
    color: #000;
    box-shadow: 0 1px 10px rgb(0 0 0 / 25%);
}

.formWrap .form-group textarea.form-control {
    min-height: 8rem;
    border-radius: 5px;
    height: auto;
}

.formWrap .themeBtn {
    border: 0;
    width: auto;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    margin: auto;
}

.calanderDetail .search {
    margin-bottom: 2rem;
}

.calanderDetail .search .form-control {
    border-radius: 5px;
    border-color: #EBEBEB;
    background: #F9F9F9;
    height: 3rem;
}

.signUpPage {
    padding: 6rem 0;
}

.signUpPage ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;
    height: 150px;
    margin-bottom: 3rem;
}

.signUpPage .content ul li {
    color: #8b8b8b;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    vertical-align: middle;
}

.signUpPage .content ul li::before {
    content: "";
    height: 8px;
    width: 8px;
    display: inline-block;
    border-radius: 50%;
    background: var(--primary);
}

.signUpPage h3 {
    color: var(--primary);
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.signUpPage h3 span {
    color: var(--black);
}

.signUpPage .btn-group {
    gap: 2rem;
    display: flex;
}

.input-radio [type*="o"]:checked,
.input-radio [type*="o"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.input-radio [type*="o"]:checked + label,
.input-radio [type*="o"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #8b8b8b;
    font-size: 0.875rem;
    font-weight: 500;
    /* text-transform: uppercase; */
}

.input-radio [type*="o"]:checked + label:before,
.input-radio [type*="o"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.input-radio [type*="o"]:checked + label:after,
.input-radio [type*="o"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--primary);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.input-radio [type*="o"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.input-radio [type*="o"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.input-radio [type*="o"]:checked + label:before {
    border-color: var(--primary);
}

.input-radio [type*="o"]:checked + label {
    color: var(--primary);
}

.calanderDetail {
    position: relative;
}

.calanderDetail h2 {
    font-size: 1rem;
    color: #3f66b0;
    font-weight: 600;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.calanderDetail .arrowBtn {
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 10px;
    display: inline-grid;
    place-items: center;
    font-size: 1rem;
    height: 3.125rem;
    width: 3.125rem;
    background: var(--primary);
    color: var(--white);
}

.calanderDetail h4 {
    font-size: 2.125rem;
    color: #ef3f29;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid #b7b7b7;
}

.calanderDetail h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #000;
    margin-top: 1rem;
}

.calanderDetail p {
    font-size: 1rem;
    color: #8b8b8b;
    font-weight: 400;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.calanderDetail a {
    color: #3f66b0;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: underline;
}

.calanderDetail hr {
    border-bottom: 1px solid #b7b7b7;
}

.calanderDetail {
    box-shadow: 15px 0px 20px rgb(184 184 184 / 43%);
    padding: 3rem 3rem;
    height: 551px;
    overflow: auto;
}

/* width */
.calanderDetail::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.calanderDetail::-webkit-scrollbar-track {
    background: #F5F5F5;
}

/* Handle */
.calanderDetail::-webkit-scrollbar-thumb {
    background: #D8D8D8;
    border-radius: 100px;
}

/* Handle on hover */
.calanderDetail::-webkit-scrollbar-thumb:hover {
    background: #bbbbbb;
}

#evoCalendar {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: 0px 0px 20px 10px rgb(184 184 184 / 30%);
    min-height: 551px;
}

.sideBar > a {
    color: #fff;
    font-size: 1.125rem;
    background: #3f66b0;
    padding: 1rem;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    align-items: center;
    gap: 1rem 0.75rem;
}

.sideBar ul li a {
    color: #ef3f29;
    font-size: 1rem;
    font-weight: 500;
}

.sideBar label.custom-control-label {
    color: #8b8b8b;
    font-size: 1rem;
}

.sideBar ul {
    background: #f9f9f9;
    padding: 1.5rem 1.5rem;
}

.sideBar ul li {
    line-height: 2;
}

.fournContent h3 {
    font-size: 1.375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0 1rem;
}

.fournContent h4 {
    color: #ef3f29;
    font-size: 0.875rem;
    font-weight: 500;
}

.formSection {
    display-flex: flex;
}

.fourmCard {
    display: flex;
    gap: 1rem;
}

.fourmCard .fournContent {
    width: 85%;
}

.fourmCard {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.formSection h2 {
    font-size: 2.125rem;
    font-weight: 600;
}

.fournContent h3 span {
    background: #3f66b0;
    border-radius: 20px;
    padding: 5px 10px;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.fournContent.detailForum span {
    color: #ef3f29;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: white;
}

section.formSection .HeadingBlue h2 {
    background: #3f66b0;
    color: white;
    padding: 1.5rem;
    margin-top: -4rem;
    text-align: left;
    justify-content: flex-start;
}

.calanderWrap {
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 10px rgb(184 184 184 / 25%);
}

.evntHead {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.evntHead h3 {
    text-transform: uppercase;
    margin: 0;
}

.evntHead .themeBtn {
    display: inline-flex;
    padding: 0.5em 1em;
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 400;
    gap: 5px;
    width: fit-content;
    width: -moz-fit-content;
}

.fournContent h3 a {
    color: #000;
}

.main-wrapper .mainSlider img {
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.hero-section .modal .modal-header {
    background: #000;
    color: #fff;
    justify-content: center;
    display: flex;
    position: relative;
}

.hero-section .modal .modal-header button {
    position: absolute;
    color: #fff;
    opacity: 1;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    font-size: 2rem;
}

.hero-section .modal .modal-content {
    border-radius: 10px;
    overflow: hidden;

}

.topicModal .themeBtn {
    width: auto;
    padding: 0.5rem 2rem;
    border: none;
    font-size: 1rem;
}

.commentBox {
    width: 50%;
    margin-left: auto;
    margin-top: 1rem;
    position: relative;
}

.commentBox textarea {
    width: 100%;
    border: 2px solid #e2e2e2;
    box-shadow: 2px 2px 5px #ddd;
    border-radius: 5px;
    padding: 1rem 0 0 1rem;
    min-height: 60px;
}

.commentBox button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 0;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.commentBox button:hover {
    right: 5px;
}


.signUpPage .btn-group.business .input-radio {
    width: fit-content;
}

.signUpPage .btn-group.business {
    flex-wrap: wrap;
}


/* start css 10-07-2022  */


.marketList {
    background: #fff;
    box-shadow: 0 0 4px #0000001f;
    padding: 4rem 2.5rem;
    height: 100%;
}

.shopSec {
    background: #f5f5f5;
    padding: 0;
}


.marketHeading {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.marketList form {
    position: relative;
    display: block;
}

.marketList form input {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    height: 50px;
    border-radius: 50px;
    padding: 0 3rem;
}

.marketList form a {
    position: absolute;
    left: 20px;
    top: 50%;
    color: #444444;
    transform: translateY(-50%);
}

.marketList ul {
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1rem;
}

.marketList ul li {
    border-bottom: 1px solid #eaeaea;
    padding: 1.2rem 0;
}

.marketList ul li a {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
}

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

.marketList ul li:last-child .createBtn {
    background: var(--primary);
    width: 100%;
    display: block;
    text-align: center;
    padding: 0.5rem 0;
    color: #fff;
    border-radius: 5px;
    border-radius: 30px;
    margin-top: 1rem;
}

.marketList .ctegrsLst {
    margin: 0 0 1.5rem;
}

.marketList .vehicles {
    padding: 0;
}

.marketList .vehicles li:last-child {
    padding: 1.2rem 0;
}

.todayHeading {
    padding: 4rem 0 0;
}

.pickShop a img {
    width: 100%;
    height: 254px;
    object-fit: cover;
    border-radius: 9px;
}

.pickShop h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.pickShop h5 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 6px;
}

.pickShop h6 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

.pickShop a {
    display: block;
    margin: 0 0 1.2rem;
}

.pickShop {
    margin-bottom: 2rem;
}

/*.slider-nav .draggable {
    padding: 0 !important;
}*/
.slider-for3 img {
    width: 100%;
    height: 800px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 0 15px #ddd;
    border-radius: 10px;
}

.slider-for3 .slick-prev {
    background: transparent;
    z-index: 1;
    box-shadow: 0 0 3px #0000005c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    left: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-for3 .slick-prev:before {
    content: '\f104';
    font-family: "Font Awesome 5 Pro";
    color: #000;
}

.slider-for3 .slick-next {
    background: transparent;
    z-index: 1;
    box-shadow: 0 0 3px #0000005c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    right: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-for3 .slick-next:before {
    content: '\f105';
    font-family: "Font Awesome 5 Pro";
    color: #000;
}

.proBoxDetal {
    box-shadow: 0 0 4px #0000001f;
    padding: 2rem 1.5rem;
    height: 100%;
}

/*.proContent {
    box-shadow: 0 0 4px #0000001f;
    padding: 2rem 1.5rem;
}*/

.proContent h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 1rem;
}

.proContent h3 {
    font-size: 1.1rem;
    margin: 0 0 1.5rem;
}

.proContent ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proContent ul li a {
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    display: block;
    padding: 0.8em 1em;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-radius: 8px;
}

.mrktDetl {
    margin-top: 2rem;
}

.mrktDetl h2 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0;
}

.mrktDetl iframe {
    /* filter: grayscale(100%); */
    border-radius: 6px;
    margin: 1rem 0;
}

.mrktDetl p {
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
}

.mrktDetl .selerLst {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0 1.5rem;
    margin: 1.5rem 0 0;
    list-style: none;
    border-top: 1px solid #ebebeb;
}

.mrktDetl .selerLst li {
    font-weight: 600;
    font-size: 1rem;
}

.mrktDetl .selerLst li a {
    font-weight: 400;
    font-size: 0.875rem;
    border-bottom: 1px solid;
    border-top: 0;
    padding: 0;
    color: #000;
}

.jhnImg {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0 0 1rem;
}

.jhnImg img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #ddd;
    border-radius: 100%;
}

.mrktDetl h6 {
    margin: 0 0 4rem;
    font-size: 0.875rem;
}

.mrktDetl a {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-top: 1px solid #eaeaea;
    padding: 1rem 0;
}

.mrktDetl textarea {
    background: #f9f9f9;
    width: 100%;
    border: 1px solid #eaeaea;
    resize: none;
    border-radius: 7px;
    height: 55px;
    margin: 0 0 1rem;
    padding: 6px;
    font-size: 0.875rem;
}

.mrktDetl .createBtn {
    background: var(--primary);
    width: 100%;
    display: block;
    text-align: center;
    padding: 0.5rem 0;
    color: #fff;
    border-radius: 5px;
    font-size: 1.2rem;
    border-radius: 30px;
    border: none;
}

.listBox {
    text-align: center;
}

.cartImg i {
    border: 1px solid #3F66B0;
    width: 6rem;
    height: 6rem;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 3.125rem;
    font-size: 2.5rem;
    color: #3F66B0;
}

.listBox h4 {
    font-size: 1.375rem;
    margin-top: 1rem;
}

.listBox h4 span {
    display: block;
    font-size: 1rem;
    margin-top: 0.75rem;
    font-weight: 400;
    line-height: 1.7;
}

.listBox {
    background-color: var(--white);
    border-radius: 0.625rem;
    padding: 3rem 2rem;
    transition: 0.5s ease-in-out;
}

.listingPreview {
    height: 100%;
}

.listingPreview h3 {
    font-size: 1rem;
    font-weight: 600;
}

.listingPreview .lockedPriviewBox {
    background: #F3F3F3;
    padding: 3rem;
    overflow: hidden;
    min-height: 450px;
}

.listingPreview .lockedPriviewBox p {
    font-size: 0.875rem;
    width: 70%;
}

.listingPreview .lockedPriviewBox p strong {
    display: block;
    font-weight: 600;
}

.listBox:hover {
    background-color: var(--primary);
}

.listBox:hover h4 {
    color: var(--white);
}

.listBox:hover .cartImg i {
    background-color: var(--white);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.changeOne p {
    font-size: 0.8rem;
    margin: 0 0 10px;
}

.changeOne input {
    width: 100%;
    border: 1px solid #eaeaea;
    height: 50px;
    font-size: 0.8rem;
    padding: 0 1rem;
    border-radius: 6px;
    margin: 0 0 1rem;
}

.changeOne .input-group .input-group-prepend {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    border-right: 0;
    position: relative;
    border-radius: 6px 0 0 6px;
}

.changeOne .input-group {
    flex-flow: nowrap;
}

.changeOne .input-group input {
    border-left: 0;
    border-radius: 0 6px 6px 0;
}

.changeOne iframe {
    height: 278px;
    /* filter: grayscale(100%); */
    margin-bottom: 1rem;
}

.changeOne .createBtn {
    background: var(--primary);
    width: 100%;
    display: block;
    text-align: center;
    padding: .5rem 0;
    color: #fff;
    border-radius: 30px;
    font-size: 1.2rem;
}


.creatList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    padding: 0 0 1rem;
}

.creatList h5 {
    font-size: 1rem;
    font-weight: 400;
}

.creatList .marketHeading {
    margin: 0;
    font-size: 1.3rem;
}

.creatList .themeBtn {
    display: inline-block;
    font-weight: 500;
    padding: 0.75rem 1rem;
    width: auto;
}

.mrktImg {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.8rem 0 0;
}

.mrktImg img {
    border-radius: 50%;
}

.mrktJhn h4 {
    font-size: 1.2rem;
    margin: 0 0 4px;
}

.mrktJhn p {
    margin: 0;
    font-size: 0.9rem;
    color: #000;
}

.photoLabl {
    margin: 2rem 0 0;
}

.photoLabl label {
    margin: 0 0 1rem;
}

.adPhoto span {
    height: 215px;
    width: 100%;
    border: 1px solid #ebebeb;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.adPhoto span i {
    width: 38px;
    height: 38px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0 1rem;
}

.adPhoto span h4 {
    font-size: 1rem;
    margin: 0 0 4px;
}

.adPhoto span h5 {
    font-size: 1rem;
}

.adPhoto span input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.photoLabl input {
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 0 1.2rem;
    padding: 1rem 1rem !important;
}

.adPhoto {
    margin: 0 0 1.5rem;
}

.photoLabl textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #ebebeb;
    height: 100px;
    border-radius: 0;
    padding: 1rem 1rem;
    margin: 0 0 1rem;
}

.photoLabl .createBtn {
    background: var(--primary);
    width: 100%;
    display: block;
    text-align: center;
    padding: 0.5rem 0;
    color: #fff;
    border-radius: 30px;
    font-size: 1.2rem;
    border: none;
}

.photoLabl p {
    font-size: 0.9rem;
}

.slider-nav3 {
    margin: 1rem 0 0;
    background: #fff;
    padding: 0.5rem 0;
}

.slider-nav3 img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.prodtl-img {
    position: relative;
}

.marketList form a.bars {
    right: 20px;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

.marketList form a.bars span {
    width: 20px;
    height: 1px;
    background: #444444;
    display: inline-block;
}

.marketList form a.bars span:nth-child(1) {
    width: 20px;
}

.marketList form a.bars span:nth-child(2) {
    width: 15px;
}

.marketList form a.bars span:nth-child(3) {
    width: 10px;
}

.changeOne .input-group .input-group-prepend i {
    color: var(--primary);
}

/* end css 10-07-2022  */


/*About Page CSS Start*/
.abtSec h2 {
    font-size: 2.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.contctPage {
    padding: 7rem 0;
}

.cntctLst {
    text-align: center;
}

.cntctLst figure {
    width: 112px;
    height: 114px;
    box-shadow: 0px 0px 2px 0px rgb(45 46 55 / 19%);
    background: #f6f3ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.cntctLst h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.cntctLst a {
    font-size: 1rem;
    color: #828282;
    font-weight: 500;
}

.cntctLst p {
    line-height: 27px;
    margin: 0;
}

.cntctSec .form-group {
    position: relative;
    display: flex;
    border: 1px solid #efefef;
    background-color: var(--white);
    margin-bottom: 2rem;
}

.cntctSec .form-group i {
    display: grid;
    place-items: center;
    color: #7e7e7e;
    font-size: 1.25rem;
    background-color: #dedede;
    width: 58px;
    height: 58px;
}

.cntctSec .form-group .form-control {
    border-radius: 0;
    background-color: var(--white);
    height: 58px;
    border: 0;
    font-size: 1rem;
    color: var(--black);
    transition: 0.4s ease-in-out;
    line-height: 1;
}

.cntctSec .form-group textarea.form-control {
    height: 180px;
    padding-top: 1rem;
}

.cntctSec {
    background: #f4f4f4;
    padding: 6rem 0;
}

/*About Page CSS End*/

.reviewBox {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0 3rem;
    position: relative;
}

.reviewBox .rating .fa-star {
    color: #ddd;
}

.reviewBox .fa-star.active {
    color: gold;
}

.reviewBox .rating span {
    font-size: 0.75rem;
    color: #000;
    font-weight: 600;
}

.reviewBox > .d-flex {
    align-items: center;
    justify-content: space-between;
}

.detailCard .body .reviewBox h6 {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    text-decoration: none;
}

.reviewBox p {
    font-size: 0.875rem;
    margin: 0;
}

.reviewBox button {
    position: absolute;
    border: none;
    background: none;
    outline: none;
    right: 0;
    bottom: 0;
}

.rating-stars {
    float: left;
    border-style: none;
}

.rating-stars:not(:checked) > input {
    position: absolute;
    top: -9999px;
    clip: rect(0, 0, 0, 0);
    visibility: hidden;
}

.rating-stars:not(:checked) > label {
    float: right;
    width: 1.125em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    color: lightgrey;
}

.rating-stars > label {
    margin-right: 5px !important;
}

.rating-stars:not(:checked) > label:before {
    content: "\f005";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}

.rating-stars > input:checked ~ label {
    color: gold;
}

.rating-stars:not(:checked) > label:hover,
.rating-stars:not(:checked) > label:hover ~ label {
    color: gold;
}

.rating-stars > input:checked + label:hover,
.rating-stars > input:checked + label:hover ~ label,
.rating-stars > input:checked ~ label:hover,
.rating-stars > input:checked ~ label:hover ~ label,
.rating-stars > label:hover ~ input:checked ~ label {
    color: gold;
}

.form-inline .dropdown img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #ddd;
    border-radius: 100%;
}


.detailCard .body .heading figure:last-child {
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detailCard .body .d-flex div label img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.reviewBox > .d-flex figure img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #ddd;
    border-radius: 100%;
}

.reviewBox > .d-flex {
    justify-content: start;
    gap: 1rem;
}

.signUpPage .btn-group.business .input-radio img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.businessCard figure {
    width: 90%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.businessCard figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-info-sec .btn-group img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.fourmCard figure img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff;
    border-radius: 100%;
}

#modal_image {
    height: 400px;
    width: 100%;
    object-fit: contain;
    background: #ddd;
    margin-bottom: 2rem;
}

.logoWrap img {
    height: 350px;
    width: 100%;
    object-fit: contain;
}

.lockedPriviewBox-nav img {
    width: 150px;
    height: 90px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 10px;
    cursor: pointer;
}

.lockedPriviewBox-nav {
    max-width: calc(100% - 50%);
    margin: 0 auto 0;
}

.lockedPriviewBox-nav img + img {
    margin: 0 1.5rem;
}

.lockedPriviewBox .slick-slide img {
    max-height: 450px;
    object-position: center;
    object-fit: contain;
    cursor: pointer;
}

.hero-card .content-row figure {
    height: 250px;
    width: 100%;
}

.hero-card .content-row figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ddd;
}

.inLoveSec .hero-card .card-top h3 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 5rem;
    text-transform: uppercase;
    width: 100%;
}

.dropdown-menu {
    right: 0;
    left: auto;
}

.noBusiness {
    font-size: 3rem;
    text-align: center;
}

.inLoveHead {
    background-color: #000;
    padding: 0.975rem 0;
    border-radius: 5px;
}

.inLoveHead a h3 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.inLoveHead a h3 span:nth-child(odd) {
    color: var(--primary);
}

.inLoveHead a h3 span:nth-child(even) {
    color: var(--secondary);
    font-size: 2.5rem;
}

.inLoveSec.inner .inLoveHead {
    /*background-color: var(--primary);*/
    margin-bottom: 3rem;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.inLoveHead a:hover h3 span:nth-child(odd) {
    animation: redBlue 1s forwards infinite ease-in-out;
}

.inLoveHead a:hover h3 span:nth-child(even) {
    animation: blueRed 1s forwards infinite ease-in-out;
}

.inLoveSec.inner .inLoveHead a:hover h3 span:nth-child(odd),
.inLoveSec.inner .inLoveHead a:hover h3 span:nth-child(even) {
    animation: none;
}

@keyframes redBlue {
    0% {
        color: var(--primary);
    }
    50% {
        color: var(--secondary);
    }
    100% {
        color: var(--primary);
    }
}

@keyframes blueRed {
    0% {
        color: var(--secondary);
    }
    50% {
        color: var(--primary);
    }
    100% {
        color: var(--secondary);
    }
}

#calendar {
    box-shadow: 0 0px 20px rgb(184 184 184 / 43%);
    padding: 3rem 3rem;
    height: 100%;
    overflow: auto;
}

.fc .fc-toolbar-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2rem;
    font-family: 'Poppins';
    color: #EF3F29;
}

.fc .fc-button {
    background: var(--secondary) !important;
    border: none;
    opacity: 1 !important;
}

.form-control {
    box-shadow: 0 1px 10px rgb(0 0 0 / 25%);
    color: #000 !important;
}
