/* Custom Styles */
:root {
    --primary-color: #20C5F2;
    --secondary-color: #6c757d;
    --third-color: #FBBB00;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --bg-light-color: #FFFBFB;
    --bg-yellow-color: #fbecbd;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark-color);
}

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

p{
    margin-bottom: 0;
}

.display-4{
    font-size: 6.25rem;
    line-height: 6.875rem;
    font-weight: 700;
}

h2{
    font-size: 4.3rem;
    line-height: 5.5rem;
    font-weight: 700;
}

a{
    display: inline-block;
    text-decoration: none;
}

a:hover{
    color: #FBBB00;
}

.header{
    position: fixed;
    top: 0;
    z-index: 20;
    width: 100%;
    left: 0;
    background: #FFFFFF;
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
}

.header.fixed{
    top: -75px;
}

#mobileMenu {
    width: 100%;
    position: fixed;
    background: #FFFFFF;
    left: -100%;
    height: 100vh;
    top: 0;
    padding: 70px 30px 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#mobileMenu.show{
    left: -90px;
}

.mobileMenu a.nav-link{
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.close_menu{
    font-size: 18px;
    line-height: 24px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    display: inline-block;
    border: 1px #000000 solid;
    position: absolute;
    top: 15px;
    right: 15px;
}

.top-bar {
    font-size: 0.9rem;
}

.top-bar .nav-link {
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.top-bar .location.btn.btn-primary {
    background-color: var(--bg-yellow-color);
    border-color: var(--bg-yellow-color);
    color: #000000;
    padding: 6px 20px 6px 15px;
    text-align: left;
    border-radius: 8px;
    font-size: 16px;
    line-height: 22px;
}

.main-header {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 1px #F3F3F3 solid;
}

.main-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.post-ad-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

section{
    padding: 100px 0;
}

.mt-top{
    margin-top: 182px;
}

.hero {
    background-color: var(--primary-color);
    color: white;
    padding:  0;
    height: 55vh;
    text-align: center;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 2rem;
    line-height: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.vector-build{
    width: 250px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.vector-build.left-build{
    right: auto;
    left: 0;
}

.categories {
    margin: -160px 0 0;
    z-index: 9;
    position: relative;
    padding-bottom: 0;
}

.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

textarea{
    resize: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 30px 20px;
    border-radius: 20px;
    font-weight: 600;
    background-color: #FBECBD;
    color: var(--dark-color);
    transition: transform 0.3s;
}

.category-item.motor{
    background-color: #CFDFFB;
}

.category-item.jobs{
    background-color: #C8F1E3;
}

.category-item.company{
    background-color: #FBECBD;
}

.category-item.article{
    background-color: #FCDAD8;
}

.category-item.services{
    background-color: #C8F1E3;
}

.category-item:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.category-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.how-it-works {
    background-color: var(--bg-light-color);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.how-works-left {
    padding-right: 100px;
    position: relative;
}

.how-works-left .step-img{
    position: relative;
}

.how-works-left::after{
    content: '';
    display: inline-block;
    width: 1px;
    height: 450px;
    border: 1px #4D67A0 dashed;
    position: absolute;
    right: 0;
    top: 100px;
}

.how-works-left span.count{
    width: 54px;
    height: 54px;
    background: #FBECBD;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -125px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 54px;
    z-index: 9;
}

.how-works-right{
    padding-left: 100px;
}

.step {
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 6px 64px -20px #00000026;
}

.step h3{
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.filter_block {
    background: transparent;
    border: 0;
    padding: 0 15px 40px 0;
    border-radius: 5px;
    height: 100%;
}

/* .filter_category{
    padding-left: 25px;
} */

.filter_block h4{
    background: #20c5f2;
    padding: 15px 10px;
    color: #FFFFFF;
    margin: 0 0 25px;
}

.filter_category h5 {
    font-size: 20px;
    margin: 0 0 25px;
    border-bottom: 1px #ede9e9 solid;
    padding: 0 0 15px;
}

.featured-classifieds h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.form-check .form-check-input{
    border-radius: 0;
}

.form-check-input:checked {
    background-color: #20c5f2;
    border-color: #20c5f2;
}

.classified-item {
    background: #FFFFFF;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.classified-item .content h3 {
    font-weight: 600;
    font-size: 24px;
    margin: 0;
    line-height: 36px;
}

.classified-item:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.classified-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
}

.classified-item .content {
    padding: 1.5rem .5rem;
}

.owl-theme .owl-nav [class*='owl-prev']{
    right: auto;
    left: -20px;
}

.owl-theme .owl-nav [class*='owl-']{
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 42px;
    background-color: #fffbfb;
    border-radius: 34px;
    font-size: 20px;
    color: #000000;
    box-shadow: 0px 4px 64px #00000040;
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    right: -20px;
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
}

.owl-theme .owl-nav [class*='owl-']:hover{
    background: #FBBB00;
}

.tag {
    display: inline-block;
    background-color: #20c5f2;
    padding: 0.20rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    color: #FFFFFF;
}

.meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.package-info {
    background-color: var(--bg-light-color);
}

.package-info h2 {
    text-align: center;
    margin-bottom: 6rem;
    font-weight: 700;
}

.package {
    background: #FFFFFF;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 370px;
    text-align: center;
    transition: transform 0.6s ease-in-out;
    -webkit-transition: transform 0.6s ease-in-out;
    transition: all .6s ease-in-out;
}

.package:hover{
    background: #20C5F2;
    border-color: #20C5F2;
    color: #FFFFFF;
}

.package:hover .features li span{
    color: #FFFFFF;
}

.package:hover .price span{
    color: #FFFFFF;
}

.badge.bg-primary {
    background-color: #FBECBD !important;
    color: #000;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
}

.package h3{
    font-size: 3rem;
    line-height: 4.5rem;
    margin-bottom: 0;
    font-weight: 700;
}

.package .price{
    margin: 40px 0;
}

.package .price img {
    width: 70px;
    height: 60px;
    margin-bottom: 0;
}

.price img {
    width: 50px;
    height: 40px;
    margin-right: 0.5rem;
}

.price span {
    font-size: 3.5rem;
    font-weight: 700;
}

.price .period {
    font-size: 1rem;
    color: var(--secondary-color);
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 0;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.features li span{
    color: #20C5F2;
}

.promo {
    background-color: #FFFFFF;
}

.promo img {
    border-radius: 0.5rem;
    max-width: 100%;
    height: auto;
}

.promo-content {
    padding-left: 80px;
}

.promo h3 {
    font-size: 3.375rem;
    line-height: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo p {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0b5ed7;
    color: white;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 2rem;
    height: 130px;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 4.438rem;
    padding-top: 1.5rem;
    border-top: 1px solid #FFFFFF;
    color: #FFFFFF;
    margin-bottom: 0;
}

/*-----------Login Page------------*/

.login-page{
    background: #FFFBFB;
    padding: 80px 0;
    margin: 200px 0 0;
}

.signup_process{
    display: none;
}

.login-sign-form{
    padding: 40px;
    border: 1px #e4e7e9 solid;
    border-radius: 15px;
    background: #FFFFFF;
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%); */
}

.login-sign-form h3{
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
}

.form-group .form-control{
    background-color: transparent;
    border-color: #e4e7e9;
    height: 47px;
    border-radius: 50px;
}

.form-control:focus{
    outline: 0;
    box-shadow: none;
}

.iti--separate-dial-code .iti__selected-flag, .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{
    background-color: transparent;
}

span.flags {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.form-check-input:focus{
    outline: none;
    box-shadow: none;
}

.form-group .iti--allow-dropdown{
    width: 100%;
}

span.flags img.img-fluid{
    width: 25px;
}

.btn.btn-primary{
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    background: #20c5f2;
    border-color: #20c5f2;
}

.otp-send.btn.btn-primary {
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 8px;
    right: 5px;
    z-index: 4;
}

.google-account {
    background-color: #f3f3f3;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    line-height: 65px;
    display: inline-block;
}

.sign-btn {
    display: inline-block;
    color: #20c5f2;
    text-decoration: none;
    font-weight: 600;
}

.slider-container {
  max-width: 960px;
  margin: auto;
  display: block;
}
.slider-container .slider {
  position: relative;
}
.slider-container .slider li {
  position: relative;
  width: 100%;
}
.slider-container .slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.direction-wrapper {
    background: #20c5f2;
    color: #FFFFFF;
}

.get_direction h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 54px;
    margin: 0 0 12px;
}

.get_direction p{
    font-size: 20px;
    line-height: 28px;
}

.direction-wrapper .btn.btn-primary{
    background: #FBECBD;
    color: #000000;
    font-size: 20px;
    padding: 12px 35px;
}

.right-side-caption {
    padding-left: 50px;
}

.right-side-caption h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 48px;
    margin: 0 0 5px;
}

.right-side-caption span.label {
    background: #fbecbd;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 12px;
}

.right-side-caption .paragraph{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.prodcut-table .table tr th{
    background: transparent;
    color: #000000;
    font-weight: 600;
}

.prodcut-table .table tr th, .prodcut-table .table tr td{
    text-align: left !important;
}

.call_request{
    width: 220px;
    display: inline-block;
    position: fixed;
    top: 25%;
    transform: translateY(-25%);
    right: -175px;
    z-index: 9;
    background: #fbecbd;
    color: #000000;
    padding: 10px 20px;
    border-radius: 30px 0 0 30px;
    vertical-align: middle;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
}

.phone_request {
    top: 33%;
    transform: translateY(-33%);
}

.call_request:hover{
    color: #000000;
}

.call_request:hover{
    right: 0;
}

.right-side-caption .sm-label{
    font-size: 14px;
    line-height: 22px;
}

.btn.btn-secondary {
    background: #fbecbd;
    border: 0;
    padding: 15px 0;
    border-radius: 50px;
    color: #000;
}

form.personal_form {
    background: #20c5f2;
    padding: 60px 40px;
    border-radius: 40px;
    color: #FFF;
}

.profile-tabs .nav-tabs .nav-item:not(:first-child){
    margin-left: 10px;
}

.profile-tabs .nav-item .nav-link {
    padding: 15px 60px;
    background: #FBECBD;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
}

.profile-tabs .nav-item .nav-link.active, .profile-tabs .nav-item .nav-link:hover{
    background-color: #20c5f2;
    color: #FFFFFF;
}

.personal_form .btn.btn-primary {
    background: #fbecbd;
    color: #000000;
    padding: 10px 40px;
    font-size: 22px;
}

.personal_form .btn.btn-default{
    border: 2px #FBECBD solid;
    color: #FFFFFF;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 22px;
}

.table tr th{
    background-color: #20C5F2;
    color: #FFFFFF;
    font-weight: 500;
}

.table tr th, .table tr td{
    font-size: 14px;
    padding: 20px 8px;
    line-height: 20px;
}

.table tr td .green-label{
    display: inline-block;
    background: #56fa2d;
    color: #FFFFFF;
    padding: 3px 6px;
    border-radius: 10px;
}

.table tr td .delete-table{
    background: #FF0000;
    padding: 3px 7px;
    border-radius: 4px;
}

.table tr td .delete-table a{
    color: #ffe6e6;
}

.table tr th:last-child, .table tr td:last-child{
    vertical-align: middle;
    text-align: center;
}

.professional_data-wrapper .step {
    display: none;
}

.professional_data-wrapper .active {
    display: block;
}

.adding_biodata{
    padding: 50px;
    border-radius: 24px;
    border: 1px solid #EFF0F6;
    box-shadow: 0px 5px 16px 0px #080F340F;
}

.professional_data-wrapper .progress {
    height: 8px;
    border-radius: 4px;
}

.professional_data-wrapper .progress-bar{
    background-color: #fbecbd;
}

.checkbox-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox-input:checked + .checkbox-tile {
  border-color: #20c5f2;
}
.checkbox-input:checked + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #20c5f2;
  border-color: #20c5f2;
}
/* .checkbox-input:checked + .checkbox-tile .checkbox-icon, .checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: #2260ff;
} */
/* .checkbox-input:focus + .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
} */
.checkbox-input:focus + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-tile {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
.checkbox-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 9;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.checkbox-tile:hover {
  border-color: #2260ff;
}
.checkbox-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.get_in_touch-wrapper{
    background: #F1F2F4;
    padding: 60px 0;
}

.contact_caption {
    padding-right: 40px;
}

.contact_caption h3{
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    margin: 0;
    color: #181818;
}

.contact_caption p{
    font-size: 14px;
    line-height: 18px;
    margin: 0;
    padding: 17px 0 37px;
}

.contact_caption ul.list-inline li{
    display: flex;
    align-items: start;
}

.contact_caption ul.list-inline li:not(:first-child){
    margin-top: 30px;
}

.contact_caption ul.list-inline li .get-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #20c5f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_caption ul.list-inline li div > h6{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
    padding: 0 0 11px;
    color: #181818;
}

.contact_caption ul.list-inline li div > p{
    font-size: 14px;
    line-height: 19px;
    color: #707070;
    margin: 0;
    padding: 0;
}

.contact_form{
    background: #FFFFFF;
    border-radius: 20px;
    padding: 47px 29px;
    box-shadow: 0px 0px 17px 0px #0000000F;
    -webkit-box-shadow: 0px 0px 17px 0px #0000000F;
}

.contact_form .form-control{
    height: 60px;
    background: #F5F5F5;
    border: 0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
}

.price-range-slider {
  width: 100%;
}
.price-range-slider .range-value {
  margin: 0;
}
.price-range-slider .range-value input {
  width: 100%;
  background: none;
  color: #000;
  font-size: 16px;
  font-weight: initial;
  box-shadow: none;
  border: none;
  margin: 20px 0 20px 0;
}
.price-range-slider .range-bar {
  border: none;
  background: #000;
  height: 3px;
  position: relative;
}
.price-range-slider .range-bar .ui-slider-range {
  background: #06b9c0;
}
.price-range-slider .range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #fff;
  border: 2px solid #20c5f2;
  height: 17px;
  width: 17px;
  position: absolute;
  top: -0.52em;
  cursor: pointer;
}
.price-range-slider .range-bar .ui-slider-handle + span {
  background: #20c5f2;
}

.post_form .form-group .form-control{
    border-radius: 8px;
}

select.form-control{
    background-image: url('../images/down-arrow.svg');
    background-repeat: no-repeat;
    background-position: 96% center;
    background-size: 15px;
}

.post_form .form-group .form-control[type=file] {
    height: 47px;
    padding: 10px 10px;
}

.featured-classifieds h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 42px;
}

.enquery_form {
    background: #fbecbd;
    padding: 50px 30px 50px 80px;
    position: fixed;
    z-index: 10;
    top: 70%;
    transform: translateY(-70%);
    right: -540px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
}

.enquery_form.on{
    right: 0;
}

.enquery_form .form-group .form-control{
    border-color: #000000;
    color: #000000;
}

.enquery_form .btn.btn-primary{
    max-width: 220px;
    font-size: 18px;
    font-weight: 600;
}

.enquery_form h5{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #000000;
    transform: translateY(-50%) rotate(-90deg);
    position: absolute;
    left: -189px;
    top: 50%;
    background: #fbecbd;
    padding: 14px 30px;
    cursor: pointer;
}

.subcategory_grid {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 0 20px;
}

.adding_pricing .checkbox-tile:before{
    left: 20px;
    right: auto;
}

.adding_pricing .checkbox-input:checked + .checkbox-tile:before{
    background-color: #FBECBD;
    border-color: #FBECBD;
}

.adding_pricing .package{
    max-width: 100%;
}

.pagination .page-item.active a.page-link {
    background-color: #20c5f2;
    border-color: #20c5f2;
}

.dropdown .dropdown-toggle::after{
    display: none;
}

.title_lg{
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 44px;
}

.personal_form .iti__country{
    color: #000;
}

.enquiryclose_btn {
    font-size: 30px;
    color: #000;
    line-height: 40px;
    font-weight: 400;
    position: absolute;
    top: 4px;
    left: 25px;
}

.enquery_form .form-group input[type="file"].form-control {
    padding: 11px 10px;
}

.adding_biodata .checkbox{
    margin: 10px 0;
}

.top-bar .btn.btn-default:focus, .top-bar .btn.btn-default.show{
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

.category_modal .btn-close {
    position: absolute;
    top: -20px;
    right: -10px;
    background-color: #FFF;
    width: 40px;
    color: #000;
    height: 40px;
    border-radius: 50%;
    opacity: 1;
}

.category_modal .modal-body{
    padding: 40px 20px 30px;
}

.category_modal .modal-body h5{
    margin-bottom: 30px;
}

.header ul.dropdown-menu {
    border: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header ul.dropdown-menu li .dropdown-item{
    padding: 10px;
}

.header ul.dropdown-menu li .nav-link.btn.btn-link{
    display: block;
    width: 100%;
    text-align: left;
}

.header ul.dropdown-menu li .dropdown-item:hover, .header ul.dropdown-menu li:hover .nav-link.btn.btn-link{
    background-color: #20C5F2;
    color: #FFFFFF;
}

/* Responsive adjustments */
@media screen and (max-width:1366px) {
.display-4 {
    font-size: 4.25rem;
    line-height: 5rem;
}

.hero p {
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 700px;
}

.vector-build{
    width: 170px;
}

.categories{
    margin: 0;
    padding-top: 50px;
}

h2 {
    font-size: 3.5rem;
    line-height: 5rem;
}

.step h3 {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 5px;
}

.package-info{
    padding-top: 0;
}

.classified-item .content h3 {
    font-size: 20px;
    line-height: 32px;
}
    
}


@media screen and (max-width:1199px) {
.main-nav .nav-link {
    padding: 0.5rem;
    font-size: 14px !important;
    text-align: center;
}

.promo h3 {
    font-size: 2.375rem;
    line-height: 3rem;
}

.promo-content{
    padding-left: 0;
}

h1{
    font-size: 4rem !important;
    line-height: 5rem !important;
}

p{
    font-size: 0.9rem !important;
    line-height: 1.5rem !important;
}

h2{
    font-size: 3rem;
    line-height: 4rem;
}

h3{
    font-size: 1rem;
    line-height: 1.5rem;
}

.vector-build{
    width: 90px;
}

.how-works-right {
    padding-left: 30px;
}

.categories{
    margin-top: 0;
}

.adding_biodata {
    padding: 50px 30px;
}

.professional_data-wrapper {
    padding-top: 50px;
}

}

@media screen and (max-width:991px) {
.filter_block{
    padding-right: 0;
    padding-bottom: 15px;
}

.filter_block.accordion-item{
    padding: 0;
}

.direction-wrapper .btn.btn-primary {
    white-space: nowrap;
    padding: 12px 20px;
}

.right-side-caption {
    padding-left: 10px;
}

.right-side-caption h3 {
    font-size: 26px;
    line-height: 38px;
    margin: 0 0 15px;
}

.sub_grid_block .category-item {
    padding: 20px 10px;
}

.subcategory_grid{
    grid-template-columns: auto auto auto;
    gap: 20px 0;
}

.sub_grid_block .category-item span {
    font-size: 14px;
}

.hero{
    height: 35vh;
}

.prodcuts_filter{
    display: none;
}

.price-range-slider {
    width: 100%;
    padding: 0 20px 0 0;
}

.filter_block h4{
    margin-bottom: 0;
}

}

@media (max-width: 768px) {
.hero {
    padding: 3rem 0;
}

.hero h1 {
    font-size: 2rem !important;
    line-height: 3.5rem !important;
}

.subcategory_grid{
    grid-template-columns: auto auto;
    gap: 20px 0;
}

/* .sub_grid_block {
    width: 134px;
} */

.hero p {
    font-size: 1rem;
}

.main-nav {
    display: none;
}

.mobile-menu-btn {
    display: block;
}

.owl-theme .owl-nav [class*='owl-prev']{
    left: 0;
}

.owl-theme .owl-nav [class*='owl-'] {
    width: 45px;
    height: 45px;
    line-height: 42px;
    font-size: 20px;
    right: 0;
}

.step h3 {
    font-size: 24px;
    line-height: 40px;
}

}

@media screen and (max-width:767px) {

h2{
    font-size: 2rem;
    line-height: 3rem;
}

.profile-tabs .nav-item .nav-link {
    padding: 15px 20px;
}

.title_lg {
    font-size: 28px;
    line-height: 40px;
}

.vector-build {
    width: 90px;
}

.right-side-caption{
    padding-left: 0;
}

.adding_biodata {
    padding: 50px 20px;
}

.package-info h2{
    margin-bottom: 3rem;
}

.how-it-works .step {
    text-align: center;
}

.price span {
    font-size: 3rem;
}

.login-sign-form{
    padding: 30px 20px;
}

.package .price {
    margin: 20px 0 30px;
}

.how-works-right {
    padding-left: 0;
}

section {
    padding: 50px 0;
}

/* .step img {
    width: 140px;
    height: 140px;
} */

.category-item img{
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.top-bar .location.btn.btn-primary {
    padding: 6px 6px;
    font-size: 14px;
    line-height: 22px;
}

.login-sign-form h3 {
    font-size: 28px;
    line-height: 38px;
}

.form-check label.form-check-label {
    font-size: 14px;
    line-height: 20px;
}

.right-side-caption h3 {
    font-size: 25px;
    line-height: 40px;
    margin: 0 0 10px;
}

.lSSlideOuter.vertical {
    padding-right: 0 !important;
    padding-left: 50px;
}

.lSSlideOuter.vertical .lSGallery {
    left: -10px;
}

.featured-classifieds h3 {
    font-size: 28px;
}

.down_btn{
    display: inline-block;
    padding: 6px;
}

.down_btn svg path{
    fill: #FFFFFF;
}

.hero h1 {
    line-height: 2.5rem !important;
    margin-bottom: 1rem;
}
    
}