/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {

    /* Color Scheme */
    --white: #fff;
    --blue: #0E1638;
    --golden: #FABF06;
    --gray: #69727d;
    --black: #222222;
    --black-alter: #333;
    --dark-blue: #070C25;
    --bright-blue: #095A83;
    --gray-rgb: 105, 114, 125;
    --dark-blue-rgb: 7, 12, 37;
    --white-rgb: 248, 248, 248;
    --blue-rgb: 14, 22, 56;
    --bright-blue-rgb: 16, 137, 255;

    /* Font Formating */
    --heading-font: 'Roboto', sans-serif;
    --main-heading-font-size: 2rem;
    --sub-heading-font-size: 1.8rem;
    --font: 'Lato', sans-serif;
    /*  */
    --header-hieght: 72px;


}

* {
    font-family: var(--font);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

p,
ul,
header {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Main Header */
.ftco-navbar-light {
    background: var(--bright-blue);
    z-index: 3;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    font-size: 0.8rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 1 !important;
}

.ftco-navbar-light .navbar-brand {
    color: var(--white);
    text-transform: uppercase;
}

.custom-toggler {
    border: 1px solid var(--white);
}

.custom-toggler .navbar-toggler-icon {
    color: #fff;
}

.navbar .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

/* heroes section start */
.heroes-section {
    position: relative;
    width: 100%;
    height: calc(86vh - 72px);
    overflow: hidden;
    background-image: linear-gradient(0deg, rgba(16, 137, 255, 0.2), rgba(16, 137, 255, 0.1)), url(../img/xyz.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.heroes-section .container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #333; */
}

.heroes-main {
    display: flex;
    flex-direction: column;
    height: 50%;
    width: 90%;
    gap: 30px;
}

.heroes-main .intro .hero-title {
    font-size: 3.5rem;
    color: var(--white);
}

.heroes-main .intro p {
    font-size: 1rem;
    color: var(--white);
    max-width: 100%;
    text-align: left;
}


.option {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
}

.option select.js-example-basic-multiple {
    width: 70%;
}

.heroes-section .hero-item .option input {
    width: 100%;
    border: 1px solid rgba(var(--gray-rgb), 0.7);
    margin-right: 5px;
    margin-bottom: 5px;
    outline: 0;
    color: var(--black-alter);
    font-size: 18px;
    font-weight: 400;
    height: 40px;
    transition: background-color .24s, box-shadow .24s;
    transition-property: background-color, box-shadow;
    transition-duration: 0.24s, 0.24s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;
    background-color: transparent;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: flex;
    line-height: 38px;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(var(--gray-rgb), 0.7);
}

.select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 18px;
}

.select2-container .select2-selection--single {
    height: 45px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}

.option .button-2 {
    height: 40px;
    display: inline-block;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0px;
    color: var(--black);
    background-color: var(--golden);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: none;
    margin-left: 5px;
    margin-bottom: 7px;
}

.option .button-2:hover {
    background-color: var(--bright-blue);
    border: none;
    color: var(--white);
}

.listing-header.button {
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
    color: #333;
}

.listing-header .button:hover {
    text-decoration: none;
    color: var(--bright-blue);
}

.button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--bright-blue);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.button:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.popular-cities-section,
.car-auction-section,
.popular-bank-section {
    padding: 15px 0px;
}

.popular-cities-section .title,
.popular-bank-section .title,
.car-auction-section .title {
    text-align: left;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    color: var(--black-alter);
}

.popular-cities-section .title:after,
.popular-bank-section .title:after,
.car-auction-section .title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #007bff;
    margin: 20px;
    border-radius: 2px;
}



.popular-cities-section .city,
.car-auction-section .city {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 1px solid rgba(var(--gray-rgb), 0.6);
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    height: 80%;
}

.popular-cities-section .city:hover,
.car-auction-section .city :hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.popular-cities-section .city p,
.car-auction-section .city p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black-alter);
    text-align: center;
}

.popular-cities-section .city img,
.car-auction-section .city img {
    width: 20%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 10%;
    transition: transform 0.3s ease;
}

.popular-cities-section .city:hover,
.car-auction-section .city:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.popular-cities-section .city:hover img,
.car-auction-section .city:hover img {
    transform: scale(1.1);
}

.banks-container {
    display: flex;
    overflow-x: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.banks-container .bank {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(var(--gray-rgb), 0.6);
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banks-container .bank img {
    width: 20%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

/* readmore button start*/
.read-more {
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid #3498db;
    color: var(--black-alter);
    cursor: pointer;
    transition: all 1s ease;
    background-color: #3498db;
    border-radius: 8px;
    color: var(--white);
    margin-right: 10px;
}

.read-more:hover {
    background-color: var(--bright-blue);
    color: var(--white);
}

/* heroes section closed */
/* listing  section start*/
.listing-section {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.listing-header {
    color: var(--black-alter);
    padding: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(var(--gray-rgb), 0.4);

}

.listing-item {
    margin-top: 10px;
    font-weight: 500;
}

.listing-item .row {
    padding: 5px;
}


/* listing  section END*/
/* itienary start*/

.itinerary-container {
    padding: 10px;
}

.itinerary-container .card {
    overflow: hidden;
}

.itinerary-container .itinerary-top {
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 700;
    max-width: 100%;
}

.itinerary-container .itinerary-top .country {
    font-size: 4rem;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 2px;
}

.itinerary-container .itinerary-top .about {
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 700;
    max-width: 60%;
    margin-bottom: 5vh;
}

.itinerary-container .itinerary-title h2 {
    font-size: var(--sub-heading-font-size);
    color: var(--black-alter);
    font-weight: 450;
    padding: 10px;
    margin: 10px 10px 15px 0;
}

.itinerary-container .card .card-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.itinerary-container .row .col-lg-2 {
    padding: 0;
}

.itinerary-container .card .card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.itinerary-container .card-body .card-title {
    font-size: 1.3rem;
    color: var(--black-alter);
}

.itinerary-container .card-body .card-title:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.itinerary-container .card-body p {
    font-size: 0.9rem;
    padding: 5px;
    color: var(--black-alter);
}

.itinerary-container .card-body .details {
    width: 60%;
    display: flex;
    justify-content: start;
    gap: 1vh;
    align-items: center;
    margin-left: 5px;
}

.itinerary-container .card-body .card-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 5px;
}

.itinerary-container .card-body .packages .packages-btn button {
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 8px;
    text-align: center;
    background-color: var(--golden);
    width: 65%;
    height: 25%;
    border-radius: 25px;
    border: none;
    margin-top: 10px;
}

/* itinerary secttion end */
/* search section start */
#search-top-header {
    width: 100%;
    height: 150px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: start;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-image: url(../img/search.jpg);
    object-fit: contain;
    background-size: cover;

}

.search-main h2 {
    font-size: 3.5rem;
    text-align: center;
    padding: 20px;
    color: var(--bright-blue);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    margin: 0;
}

.form-title h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--black-alter);
    margin-bottom: 15px;
    margin-top: 25px;
}

.search-form input {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid rgba(var(--gray-rgb), 0.7);
    outline: none;
    color: var(--black-alter);
    font-size: 16px;
    font-weight: 400;
    transition: background-color .24s, box-shadow .24s;
    transition-property: background-color, box-shadow;
    transition-duration: 0.24s, 0.24s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;
}

.search-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(216, 226, 236, 0.5);
}

.search-form input {
    border-radius: 5px;
}

.search-form input:hover {
    background-color: rgba(26, 22, 22, 0.05);
}

.search-form label {
    margin-bottom: 6px;
    color: var(--black-alter);
    font-size: 14px;
    font-weight: 550;
    margin-left: 2px;
}

.radio-btn {
    display: flex;
}

.radio-btn .possession,
.radio-btn .physical,
.radio-btn .symbolic {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
}

.search-auction-btn button {
    padding: 10px;
    background-color: var(--black-alter);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    min-width: 30%;
    border: none;
}


/* faq & privacy policy start */
#faq-header-main {
    width: 100%;
    height: 150px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: start;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-image: url(../img/about-bg.jpg);
    object-fit: contain;
    background-size: cover;

}

#privacy-top-head {
    width: 100%;
    height: 150px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: start;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-image: url(../img/about-bg.jpg);
    object-fit: contain;
    background-size: cover;

}

.faq-header-container h2,
.privacy-main h2 {
    font-size: 3.5rem;
    text-align: center;
    padding: 20px;
    color: var(--bright-blue);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    margin: 0;
}

.privacy-container,
.faq-container {
    padding: 20px;
    color: var(--black-alter);
}

.privacy-container .main-title,
.faq-container .main-title {
    margin: 20px 0 40px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.privacy-container .main-title:after,
.faq-container .main-title:after {
    content: '';
    width: 50px;
    height: 2px;
    display: block;
    margin: 15px auto 0;
    background-color: var(--bright-blue);
}

.privacy-container p,
.faq-container p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.privacy-container h4,
.faq-container h4 {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.privacy-container a,
.faq-container a {
    color: rgba(var(--blue-rgb), 0.8);
    text-decoration: none;
    font-weight: bold;
}

.privacy-container .privacy,
.faq-container .faq {
    margin-bottom: 40px;
}

.privacy-container .privacy p,
.faq-container .faq p {
    margin-top: 10px;
}

.privacy-container a:hover,
.faq-container a:hover {
    text-decoration: underline;
}

/* abouts start*/
#about-top {
    width: 100%;
    height: 150px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: start;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-image: url(../img/about.jpg);
    object-fit: contain;
    background-size: cover;

}

.about-container h2 {
    font-size: 3.5rem;
    text-align: center;
    padding: 20px;
    color: var(--bright-blue);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    margin: 0;
}

#company-history {
    padding: 60px 0;
    text-align: center;
}

#company-history .about-title {
    color: var(--black-alter);
    font-size: var(--main-heading-font-size);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}

#company-history .about p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

#company-history a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: bold;
}

#company-history a:hover {
    text-decoration: underline;
}

#company-history .counter-wrapper {
    padding: 30px;
    margin: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#company-history .counter-wrapper:hover {
    transform: scale(1.03);
}

#company-history .counter-wrapper h2 {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

#company-history .counter-wrapper p {
    font-size: 2rem;
    font-weight: 700;
}

/* contact form */
#contact-top {
    width: 100%;
    height: 150px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: start;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-image: url(../img/bg.png);
    object-fit: contain;
    background-size: cover;

}

.contact-container h2 {
    font-size: 3.5rem;
    text-align: center;
    padding: 20px;
    color: var(--bright-blue);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    margin: 0;
}

.contact-form-main {
    padding: 40px 0px;
}

.contact-form-main .main-title {
    text-align: center;
    margin: 20px 0 40px 0;
    font-size: var(--main-heading-font-size);
    font-weight: 700;
    position: relative;
}

.contact-form-main .main-title:after {
    content: '';
    width: 50px;
    height: 2px;
    display: block;
    margin: 15px auto 0;
    background-color: var(--bright-blue);
}

.contact-form-main .contact-form {
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--gray-rgb), 0.4);
}

.contact-form-main .form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form-main input[type="text"],
.contact-form-main input[type="email"],
.contact-form-main textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
    outline: none;
}

.contact-form-main button {
    background-color: var(--black-alter);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form-main button:hover {
    background-color: var(--gray);
}

.contact-form-main .contact-support,
.list-properties,
.location {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid rgba(var(--gray-rgb), 0.4);
    max-height: 30vh;
}


.contact-form-main h3 {
    font-size: 1.5rem;
    color: var(--black-alter);
}

.contact-form-main p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* login & register form */
.login-form-main,
.register-form-main,
.forgot-form {
    padding: 60px 0;
}

.login-form-main .main-title,
.register-form-main .main-title,
.forgot-form-main .main-title {
    text-align: center;
    margin: 20px 0 40px 0;
    font-size: var(--main-heading-font-size);
    font-weight: 700;
    position: relative;
}

.login-form-main .main-title:after,
.register-form-main .main-title:after,
.forgot-form-main .main-title:after {
    content: '';
    width: 50px;
    height: 2px;
    display: block;
    margin: 15px auto 0;
    background-color: var(--bright-blue);
}

.login-form-main .login-form,
.register-form-main .register-form,
.forgot-form-main .forgot-form {
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--gray-rgb), 0.4);
}

.login-form-main .form-group,
.register-form-main .form-group,
.forgot-form-main .form-group {
    margin-bottom: 8px;
}

.login-form-main .form-group:nth-child(2) {
    margin-bottom: 0px;
}

.login-form-main label,
.register-form-main label,
.forgot-form-main label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--black-alter);
    font-weight: 600;
}

input[type="text"],
input[type="password"],
input[type="number"],
.login-form-main input[type="text"],
.login-form-main input[type="password"],
.register-form-main input[type="text"],
.register-form-main input[type="password"],
.register-form-main input[type="number"],
.forgot-form-main input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(var(--gray-rgb), 0.7);
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
    outline: none;
}

.login-form-main .forgot-password {
    display: block;
    text-align: right;
    margin-top: 0px;
    color: var(--bright-blue);
    ;
    text-decoration: none;
}

.login-form-main .forgot-password:hover {
    text-decoration: underline;
}

.login-form-main button,
.register-form-main button,
.forgot-form-main button {
    background-color: var(--black-alter);
    color: var(--white);
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
}

.login-form-main button:hover,
.register-form-main button:hover,
.forgot-form-main button:hover {
    background-color: var(--gray);

}

.login-form-main .create-account,
.forgot-form-main .create-account {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.login-form-main .create-account a,
.forgot-form-main .create-account a {
    color: var(--bright-blue);
    text-decoration: none;
}

.login-form-main .create-account a:hover,
.forgot-form-main .create-account a:hover {
    text-decoration: underline;
}

.terms {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--black-alter);
}

.register-form-main .terms p {
    margin: 10px 0;
}

.register-form-main .terms a {
    color: rgba(var(--blue-rgb), 0.8);
    text-decoration: none;
    font-weight: bold;
}

.register-form-main .terms a:hover {
    text-decoration: underline;
    color: rgba(var(--blue), 1);
}

/* dashboard */
.profile-container {
    padding: 20px;
    border-radius: 10px;
}

.profile-container .main-profile {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.profile-container .main-profile img {
    width: 10%;
    height: 15%;
    object-fit: contain;
    border-radius: 50%;
}

.profile-container .edit-profile-btn {
    width: 100%;
    padding: 5px 8px;
    border-radius: 15px;
    border: none;
    background-color: rgba(var(--gray-rgb), 0.2);
    color: var(--black-alter);
    margin-top: 5vh;
    font-size: 0.9rem;
}


.profile-container .profile-data .profile-name {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.profile-container .profile-data .profile-mail {
    font-size: 18px;
    color: var(--gray);
    margin-top: 0px;
}

.profile-container .dashboard-header {
    margin-top: 4vh;
}

.profile-container .dashboard-header h3 {
    font-size: 1.7rem;
    color: var(--black-alter);
}

.profile-container .profile-details {
    margin-top: 20px;
}

.profile-container .profile-details div {
    margin-bottom: 5px;
}

.profile-container .profile-details p {
    margin: 5px 0;
    font-size: 16px;
    color: #666;
}

.profile-container .profile-details .user-name,
.profile-container .profile-details .email,
.profile-container .profile-details .phone,
.profile-container .profile-details .profession {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-container .profile-details .user-name p:first-child,
.profile-container .profile-details .email p:first-child,
.profile-container .profile-details .phone p:first-child,
.profile-container .profile-details .profession p:first-child {
    font-weight: bold;
    color: var(--black-alter);
}

.profile-container .change-password-btn {
    margin-top: 10px;
    width: 20%;
    min-width: 23%;
    padding: 5px;
    float: right;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background-color: var(--bright-blue);
    color: var(--white);
}

/* view-auction */

.property-details h3 {
    font-size: var(--sub-heading-font-size);
}

.property-details .bank-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-details .bank-title p {
    font-size: 1.2rem;
    color: var(--black-alter);
}

.property-details .bank-title img {
    width: 2vw;
    object-fit: contain;
}

.property-price {
    color: var(--gray);
}

.auction-header {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(var(--gray-rgb), 0.7);
    margin-top: 5px;
}

.auction-header .auction-history {
    color: var(--bright-blue);
}

.auction-details div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5px;
}

.auction-details div p {
    font-size: 1rem;
    padding: 5px;

}

.auction-details div :first-child {
    font-weight: 700;
}

.auction-details div :nth-child(2) {
    color: var(--bright-blue);
}

.sidebar {
    margin: 0;
    padding: 0;
}

.sidebar-item {
    margin-bottom: 20px;
}

.sidebar h2 {
    font-size: 1.5rem;
    background-color: var(--black-alter);
    height: 100%;
    padding: 20px;
    font-weight: 500;
    margin: 0;
    color: var(--white);
}

.social-icons {
    list-style: none;
    padding: 25px 0px;
    margin: 0;
    text-align: center;
    height: 100%;
    background-color: rgba(var(--gray-rgb), 0.1);
}

.social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.social-icons li:last-child {
    margin-right: 0;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(0deg, var(--white));
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(0deg, var(--bright-blue), var(--bright-blue));
}

.social-icons i {
    color: #fff;
}

.social-icons a i {
    color: #555;
    font-size: 20px;
}

.sidebar-similar-item .category {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(var(--gray-rgb), 0.7);
    background-color: rgba(var(--gray-rgb), 0.1);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-similar-item .category h5 {
    color: var(--bright-blue);
}


.sidebar-similar-item .category .bank-category {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-similar-item .category .bank-category p {
    color: var(--black-alter);
}

.sidebar-similar-item .bank-category img {
    width: 2vw;
    object-fit: contain;
}

.sidebar-similar-item .category .price {
    margin-left: 6px;
    color: var(--gray);
    font-weight: 600;
}

.signin-container {
    border-radius: 15px;
    background-color: #007bff;
}

.signin-container h2 {
    font-size: 1.4rem;
    font-weight: 600;
}

.signin-container p {
    font-size: 1rem;
}

.signin-container button {
    font-size: 1rem;
    border-radius: 5px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.signin-container button:hover {
    background-color: #fff;
    color: var(--black-alter);
    transform: scale(1.05);
}


/* footer */

footer {
    color: var(--black-alter);
    padding: 20px;
    text-align: center;
    background-color: var(--bright-blue);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-social a {
    color: var(--white);
    margin: 0 12px;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
    color: var(--gray);
}

.copyright-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--white);
}

@media only screen and (max-width:780px) {

    /* navbar */
    .navbar>.container {
        margin-bottom: 0px;
    }

    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
        border-bottom: 1px solid #ffffff69;
    }

    /* Hero section */

    .heroes-section {
        height: calc(50vh - 64px);
    }

    .hero-item {
        width: 100%;
        margin: 0;
        padding: 0;
        left: 0;
        background: transparent;
    }

    .option {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: auto;
    }

    .heroes-section .hero-item .option input,
    .heroes-section .hero-item .option select {
        width: 100%;
        margin: 0;
        margin-bottom: 12px;
    }

    .select2-container {
        margin-bottom: 12px;
    }

    .option .button-2 {
        width: 100%;
        margin: 0;
    }

    .select2-selection .select2-selection--single {
        width: 100% !important;
    }

    /* Hero section end */
    /* view auction start */
    .property-details .bank-title img {
        width: 8vw;
    }

}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.nav-mob-title {
    display: none;
}

.option {
    align-items: flex-start;
}

.heroes-section .hero-item .option input {
    width: 100%;
    padding: 8px;
}

.option .button-2 {
    width: 50%;
    margin: 0;
}

.result_container {
    position: relative;
}

.search_results {
    position: absolute;
    z-index: 999;
    background-color: lightgrey;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    border-radius: 4px;
    max-width: 200px;
}

.search_results.show {
    display: block;
}

.search_results li {
    padding: 8px;
    cursor: pointer;
}

.search_results li:hover {
    background-color: #f2f2f2;
}

.home-footer-links {
    background: #f2f2f2;
}

.home-footer-links .listing-section {
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
}

.button::before {
    bottom: -8px;
}

.hfnav {
    position: relative;
}

#cityList.show-all-cities .col-6:nth-child(n+7) {
    display: block !important;
}

@media only screen and (max-width:780px) {

    .navbar>.container {
        margin-bottom: 0px;
    }

    .option .button-2 {
        width: 100%;
    }

    .heroes-section {
        height: calc(60vh - 64px);
    }
}

@media only screen and (max-width:992px) {
    .nav-mob-title {
        display: inline;
        margin-left: 12px;
    }

    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
        border-bottom: 1px solid #ffffff69;
    }

    .listing-header {
        font-size: 1rem;
        background: #ccc;
        padding: 4px 8px;
        margin-bottom: 2px;
    }

    .heroes-main .intro .hero-title {
        font-size: 2.5rem;
        margin-top: 10%;
    }

    .heroes-section .container {
        align-items: flex-start;
    }

    .heroes-section {
        height: calc(90vh - 72px);
    }
}

@media only screen and (min-width:992px) {
    #ftco-nav li.nav-item {
        display: flex;
        align-items: center;
    }

    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link.bg-info {
        background-color: transparent !important;
    }

    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link .nav-icon {
        font-size: 1.2rem;
    }

}