@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&family=Roboto:wght@400;500&display=swap');

@import './L_main.css';

@import './D_main.css';

@import './dir_rtl.css';



/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 6rem;

    /*========== Colors ==========*/
    --first-color: hsl(228, 62%, 59%);
    --second-color: hsl(228, 66%, 47%);
    --second-color-hover: #2f3c91;
    --third-color: hsl(228, 57%, 28%);
    --third-color-hover: hsl(232deg 51% 38% / 30%);
    --fourth-color: hsl(25, 83%, 53%);
    --fifth-color-light: hsl(228, 100%, 97%);
    --container-color: #fff;
    --body-color: #fff;
    --sixth-color-light: hsl(228, 12%, 75%);
    --sixth-color-light-hover: hsl(228, 15%, 50%);

    --border-color: hsl(228, 99%, 98%);
    --linear-color-dark: linear-gradient(101deg, hsl(228deg 59% 53% / 42%), hsl(228deg 51% 51%));
    --linear-color-light: linear-gradient(283deg, hsl(228deg 59% 53% / 47%), hsl(228deg 51% 51%));

    --body-font: 'Roboto', sans-serif;
    --alt-font: math;

    --font-medium: 500;
    --font-semi-bold: 600;

    --z-sm: 10;
    --z-lg: 70;
    --z-fixed: 100;

    --first-transition: .3s;
    --second-transition: .5s;
    --third-transition: .7s;

    --first-radius: 6px;
    --second-radius: 10px;
    --third-radius: 20px;

    --spacing: .7px;

    --f-shadow: 0 4px 11px 2px rgb(0 0 0 / 10%);

    --f-gap: 10px;
    --s-gap: 20px;
}

/*=============== BASE ===============*/
*,
ul {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    text-transform: capitalize;
    font-family: var(--body-font);
    background-color: var(--body-color);
    color: var(--fifth-color-light);
    text-align: left;
}

ul {
    list-style: none;
}

a,
span {
    display: block;
}

a,
a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

i {
    vertical-align: unset !important;
}

h1,
h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.7rem;
}

input,
button,
select {
    outline: none;
    border: none;
    cursor: pointer;
}

input:focus,
button:focus,
select:focus {
    outline: unset;
}

input::placeholder {
    color: rgb(170, 170, 170);
    font-size: .9rem;
    font-weight: var(--font-medium);
    text-transform: capitalize;
}

input:focus::placeholder {
    opacity: 0;
}

@media (max-width: 375px) {
    h3 {
        font-size: 1.1rem !important;
    }
}

@media (min-width: 700px) and (max-width: 767px) {
    .container {
        max-width: 620px;
    }
}

@media (max-width:766px) {

    h1,
    h2,
    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    p,
    a {
        font-size: .9rem !important;
    }
}

@media (min-width: 767px) and (max-width:991px) {

    h1,
    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    h1,
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 1199px) {
    input::placeholder {
        font-size: .9rem;
    }
}

/*=============== REUSABLE CSS CLASSES ===============*/
.main {
    overflow: hidden;
}

.section {
    padding: 4.5rem 0 2rem;
}


/* =============== Components =============== */
.cover_img {
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}


.button {
    display: inline-block;
    padding: 12px;
    font-weight: var(--font-medium);
    box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
    cursor: pointer;
}


.section_subtitle {
    letter-spacing: 1.2px;
}

.section_subtitle,
.section_title {
    font-family: var(--alt-font);
}

.section_subtitle,
.section_title span {
    color: var(--fourth-color);
}

/* *******  Transitions  ******* */
body,
.change-theme,
.button,
.contact_us-form legend,
span.feedback_validate,
.scroll_up {
    transition: var(--first-transition);
    -webkit-transition: var(--first-transition);
    -moz-transition: var(--first-transition);
    -ms-transition: var(--first-transition);
    -o-transition: var(--first-transition);
}

.header,
.options_search span,
.nav_link::after,
.nav_open span,
.nav_open::after,
.nav_close,
.logos_img img,
.property_card,
.property_card .property_img,
.property_card button i,
.property_data h3.property_category,
.property .property_details,
.swiper-button-prev,
.swiper-button-next,
.value_dropdown-content,
form.form,
.form .input::placeholder,
.contact_us-form fieldset,
.errors-container,
.msgs-alert,
.error-container,
.suc-container,
.profile_container.active .form_control button,
footer ul li a,
footer .footer_contact_list a::after,
.invest_opp_data .table-responsive .main-table tr {
    transition: var(--second-transition) !important;
    -webkit-transition: var(--second-transition) !important;
    -moz-transition: var(--second-transition) !important;
    -ms-transition: var(--second-transition) !important;
    -o-transition: var(--second-transition) !important;
}

/* *******  Translates  ******* */
.home_data,
.password_reset_container form,
.all_prop_head h1.section_title,
.services_head h1.section_title,
.toggle .label i,
.popup_model {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.asterisk,
.account_container i.pass_icon,
.all_prop_info .content_container aside ul a.active_category::after,
.profile_container.active aside a.profile_active::after,
.paths_categories .paths_list li.list_left::after,
.paths_categories .paths_list li.list_right::after,
.event_container {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.inactive div.top,
.inactive div.center,
.paths_main_txt>i,
.about_us_container h2.section_title::after,
.investment_container .container>h1::after,
.all_prop_info .content_container .wrapper_card .f_info,
.wishlist_container .wrapper_card>div,
.invest_opp::before {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}


/* *******  Borders  ******* */
.property .property_details:hover,
.inactive .top_right>div,
.inactive .top_left>div,
.inactive .top_right_link,
.inactive .top_left_link,
.all_prop_info .content_container .wrapper_card .f_info,
.wishlist_container .wrapper_card .wishlist_card_info>div,
.paths_categories .paths_list li,
.investment_data .inv_t_info div,
.wishlist_container .wrapper_card>div,
.popup_model,
.popup_model img{
    border-radius: var(--first-radius);
    -webkit-border-radius: var(--first-radius);
    -moz-border-radius: var(--first-radius);
    -ms-border-radius: var(--first-radius);
    -o-border-radius: var(--first-radius);
}

.home_container,
.scroll-header .nav,
.button,
.property .property_details,
.value .value_dropdown-item,
.error-container span.contact_out,
.error_page div a,
.all_prop_info .content_container .wrapper_card,
.wishlist_container .wrapper_card,
.all_prop_wrapper .wrapper_card img,
.profile_body .wrapper_card img,
.all_prop_info #list_data>h3,
.invest_opp_data .table-responsive {
    border-radius: var(--second-radius);
    -webkit-border-radius: var(--second-radius);
    -moz-border-radius: var(--second-radius);
    -ms-border-radius: var(--second-radius);
    -o-border-radius: var(--second-radius);
}

.home_data,
.property_card,
.form .input,
form a.msgs-alert,
.profile_container.active .form_control button,
.contact .contact_cards .card,
footer .container,
.investment_f_section div,
.investment_s_section div,
.investment_container .investment_data .investment_t_section>h5 {
    border-radius: var(--third-radius);
    -webkit-border-radius: var(--third-radius);
    -moz-border-radius: var(--third-radius);
    -ms-border-radius: var(--third-radius);
    -o-border-radius: var(--third-radius);
}

footer .footer_contact_list a::after,
.investment_container .container>h1 {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.profile_container.active .btn_loader,
.all_prop_info .content_container aside ul a.active_category::after,
.profile_container.active aside a.profile_active::after,
.paths_categories .paths_list li.list_right::after,
.paths_categories .paths_list li.list_left::after {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


/* =================== HEADER & NAV =================== */
.header {
    top: 0;
    left: 0;
    z-index: 1000;
}

header.scroll-header {
    position: fixed !important;
    top: 10px;
}

.change_header.scroll-header {
    box-shadow: unset !important;
}

.nav {
    height: var(--header-height);
    font-family: var(--alt-font);
    padding-left: 15px;
}

.prop_header .nav_link span,
.prop_header .change-theme,
.prop_header .nav_changes select,
.prop_header a.button.nav_button {
    color: white;
}

.nav .nav_logo img {
    width: 100px;
}

.nav .nav_links {
    column-gap: var(--f-gap);
    flex: 0 0 87%;
}

.nav_menu {
    width: 72%;
}

.nav_link {
    font-weight: var(--font-medium);
    padding: 0 0.4rem;
    height: 35px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

a.active_link {
    box-shadow: 3px 3px 5px -1px var(--first-color);
}

.active_link::after {
    content: unset !important;
}

nav a.button {
    color: black;
}

a.active_account {
    background: unset !important;
    box-shadow: 4px 4px 5px -1px var(--first-color) !important;
}

.nav_link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--first-color);
    height: 2px;
    width: 0;
}

.nav_link:hover::after {
    width: 100%;
    box-shadow: 0 0 3px var(--first-color);
}

.nav_changes {
    column-gap: var(--f-gap);
}

.nav_changes select,
.change-theme {
    font-weight: var(--font-medium);
}

.nav select option {
    font-size: .8rem;
    color: black;
}

.change-theme {
    font-size: 1.25rem;
    cursor: pointer;
}

.change-theme:hover {
    color: var(--first-color);
}


@media (max-width: 1199px) {

    .header .nav {
        padding: 0 30px 0 15px;
    }

    .nav .nav_links {
        position: fixed;
        z-index: var(--z-fixed);
        right: 0;
        height: 100%;
        text-align: center;
        padding: 0;
        top: 0;
        flex-direction: column;
        justify-content: center !important;
        background: hsl(228deg 12% 8%);
        width: 0;
        overflow: hidden;
        border-radius: 15px 0 0 15px;
        -webkit-border-radius: 15px 0 0 15px;
        -moz-border-radius: 15px 0 0 15px;
        -ms-border-radius: 15px 0 0 15px;
        -o-border-radius: 15px 0 0 15px;
    }

    .nav_menu {
        width: fit-content;
        margin-bottom: 10px;
    }

    .nav .nav_links .nav_list {
        display: block !important;
    }

    .nav_menu li.nav_item {
        padding: 14px;
    }

    .nav .nav_links a.nav_link span,
    .nav_changes .nav_button,
    .nav_changes select,
    .change-theme {
        color: var(--fifth-color-light) !important;
    }

    .nav_changes {
        flex-direction: column-reverse;
        row-gap: var(--s-gap);
    }

    .nav_close {
        top: 8%;
        left: 8%;
        font-size: 1.8rem;
    }

    .nav_close:hover {
        color: var(--first-color);
        transform: rotate(45deg);
    }

    .nav_close,
    .nav_open {
        cursor: pointer;
    }

    .nav_open:hover span,
    .nav_open:hover::after {
        background: #b58f47;
    }

    .nav_open::after {
        content: "";
        position: absolute;
        right: 0;
        top: -2px;
        background-color: #9c7336;
        width: 3px;
        height: 135%;
        max-height: 135%;
    }


    .nav_open span {
        background-color: #9c7336;
        height: 4px;
        margin: 0 6px 5px auto;
        border-radius: 2px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
    }

    .nav_open span:first-child {
        width: 27px;
    }

    .nav_open span:last-child {
        width: 34px;
    }

    .nav span.bg_cover {
        position: fixed;
        background: rgb(0 0 0 / 60%);
        height: 100%;
        top: 0;
        right: 0;
        width: 0;
    }

    .nav .nav_links,
    .nav span.bg_cover {
        transition: width var(--third-transition) ease-in-out;
        -webkit-transition: width var(--third-transition) ease-in-out;
        -moz-transition: width var(--third-transition) ease-in-out;
        -ms-transition: width var(--third-transition) ease-in-out;
        -o-transition: width var(--third-transition) ease-in-out;
    }

}

@media (min-width: 1200px) {

    .nav_close,
    .nav_open {
        display: none;
    }
}


/* =================== HOME PAGE =================== */
/* ********** Landing Page ********** */
.home {
    height: calc(96vh - 5.4rem);
}

.home_container {
    background-image: url("../images/landing_1.jpg");
    width: 97%;
    max-width: 97%;
    overflow: hidden;
    transition: .9s;
    -webkit-transition: .9s;
    -moz-transition: .9s;
    -ms-transition: .9s;
    -o-transition: .9s;
}

.home_container::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 25%);
}

section.home {
    padding-top: unset;
}

.home_data {
    top: 50%;
    left: 50%;
    z-index: var(--z-lg);
    padding: 10px;
    box-shadow: 0 0 3px var(--fifth-color-light);
    backdrop-filter: blur(3px) brightness(124%);
}

.home_title {
    margin-bottom: 1.25rem;
    font-weight: bold;
    font-family: var(--alt-font);
    font-size: 2.7rem;
    color: black;
}

.event_container,
.event_container h3,
.event_container img,
.event_container h5 {
    transition: .8s ease-in-out;
    -webkit-transition: .8s ease-in-out;
    -moz-transition: .8s ease-in-out;
    -ms-transition: .8s ease-in-out;
    -o-transition: .8s ease-in-out;
}

.event_container {
    width: 40%;
    top: 50%;
    left: 0;
    z-index: var(--z-lg);
    overflow-y: scroll;
    height: fit-content;
    max-height: 90%;
    cursor: pointer;
}

.event_container img {
    width: 90%;
    max-height: 300px;
    filter: drop-shadow(0 0 7px #957f8140) drop-shadow(0 0 5px rgb(161 142 142 / 9%));
}

.event_container h3 {
    color: var(--dark) !important;
    width: fit-content;
    box-shadow: 0 0 7px #dc354538, inset 0 0 5px rgb(161 142 142 / 13%), inset 0 0 10px #dddddd47;
}

.event_container h5 {
    color: #495057;
    font-weight: var(--font-semi-bold);
    font-family: var(--alt-font);
}



@media (max-width: 575px) {
    h1.home_title {
        font-size: 1.5rem;
    }
}

@media (min-width: 576px) and (max-width: 766px) {
    h1.home_title {
        font-size: 1.7rem;
    }
}

@media (max-width: 699px) {
    .home_data {
        width: 90%;
    }

    .event_container {
        width: 95%;
        padding: 1rem !important;
    }

    .event_container img {
        width: 100%;
        max-height: 250px;
    }
}

@media (min-width: 700px) and (max-width: 991px) {
    .home_data {
        width: 75%;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    h1.home_title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {

    .event_container h5 {
        font-size: initial;
    }
}

@media (min-width: 700px) and (max-width: 1199px) {
    .event_container {
        width: 55%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    h1.home_title {
        font-size: 2.5rem;
    }
}


/* ********** Logos Section ********** */
section.logos {
    padding: 5rem 0 2rem;
}

.logos h2.logos_title {
    font-family: var(--alt-font);
    font-size: 1.8rem;
    letter-spacing: 1.8px;
    font-weight: var(--font-semi-bold);
}

.logos .logos_title span {
    color: var(--fourth-color);
}

.logos img {
    width: 100px;
}

.logos img:hover {
    opacity: .8;
}

@media (max-width: 575px) {
    .logos_imgs .swiper-slide {
        width: 25% !important;
        margin-right: 17px !important;
    }

    section#property {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 991px) {
    .logos_container {
        flex-direction: column;
        row-gap: var(--s-gap);
        align-items: center;
    }

    .logos_container>div {
        flex: 0 0 100% !important;
        max-width: 100%;
    }

    .logos h2.logos_title {
        font-size: 1.3rem;
    }

    .logos img {
        width: 77px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .logos h2.logos_title {
        font-size: 1.6rem;
    }
}


/* ********** property Section ********** */
.property .property_price::first-letter,
.property span {
    color: var(--fourth-color);
}

.property_container {
    padding: 1rem 0 5rem;
}

.property_card,
.property_card .property_img,
.property_card button {
    transition-timing-function: linear;
}

.property_card {
    background-color: var(--container-color);
    padding: 0.5rem 0.5rem 1.5rem;
    overflow: hidden;
    max-width: 360px;
}

.property_img {
    margin-bottom: 1rem;
    height: 230px;
    max-height: 230px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.property_card:hover img {
    filter: unset;
    -webkit-filter: unset;
}

.property_data {
    padding: 0 1rem 0 0.5rem;
}

.property_data h3.property_category {
    top: 30px;
    font-size: 1.3rem;
    font-family: var(--alt-font);
    letter-spacing: 1px;
    z-index: var(--z-lg);
    color: white;
    font-weight: var(--font-semi-bold);
}

.property_card:hover .property_data h3.property_category {
    color: black;
}

.property .property_details {
    letter-spacing: var(--spacing);
    font-size: .8rem;
}

.property .property_details i {
    font-size: 1.3rem;
    line-height: 1em;
}

.property_card:hover .property_details i {
    animation: unset;
    -webkit-animation: unset;
}

.property_container .swiper-button-prev::after,
.property_container .swiper-button-next::after {
    content: '' !important;
}

.property_container .swiper-button-prev,
.property_container .swiper-button-next {
    top: initial;
    bottom: 10px;
    width: initial;
    height: initial;
    background-color: var(--container-color);
    padding: 5px;
    font-size: 1.5rem;
    color: var(--first-color);
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
}

.property_container .swiper-button-prev {
    left: calc(50% - 3rem);
}

.property_container .swiper-button-next {
    right: calc(50% - 3rem);
}


@media (max-width: 575px) {
    .property_card {
        margin-right: 16px !important;
    }
}

@media (max-width: 766px) {

    .swiper-button-prev {
        left: calc(50% - 2.7rem);
    }

    .swiper-button-next {
        right: calc(50% - 2.7rem);
    }

    .property_data h3.property_category {
        font-size: 1.1rem;
    }
}

@media (min-width: 767px) and (max-width: 991px) {

    .swiper-button-prev {
        left: calc(50% - 2.8rem);
    }

    .swiper-button-next {
        right: calc(50% - 2.8rem);
    }

    .property_data h3.property_category {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .property_card {
        width: 240px !important;
    }

    .property .property_details {
        font-size: .7rem !important;
    }

    .property_img {
        height: 160px;
    }

    .property_container .swiper-button-prev,
    .property_container .swiper-button-next {
        padding: 3px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    article.property_card {
        margin-right: 22px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    article.property_card {
        margin-right: 29px !important;
    }

    .property_img {
        height: 190px;
    }
}

/* ********** Services Section ********** */
.value .value_data span {
    color: var(--fourth-color);
}

.value p.section_description {
    letter-spacing: .9px;
}

.value_img {
    overflow: hidden;
    width: 475px;
    height: 590px;
    max-height: 100%;
    border-radius: 160px 160px 10px 10px;
    -webkit-border-radius: 160px 160px 10px 10px;
    -moz-border-radius: 160px 160px 10px 10px;
    -ms-border-radius: 160px 160px 10px 10px;
    -o-border-radius: 160px 160px 10px 10px;
}

.value_container>div {
    padding: 0;
}

.value .value_content {
    padding-left: 1.5rem;
}

.value .value_dropdown {
    padding-left: 1rem;
}

.value i.value_dropdown-icon {
    margin-right: 8px;
    color: var(--fourth-color);
}

h3.value_dropdown-title {
    font-size: 1rem !important;
    letter-spacing: var(--spacing);
    line-height: 1.4;
}

.value .value_dropdown-arrow {
    padding-left: 1rem;
    cursor: pointer;
}

.value_dropdown-content {
    padding: 0 .9rem;
    text-align: center;
    line-height: 1.6;
    letter-spacing: var(--spacing);
    max-height: 0;
    overflow: hidden;
    transition-timing-function: linear;
}

.value_dropdown-content p {
    font-size: .9rem;
}

.value_end {
    gap: var(--s-gap);
}

.value_end blockquote {
    margin: unset;
    letter-spacing: var(--spacing);
}

.value_end a.button {
    letter-spacing: var(--spacing);
    padding: 8px;
}

.value_end blockquote,
.value_end a.button {
    font-size: .9rem;
}

@media (max-width: 575px) {

    .value_container {
        text-align: center;
    }

    .value_container>div {
        flex: 0 0 85%;
    }

    .value_img {
        width: unset;
        height: 355px;
    }

    .value .value_content,
    .value .value_dropdown,
    .value .value_dropdown-arrow {
        padding-left: 0.5rem;
    }

    .value_dropdown-content {
        padding: 0 0.5rem !important;
    }

    span.section_subtitle,
    .section_title {
        text-align: initial;
    }
}

@media (min-width: 576px) and (max-width: 766px) {
    .value_img {
        width: 360px;
        height: 400px;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .value_img {
        width: 400px;
        height: 455px;
    }
}

@media (max-width: 991px) {
    .value_end a.button {
        font-size: .8rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .value_img {
        width: 435px;
        height: 520px;
    }
}

@media (max-width: 1199px) {
    .value_container {
        row-gap: var(--s-gap);
    }

    .value_end {
        justify-content: space-around;
    }
}


/* ********** About Section ********** */
section.about {
    background-image: url("../images/value.jpg");
    padding: unset;
    margin: 4rem 0 2rem;
}

section.about::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 /70%);
}

.about .half_cover {
    background-color: var(--body-color);
    height: 95%;
    width: 55%;
    top: -0.1%;
    left: 0;
}

.about .half_cover,
.about_container .col_data,
.about .col_img {
    z-index: var(--z-sm);
}

.about_img {
    height: 450px;
}

.about_img img {
    max-height: 100%;
    width: 100%;
}

.about_container .about_list li h6 {
    color: var(--fourth-color);
}

.about_container .about_list li p,
.about_container .about_end a {
    font-size: .9rem;
}

.about_container .about_list li p {
    padding-left: 10px;
    letter-spacing: var(--spacing);
}

.about_container .about_end {
    gap: var(--s-gap);
}

.about_container .about_end blockquote {
    margin: 0;
    font-size: 1rem;
}

.about .about_end a {
    padding: 7px 0;
    font-weight: var(--font-semi-bold);
}

.about_container .about_end a:hover {
    color: black;
}

@media (max-width: 575px) {

    .about_container,
    .about .section_title {
        text-align: center;
    }

    .about .half_cover {
        height: 66%;
        width: 94% !important;
        left: 3% !important;
    }

    .about_img {
        height: 375px;
        position: relative;
        top: -30px;
    }
}

@media (min-width: 576px) and (max-width: 699px) {
    .about .half_cover {
        height: 56%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .about_img {
        height: fit-content;
        position: relative;
        top: -25px;
    }
}

@media (max-width: 767px) {
    .about .half_cover {
        width: 90%;
        left: 5%;
    }
}

@media (min-width: 700px) and (max-width: 767px) {
    .about .half_cover {
        height: 53%;
    }
}

@media (max-width: 991px) {

    .about_container .about_list li h6 {
        font-size: .9rem;
    }

    .about_container .about_list li p,
    .about_container .about_end q {
        font-size: .8rem !important;
    }

    .about .about_end a {
        font-size: .7rem !important;
    }
}




/* ********** contact Section ********** */
.contact .section_title span {
    display: initial;
    color: var(--fourth-color);
}

.contact .section_title {
    width: fit-content;
}

.contact .section_title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--fourth-color);
    bottom: 0;
    left: 0;
    box-shadow: 0 1px 8px var(--fourth-color);
}

.contact .contact_cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(23%, 1fr));
    gap: var(--s-gap);
}

.contact .contact_cards .card {
    background-color: var(--container-color);
    display: grid;
}

.contact .card i {
    font-size: 2.7rem;
    color: var(--fourth-color);
}

.contact .card h5 {
    height: 95px;
    display: grid;
    align-items: center;
    letter-spacing: var(--spacing);
    font-family: var(--alt-font);
}

.contact a.contact_link {
    font-size: 1.3rem;
    font-family: var(--alt-font);
    letter-spacing: var(--spacing);
}

.contact a.contact_link span {
    display: initial;
    text-decoration: underline;
    color: var(--fourth-color);
}

@media (max-width: 575px) {
    .contact .section_title {
        font-size: 1.3rem !important;
    }

    .contact .contact_cards {
        grid-template-columns: repeat(auto-fill, minmax(90%, 1fr));
    }

    .contact .card {
        padding: 0.6rem !important;
    }

    .contact .card i {
        font-size: 2.3rem;
    }

    .contact .card h5,
    .contact a.contact_link {
        font-size: 1rem !important;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .contact .card i {
        font-size: 2.4rem;
    }

    .contact .card h5 {
        font-size: 1.1rem;
    }

    .contact a.contact_link {
        font-size: 1.1rem !important;
    }
}

@media (min-width: 576px) and (max-width: 1199px) {
    .contact .contact_cards {
        grid-template-columns: repeat(auto-fill, minmax(47%, 1fr));
    }
}

@media (min-width: 992px) and (max-width: 1199px) {}


/* =================== Services PAGE =================== */
.services_head {
    background-image: url("../images/services.jpg");
    height: 70vh;
    top: -100px;
}

.services_head::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 /64%);
}

.services_head h1.section_title {
    top: 50%;
    left: 50%;
    color: white !important;
    font-size: 4rem;
    z-index: var(--z-lg);
}

.services_info {
    top: -50px;
    min-height: 150vh;
}

.services_info .section_subtitle span {
    color: var(--fourth-color);
    display: initial;
}

.paths_container {
    width: 85%;
    max-width: 85%;
}

.paths_container span.main_arrow_top,
.paths_info>div>span,
.paths_sub span:last-child,
.paths_sub_right span,
.paths_sub_left span,
.paths_categories span {
    height: 43px;
    width: 2px;
}

.paths_container span.main_arrow_center,
.paths_info .arrow_left_center_1,
.paths_info .arrow_right_center_1,
.paths_main_txt .arrow_bottom_center_2,
.paths_sub_info .arrow_bottom_center_3,
.paths_categories .arrow_bottom_center_6 {
    max-width: 100%;
    height: 2px;
}

.paths_info {
    flex-direction: row-reverse;
}

.path_right_info span,
.paths_sub_right>div>span,
.paths_categories .paths_list li.list_left {
    margin: 0 0 0 auto;
}

.path_left_info span,
.paths_sub_left>div>span,
.paths_categories .paths_list li.list_right {
    margin: 0 auto 0 0;
}

.paths_info>div>h5,
.paths_sub_info>div>div>h5,
.paths_categories>div>h5 {
    border: 1px solid #ddd;
    font-family: var(--alt-font);
    padding: 6px 8px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.paths_info>div>h5 {
    color: var(--fourth-color);
}

.path_right_info>h5,
.paths_sub_right>div>h5,
.paths_sub_right>div>h6 {
    right: -50%;
}

.path_left_info>h5,
.paths_sub_left>div>h5,
.paths_sub_left>div>h6 {
    left: -50%;
}

.paths_info .paths_sub {
    bottom: 2px;
}

.paths_info .arrow_left_center_1,
.paths_info .arrow_right_center_1 {
    width: 49%;
}

.paths_info .arrow_left_center_1,
.paths_sub_left .arrow_bottom_center_3 {
    left: 0;
}

.paths_info .arrow_right_center_1,
.paths_sub_right .arrow_bottom_center_3 {
    right: 0;
}

.paths_sub .arrow_right_c_top_1 {
    right: 49%;
}

.paths_sub .arrow_left_c_top_1 {
    left: 49%;
}

.paths_main_txt {
    bottom: 0;
    z-index: var(--z-fixed);
}

.paths_main_txt>i {
    left: 50%;
}

.paths_main_txt>i {
    font-size: 2rem;
    bottom: -33px;
    opacity: 0 !important;
}

.paths_main_txt>h6 {
    bottom: -40px;
    line-height: 1.4;
    letter-spacing: 1px;
    max-width: 72%;
    font-size: 1.1rem;
}

.paths_main_txt>span,
.paths_categories {
    bottom: -60px;
}

.paths_sub_info {
    top: 60px;
}

.paths_sub_right,
.paths_sub_left {
    column-gap: 20px;
    max-width: 50%;
}

.paths_sub_info>div>div {
    flex-basis: 100%;
}

.paths_sub_info>div>div>h5,
.paths_sub_info>div>div>h6 {
    position: relative
}

.paths_sub_info>div>div>h5,
.paths_categories>div>h5 {
    color: var(--danger);
    background: var(--body-color);
}

.paths_sub_info>div>div>h6 {
    display: grid;
    max-width: 146px;
    font-size: .9rem;
    letter-spacing: var(--spacing);
    height: 240px;
    line-height: 1.3;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.paths_sub_info .arrow_bottom_center_3 {
    bottom: 0;
    width: 70%;
    max-width: 100%;
}

.paths_categories>div {
    width: 35%;
    height: 290px;
}

.paths_categories>div>h5 {
    width: fit-content;
    text-align: center;
}

.paths_categories .arrow_bottom_center_6,
.paths_categories .paths_list {
    width: 90%;
}

.paths_categories .paths_list {
    height: 83%;
}

.paths_categories .paths_list li {
    padding: 2px 6px;
    width: fit-content;
}

.paths_categories .paths_list li {
    width: 42%;
    text-align: center;
}

.paths_categories .paths_list li.list_left {
    left: -53%;
    top: -94%;
}

.paths_categories .paths_list li.list_right {
    right: -53%;
    top: -94%;
}

.paths_categories .paths_list li.list_left::after,
.paths_categories .paths_list li.list_right::after {
    content: "";
    position: absolute;
    background: var(--danger);
    width: 9px;
    height: 3px;
    top: 50%;
}

.paths_categories .paths_list li.list_left::after {
    right: -10px;
}

.paths_categories .paths_list li.list_right::after {
    left: -10px;
}

.paths_info .paths_end {
    width: 65%;
    height: 2px;
    bottom: -91px;
}

.paths_info blockquote {
    bottom: -75px;
    width: 60%;
    margin: auto;
    text-align: center;
    background: var(--body-color);
    color: var(--fourth-color);
}

@media (max-width: 575px) {
    .services_head {
        height: 50vh;
    }

    .services_head h1.section_title {
        font-size: 2rem;
    }

    .services_info {
        height: 300vh;
    }

    .services_info .section_subtitle {
        font-size: 1rem;
    }

    .paths_container span.main_arrow_top,
    .paths_info>div>span,
    .paths_sub span:last-child,
    .paths_sub_right span,
    .paths_sub_left span,
    .paths_categories span {
        height: 28px;
    }

    .paths_info>div>h5 {
        font-size: .9rem !important;
    }

    .paths_container span.main_arrow_center {
        width: 85%;
    }

    .paths_info .path_left_info {
        left: 7.1%;
        top: -1px;
    }

    .paths_info .path_right_info {
        right: 7.1%;
        top: -1px;
    }

    .paths_info>div>h5,
    .paths_sub_info>div>div>h5,
    .paths_categories>div>h5 {
        padding: 4px 3px;
    }

    .paths_info .arrow_left_center_1,
    .paths_info .arrow_right_center_1 {
        width: 40.5% !important;
    }

    .paths_info .arrow_right_center_1 {
        right: 7.4%;
    }

    .paths_info .arrow_left_center_1 {
        left: 7.4%;
    }

    .paths_main_txt {
        bottom: 13px;
    }

    .paths_main_txt>h6 {
        bottom: -34px;
    }

    .paths_main_txt>span,
    .paths_categories {
        bottom: -47px;
    }

    .paths_sub_right {
        right: 17.7%;
    }

    .paths_sub_left {
        left: -17.7%;
    }

    .paths_sub_info>div>div {
        min-width: 45.4%;
    }

    span.arrow_bottom_center_2 {
        width: 82% !important;
    }

    .paths_sub_right,
    .paths_sub_left {
        column-gap: 7px;
    }

    .paths_sub_info .arrow_bottom_center_3 {
        width: 97%;
    }

    .paths_sub_right .arrow_bottom_center_3 {
        right: -19%;
    }

    .paths_sub_left .arrow_bottom_center_3 {
        left: 22%;
    }

    .paths_categories .paths_list li {
        width: 108%;
    }

    span.arrow_bottom_left_7 {
        height: 120% !important;
    }

    .paths_categories .paths_list li.list_left {
        left: -68%;
        top: -110%;
    }

    .paths_categories .paths_list li.list_right {
        right: -61%;
        top: -110%;
    }

    .paths_categories .paths_list {
        height: 57% !important;
    }

    .paths_categories {
        height: 440px;
    }

    .paths_categories>div {
        height: fit-content;
    }

    .paths_info .paths_categories>div:first-of-type>span.arrow_bottom_center_4 {
        display: block !important;
    }

    .paths_info .paths_end {
        width: 100%;
        bottom: -110px;
    }

    .paths_info blockquote {
        font-size: .8rem !important;
        bottom: -75px;
        width: 90%;
    }
}

@media (min-width: 413px) and (max-width: 575px) {
    .paths_sub_info>div>div {
        min-width: 46.1% !important;
    }

    .paths_sub_info .arrow_bottom_center_3 {
        width: 96% !important;
    }

    .paths_sub_left .arrow_bottom_center_3 {
        left: 23% !important;
    }

    .paths_categories .paths_list li.list_left {
        top: -115% !important;
    }

    .paths_categories .paths_list li.list_right {
        top: -115% !important;
    }

    .services_info {
        height: 285vh !important;
    }

    .paths_categories .paths_list {
        height: 69% !important;
    }

    .paths_categories>div:first-of-type {
        position: relative;
        top: -6%;
    }

    .paths_categories .paths_list li.list_left {
        left: -64% !important;
    }

    .paths_categories .paths_list li.list_right {
        right: -57% !important;
    }
}

@media (min-width: 576px) and (max-width: 766px) {
    .services_head {
        height: 55vh;
    }

    .services_head h1.section_title {
        font-size: 2.4rem;
    }

    .services_info .section_subtitle {
        font-size: 1.1rem;
    }

}

@media (min-width: 576px) and (max-width: 699px) {

    .paths_main_txt {
        bottom: 14px;
    }

    .paths_main_txt>span {
        bottom: -47px;
    }

    .paths_main_txt .arrow_bottom_center_2 {
        width: 58.5% !important;
        left: 0;
    }

    .paths_sub_right .arrow_bottom_center_3 {
        width: 68.7% !important;
        right: 15.6%;
    }

    .paths_sub_info .arrow_bottom_center_3 {
        width: 68.7% !important;
        left: 15.6%;
    }

    .paths_sub_info>div>div {
        min-width: 112px;
    }

    .paths_sub_right,
    .paths_sub_left {
        column-gap: 10px;
    }

    .paths_categories .paths_list li {
        width: 73%;
    }

    .paths_categories .paths_list li.list_left {
        left: -56%;
    }

    .paths_categories .paths_list li.list_right {
        right: -56%;
    }

    .paths_categories>div {
        height: 253px;
    }
}

@media (max-width: 766px) {

    .paths_info .arrow_left_center_1,
    .paths_info .arrow_right_center_1 {
        width: 48%;
    }

    .paths_sub .arrow_right_c_top_1 {
        right: 48%;
    }

    .paths_sub .arrow_left_c_top_1 {
        left: 48%;
    }
}

@media (min-width: 700px) and (max-width: 991px) {
    span.arrow_bottom_center_2 {
        width: 58% !important;
    }

    .paths_sub_right,
    .paths_sub_left {
        column-gap: 12px;
    }

    .paths_sub_info>div>div>h6 {
        height: 220px;
    }

    .paths_sub_right .arrow_bottom_center_3 {
        right: 15.5%;
        width: 68.6%;
    }

    .paths_sub_left .arrow_bottom_center_3 {
        left: 15.5%;
        width: 68.6%;
    }

    .paths_categories .paths_list li {
        width: 70%;
    }

    .paths_categories .paths_list li.list_left {
        left: -56%;
    }

    .paths_categories .paths_list li.list_right {
        right: -56%;
    }

    .paths_categories>div {
        height: 240px;
    }

    .paths_info blockquote {
        bottom: -60px;
    }

    .paths_container span.main_arrow_top,
    .paths_info>div>span,
    .paths_sub span:last-child,
    .paths_sub_right span,
    .paths_sub_left span,
    .paths_categories span {
        height: 35px;
    }

    .paths_main_txt {
        bottom: 6px;
    }

    .paths_main_txt>span {
        bottom: -40px;
    }

    .paths_sub_info>div>div {
        min-width: 134px;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .services_head {
        height: 60vh;
    }

    .services_head h1.section_title {
        font-size: 2.8rem;
    }

    .services_info .section_subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .paths_info>div>h5 {
        font-size: 1rem;
    }

    .paths_main_txt>h6,
    .paths_info blockquote {
        font-size: .9rem;
    }

    .paths_main_txt>i {
        font-size: 1.7rem;
    }

    .paths_sub_info {
        top: 32px;
    }

    .paths_sub_info>div>div>h5,
    .paths_categories>div>h5 {
        font-size: 1rem;
    }

    .paths_sub_info>div>div>h6,
    .paths_categories .paths_list li {
        font-size: .8rem;
    }

    .paths_categories {
        bottom: -30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    span.arrow_bottom_center_2 {
        width: 59% !important;
    }

    .paths_sub_right,
    .paths_sub_left {
        column-gap: 25px;
    }

    .paths_sub_right .arrow_bottom_center_3 {
        right: 104px;
        width: 69%;
    }

    .paths_sub_left .arrow_bottom_center_3 {
        left: 104px;
        width: 69%;
    }

    .paths_categories .paths_list li {
        width: 50%;
    }
}

@media (max-width: 1199px) {

    .paths_container,
    .paths_sub_right,
    .paths_sub_left {
        width: 85% !important;
        max-width: 85% !important;
    }

    span.arrow_bottom_center_2 {
        margin: auto;
    }

    .paths_sub_info,
    .paths_categories {
        flex-direction: column-reverse;
        align-items: center;
    }

    .paths_sub_right>div>span,
    .paths_sub_left>div>span {
        margin: auto;
    }

    .paths_sub_right>div>h5,
    .paths_sub_right>div>h6 {
        right: unset;
    }

    .paths_sub_left>div>h5,
    .paths_sub_left>div>h6 {
        left: unset;
    }

    .paths_info .paths_categories>div:first-of-type>span.arrow_bottom_center_4 {
        display: none;
    }

    .paths_sub_info>div>div>h6 {
        max-width: 100%;
    }

    .paths_categories .paths_list {
        height: 72%;
    }
}


/* =================== Properties PAGE =================== */
/* ********** Components ********** */
button.wishlist_btn {
    top: 10px;
    left: 10px;
}

button.wishlist_btn i {
    font-size: 1.5rem;
}

button.wishlist_btn i.add {
    color: #b7102f;
}

button.wishlist_btn i.remove {
    color: black;
}

/* ********** Components ********** */
.all_prop_wrapper .wrapper_card {
    width: 100%;
}

.all_prop_wrapper .wrapper_card img {
    height: 300px;
}

/* ********** All Prop ********** */
.all_prop_head {
    background-image: url("../images/property1.jpg");
    height: 70vh;
    top: -100px;
}

.all_prop_head::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 55%);
}

.all_prop_head h1.section_title {
    top: 50%;
    left: 50%;
    color: white !important;
    font-size: 4rem;
    z-index: var(--z-lg);
}

.all_prop_info {
    top: -40px;
}

.all_prop_info .content_container {
    gap: var(--s-gap);
}

.all_prop_info .content_container aside {
    flex-basis: 25%;
    height: fit-content;
    border-right-style: solid;
    border-right-width: 1px;
    padding-right: 13px;
}

.all_prop_info .content_container aside ul {
    font-family: var(--alt-font);
}

.all_prop_info .content_container .break,
.all_prop_info .content_container aside h5:after {
    background-color: hsl(25, 83%, 53%);
    box-shadow: 0 0 4px 1px hsl(25, 83%, 53%);
    height: 1px;
}

.all_prop_info .content_container aside h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 13%;
}

.all_prop_info aside a.section_title {
    font-size: 1.7rem;
}

.all_prop_info .content_container aside ul a {
    font-size: 1.2rem;
    padding: 20px 15px 10px 25px;
}

.all_prop_info .content_container aside ul a.active_category::after {
    content: "";
    position: absolute;
    background: hsl(25, 83%, 53%);
    width: 11px;
    height: 11px;
    left: 5px;
    top: 54%;
    animation: alert_category 1.5s infinite ease-in-out;
    -webkit-animation: alert_category 1.5s infinite ease-in-out;
}

.all_prop_info .content_container .break {
    margin: 1rem 0 2.3rem;
    width: 60%;
}

.all_prop_info .content_container .all_prop_wrapper {
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px 30px;
    height: fit-content;
}

.all_prop_info .content_container .wrapper_card {
    height: 100%;
    background: var(--body-color);
    flex-basis: 48%;
}

.all_prop_info .content_container .wrapper_card .f_info {
    background: var(--body-color);
    border: 1px solid var(--fourth-color);
    box-shadow: 0 0 4px hsl(25deg 57% 54% / 44%);
    padding: 10px 0;
    left: 50%;
    bottom: -7%;
    width: 90%;
}

.all_prop_info .content_container .wrapper_card .f_info h5 {
    font-family: var(--alt-font);
    letter-spacing: .9px;
    font-size: 1.1rem;
}

.all_prop_info #list_data .main_txt h3 {
    font-size: 1.3rem;
    width: fit-content;
    padding: 10px 12px;
}

/* popup model */
.popup_model {
    z-index: -10;
    width: 50%;
    left: 60%;
    padding: 15px;
    background: var(--border-color);
    border: 1px solid var(--fourth-color);
    animation: popup_model 1s ease-in-out;
    -webkit-animation: popup_model 1s ease-in-out;
}

.popup_model .close_model {
    top: -3%;
    right: 2%;
    cursor: pointer;
    background: var(--border-color);
    border: 1px solid var(--fourth-color);
    color: var(--gray-dark);
    font-weight: var(--font-medium);
    padding: 1px 10px;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.popup_model>img {
    width: 600px;
    height: 335px;
}

.popup_model .popup_images {
    gap: .9rem;
}

.popup_model .popup_images img {
    max-width: 20%;
    height: 85px;
    width: 20%;
    cursor: pointer;
}

/* popup model */


@keyframes alert_category {
    0% {
        box-shadow: 0 0 5px hsl(25, 83%, 53%);
    }

    50% {
        box-shadow: 0 0 7px 1px hsl(25, 83%, 53%);
    }

    100% {
        box-shadow: 0 0 10px 1px hsl(25, 83%, 53%);
    }
}

@keyframes popup_model {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
        -webkit-transform: translate(-50%, -50%) scale(0);
        -moz-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
        -o-transform: translate(-50%, -50%) scale(0);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        -o-transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 499px) {
    .all_prop_info .content_container {
        flex-direction: column;
    }

    .all_prop_info .content_container aside {
        border-right-style: unset !important;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        padding: unset;
        box-shadow: unset !important;
    }

    .all_prop_info .content_container aside ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .all_prop_info .content_container aside ul li {
        width: 50%;
        text-align: center;
    }

    .all_prop_info .content_container aside ul a {
        margin: auto;
        width: fit-content;
    }

    .all_prop_info .content_container aside ul a.active_category::after {
        left: 10px;
    }

    .all_prop_info .content_container aside h5 {
        width: 100%;
        font-size: 1.1rem;
    }

    .all_prop_info .content_container .break {
        margin: 1rem auto 2.3rem;
    }
}

@media (max-width: 575px) {
    .all_prop_head {
        height: 50vh;
    }

    .all_prop_head h1.section_title {
        font-size: 2rem;
    }

    .all_prop_info aside a.section_title {
        font-size: 1.1rem !important;
    }

}

@media (max-width: 699px) {
    .all_prop_info .content_container .wrapper_card {
        flex-basis: 100%;
    }

    .popup_model {
        width: 90%;
        left: 50%;
    }
}

@media (min-width: 500px) and (max-width: 699px) {
    .all_prop_info .content_container aside {
        flex-basis: 40%;
    }
}

@media (min-width: 576px) and (max-width: 766px) {
    .all_prop_head {
        height: 55vh;
    }

    .all_prop_head h1.section_title {
        font-size: 2.4rem;
    }
}

@media (max-width: 766px) {
    .all_prop_info a.section_title {
        font-size: 1.2rem !important;
    }

    .popup_model .popup_images img {
        width: 30%;
        max-width: 30%;
        height: 70px;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .all_prop_head {
        height: 60vh;
    }

    .all_prop_head h1.section_title {
        font-size: 2.8rem;
    }

    .all_prop_info aside a.section_title {
        font-size: 1.3rem !important;
    }


    .popup_model .popup_images img {
        height: 70px;
        width: 22%;
        max-width: 22%;
    }
}

@media (min-width: 700px) and (max-width: 991px) {
    .all_prop_info .content_container aside {
        flex-basis: 35%;
    }

    .all_prop_info .content_container aside h5 {
        font-size: 1.2rem;
    }

    .all_prop_info .content_container .wrapper_card {
        flex-basis: 64%;
    }


    .popup_model {
        left: 64%;
    }
}

@media (max-width: 991px) {

    .all_prop_info .content_container aside ul a,
    .all_prop_info .content_container .wrapper_card h5,
    .all_prop_info #list_data .main_txt h3 {
        font-size: 1rem !important;
    }

    .all_prop_info .content_container aside ul a.active_category::after {
        width: 10px;
        height: 10px;
    }

    button.wishlist_btn i {
        font-size: 1.3rem;
    }

    .popup_model>img {
        height: 220px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .all_prop_info .content_container .wrapper_card {
        flex-basis: 47%;
    }

    .all_prop_head {
        height: 65vh;
    }

    .all_prop_head h1.section_title {
        font-size: 3.5rem;
    }

    .all_prop_info aside a.section_title {
        font-size: 1.5rem !important;
    }

    button.wishlist_btn i {
        font-size: 1.4rem;
    }

    .all_prop_info #list_data .main_txt h3 {
        font-size: 1.2rem;
    }

    .popup_model>img {
        height: 300px;
    }
}

@media (max-width: 1199px) {
    .all_prop_wrapper .wrapper_card img {
        height: 250px;
    }

    .all_prop_info .content_container .all_prop_wrapper {
        grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
    }
}


/* =================== About PAGE =================== */
.about_us_container h2.section_title {
    width: fit-content;
}

.about_us_container h2.section_title::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 2px;
    bottom: -3px;
    left: 50%;
    box-shadow: 0 1px 8px var(--fourth-color);
}

.about_us_container h2.section_title span {
    display: initial;
    color: var(--fourth-color);
}

.about_us_container p.section_description {
    font-size: 1.1rem;
}

.about_us_container p.section_description span,
.about_us_container .sub_list span {
    color: var(--fourth-color);
    display: initial;
}

.about_us_container .about_list>div>li {
    border-bottom: 1px solid #ddd;
    width: 80%;
    margin: 0 auto 30px;
}

.about_us_container .sub_list li {
    padding-left: 10px;
    font-size: .9rem;
    letter-spacing: var(--spacing);
    margin-bottom: 1rem;
}

.about_us_container .about_list>div li:first-child .sub_list li {
    flex-basis: 25%;
}

.about_us_container .about_list>div li:last-child .sub_list li {
    flex-basis: 50%;
}

.about_us_container ul.about_list li h6,
.about_us_container .sub_list span {
    font-weight: var(--font-semi-bold);
}

@media (max-width: 575px) {
    .about_us_container .about_container {
        padding: 10px !important;
    }

    .about_us_container .about_list>div>li {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about_us_container .about_list>div li:first-child .sub_list li {
        flex-basis: 50%;
    }
}

@media (max-width: 991px) {
    .about_us_container .about_list>div li:last-child .sub_list {
        flex-direction: column;
    }

    .about_us_container .sub_list li {
        font-size: .8rem !important;
    }
}


/* =================== Components forms Contact US && Account =================== */
.asterisk {
    color: #8b2a33;
    font-size: 1rem;
    position: absolute;
    right: 8px;
    top: 60%;
    font-weight: 700;
}

.form {
    padding: 30px 25px;
    max-width: 375px;
    background-color: var(--body-color);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.form .form-control:focus {
    border-color: unset;
    box-shadow: unset;
}

.form .input {
    width: 100%;
    border: none;
    padding: 23px 20px;
    margin-top: 15px;
    border-inline: 2px solid transparent;
}

.form .input,
div.valid-feedback {
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}

.form .input::placeholder,
.contact_us-form label,
.profile_container.active .profile_body form label {
    letter-spacing: 1px;
    font-family: var(--alt-font);
    text-transform: uppercase;
}

.form .button {
    letter-spacing: 1rem;
    font-weight: var(--font-semi-bold);
}

span.feedback_validate {
    position: absolute;
    bottom: -29px;
    opacity: 1;
}

.errors-container {
    display: grid;
    row-gap: 3px;
    overflow: hidden;
    padding-top: 12px;
    transition-timing-function: ease-in;
}

.errors-container span,
span.feedback_validate {
    font-size: .8rem;
    color: var(--danger);
    width: 100%;
    text-align: center;
}

form a.msgs-alert {
    top: 21%;
    left: 84%;
    z-index: var(--z-lg);
    padding: 13px;
    letter-spacing: unset !important;
    animation: alert 1.2s infinite ease-in;
    -webkit-animation: alert 1.2s infinite ease-in;
}

.error-container,
.suc-container {
    transition-timing-function: ease-in;
    overflow: hidden;
}

.error-container span.contact_out,
.suc-container span {
    width: fit-content;
    font-weight: var(--font-medium);
    font-size: .9rem;
}

@keyframes alert {
    0% {
        box-shadow: 0 0 2px 3px hsl(228deg 66% 45% / 15%);
        transform: translateY(-13px);
        -webkit-transform: translateY(-13px);
        -moz-transform: translateY(-13px);
        -ms-transform: translateY(-13px);
        -o-transform: translateY(-13px);
    }

    50% {
        box-shadow: 0 0 7px 7px hsl(228deg 66% 45% / 30%);
    }

    100% {
        box-shadow: 0 0 13px 10px rgb(39 69 190 / 15%);
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .error-container span.contact_out {
        padding: 5px 0 !important;
    }
}

@media (max-width: 699px) {
    .form {
        width: 90%;
    }
}


/* =================== Contact Us PAGE =================== */
.contact_us-form {
    max-width: 475px;
}

.contact_us-form .form-group {
    column-gap: var(--s-gap);
    margin-bottom: 27px
}

.contact_us-form .contact_us-input {
    max-width: 100%;
    margin-top: unset;
}

.contact_us-form .contact_us-input,
.contact_us-form .select {
    width: 202px;
}


.contact_us-form .contact_us-input:focus {
    border-inline: 2px solid #8b2a33;
}

.contact_us-form select {
    width: 85%;
}

.contact_us-form legend {
    font-size: 1rem;
    width: fit-content;
    font-weight: var(--font-medium);
}

.contact_us-form fieldset:focus-within legend {
    padding-top: 15px;
    color: #8b2a33;
}

.contact_us-form textarea {
    outline: unset;
    user-select: none;
}

@media (max-width: 575px) {
    .contact_us-form {
        width: 97% !important;
        padding: 18px 10px;
    }

    .contact_us-form .contact_us-input,
    .contact_us-form .select {
        width: 135px;
    }

    .contact_us-form label,
    .profile_container.active .profile_body form label {
        letter-spacing: unset;
    }

    .contact_us-form select,
    .contact_us-form .button,
    .contact_us-form .contact_us-input,
    .contact_us-form label,
    .profile_container.active .profile_body form label {
        font-size: .9rem;
    }
}

@media (min-width: 576px) and (max-width: 699px) {
    .contact_us-form {
        width: 81% !important;
    }
}

@media (min-width: 700px) and (max-width: 767px) {
    .contact_us-form {
        width: 70% !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .contact_us-form {
        width: 61% !important;
    }
}

@media (min-width: 576px) and (max-width: 991px) {

    .contact_us-form .contact_us-input,
    .contact_us-form .select {
        width: 175px;
    }
}


/* =================== Investment Pages =================== */
.investment_container {
    width: 90%;
    padding: 2.5rem 0;
    overflow: hidden;
}

.investment_data .inv_t_info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
    gap: var(--s-gap);
}

.investment_data .inv_t_info img {
    width: 100%;
    height: 250px;
    max-height: 250px;
    margin-bottom: 0.8rem;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.investment_container .investment_data .investment_t_section>h5 {
    font-size: 1.3rem;
    color: var(--danger);
    letter-spacing: .6px;
    font-family: var(--alt-font);
    font-weight: var(--font-semi-bold);
}

.investment_data .inv_t_info>div {
    padding: 13px;
    height: 100%;
    display: grid;
}

.investment_container .investment_data .investment_t_section>h5 {
    width: fit-content;
}

.investment_data .inv_t_info {
    margin-top: 1.5rem;
}

.investment_data p {
    margin: 0;
}

.investment_data .inv_t_info h5 {
    font-family: var(--alt-font);
    letter-spacing: 1px;
    font-weight: var(--font-semi-bold);
}

.inv_t_info button.button {
    background: transparent !important;
    width: 55%;
    margin-top: 1rem;
    box-shadow: unset;
}

.investment_end {
    margin-top: 13px;
    font-size: 1.4rem;
    font-family: var(--alt-font);
    letter-spacing: var(--spacing);
    font-weight: var(--font-semi-bold);
    padding: 13px;
}


@media (max-width: 991px) {

    .investment_container .investment_data .investment_t_section>h5,
    .investment_end {
        font-size: 1.1rem;
    }

    .investment_data .inv_t_info h5 {
        font-size: 1rem;
    }
}

@media (max-width:1199px) {
    .investment_container {
        width: 100%;
    }
}

/* ==== investment form ==== */
#investment_contact {
    max-width: 520px !important;
}

#investment_contact .select {
    width: 75% !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
    #investment_contact {
        width: 52% !important;
    }
}

/* === Inv Opp === */
.invest_opp::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: #b1905c;
    top: 0;
    left: 50%;
}

.invest_opp_data {
    display: inline-grid;
}

.invest_opp_data .table-responsive .main-table th {
    letter-spacing: var(--spacing);
    font-weight: var(--font-medium);
}

.invest_opp_data th {
    min-width: 200px;
    max-width: 200px;
}

.invest_opp_data th:nth-child(6),
.invest_opp_data th:nth-child(7),
.invest_opp_data th:nth-child(8),
.invest_opp_data th:nth-child(9) {
    min-width: 220px !important;
    max-width: 220px;
}


@media (max-width: 991px) {
    .invest_opp_data .table-responsive .main-table th,
    .invest_opp_data .table-responsive .main-table td {
        font-size: .9rem;
    }
}


/* =================== Account Pages =================== */
.account_container h1,
.account_container h1>span {
    font-weight: var(--font-semi-bold);
    cursor: pointer;
}

.account_container span.selected {
    text-decoration: underline;
}

.account_container form input:focus {
    border-inline: 2px solid #86571fe0 !important;
}

.account_container i.pass_icon {
    position: absolute;
    right: 16px;
    color: rgb(163 157 157);
    cursor: pointer;
    z-index: var(--z-sm);
    padding: 0 3px 0 10px;
    width: fit-content;
    top: 60%;
}

.account_container a.forget-password {
    padding-left: 10px;
    font-size: .8rem !important;
    font-weight: var(--font-semi-bold);
    letter-spacing: var(--spacing);
}

.account_container input.button {
    background-image: linear-gradient(45deg, black, #6B452B);
    color: white;
    font-weight: var(--font-medium);
}

.suc-container {
    padding-top: 10px;
    text-align: center;
}

.suc-container span {
    font-weight: var(--font-medium) !important;
    color: var(--success);
}


@media (max-width: 575px) {

    .account_container form.form {
        width: 90% !important;
        padding: 19px 15px;
    }

    .account_container input::placeholder {
        font-size: .8rem !important;
    }
}

@media (min-width: 576px) and (max-width: 699px) {
    .account_container form.form {
        width: 66% !important;
    }
}

@media (max-width: 766px) {

    .account_container h1,
    .account_container h1>span {
        font-size: 1.7rem !important;
    }
}

@media (min-width: 700px) and (max-width: 767px) {
    .account_container form.form {
        width: 58% !important;
    }
}

@media (min-width: 767px) and (max-width: 991px) {

    .account_container h1,
    .account_container h1>span {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 991px) {
    .account_container input.button {
        font-size: .9rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .account_container h1,
    .account_container h1>span {
        font-size: 2rem !important;
    }
}


/* ===== Password reset Page ===== */
.password_reset_container {
    height: 70vh;
}

.password_reset_container form {
    top: 50%;
    left: 50%;
    transition: unset !important;
}

.account_container h1 {
    text-align: center !important;
}

.password_reset_container input[type='submit'] {
    letter-spacing: 2px;
}

.password_reset_container .errors-container span,
.password_reset_container .suc-container span {
    font-size: .9rem !important;
    font-weight: var(--font-medium);
}


/* ===== Password reset Form Page ===== */
.password_reset_container .np_f {
    max-width: 410px;
}

.password_reset_container .np_f input[type='submit'] {
    letter-spacing: 1rem;
}

@media (max-width: 766px) {
    .password_reset_container .np_f h1 {
        font-size: 1.6rem !important;
    }
}

/* ===== 404 Page ===== */
.error_page div p {
    font-weight: var(--font-semi-bold);
    font-family: var(--alt-font);
    font-size: 1.1rem;
    letter-spacing: var(--spacing);
}

.error_page div a {
    font-family: var(--alt-font);
}

@media (max-width: 768px) {
    .error_page div a {
        font-size: .8rem !important;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .error_page div p {
        font-size: 1rem;
    }

    .error_page div a {
        font-size: .9rem !important;
    }
}


/* ===== Profile Page ===== */
.profile_container .container {
    overflow: hidden;
}

.profile_container .container h3 {
    font-size: 1.6rem;
}

/* - inactive - */
.inactive {
    height: 80vh;
}

.inactive div.top,
.inactive div.center {
    left: 50%;
    transform: translateX(-50%) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) !important;
    -webkit-transform: translateX(-50%) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) !important;
    -moz-transform: translateX(-50%) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) !important;
    -ms-transform: translateX(-50%) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) !important;
    -o-transform: translateX(-50%) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) !important;
}

.inactive div.top,
.inactive .top_right,
.inactive .top_left,
.inactive .top_right_arr,
.inactive .top_left_arr {
    height: 50px;
    width: 3px;
}

.inactive div.top {
    top: 0px;
}

.inactive div.center {
    height: 3px;
    width: 50%;
    top: 50px;
}

.inactive .top_right,
.inactive .top_left {
    top: 51px;
}

.inactive .top_right {
    right: 25%;
}

.inactive .top_left {
    left: 25%;
}

.inactive .top_right>div,
.inactive .top_left>div,
.inactive .top_right_link,
.inactive .top_left_link {
    padding: 4px 4px;
    max-width: 100%;
    font-family: var(--alt-font);
    letter-spacing: var(--spacing);
    box-shadow: inset 0 0 4px;
}

.inactive .top_right>div,
.inactive .top_left>div {
    min-width: 160px;
    top: 50px;
}

.inactive .top_right>div>span,
.inactive .top_left>div>span {
    background: var(--body-color);
    position: relative;
    z-index: var(--z-sm);
}

.inactive .top_right>div {
    right: -75px;
}

.inactive .top_left>div {
    left: -75px;
}

.inactive .top_right_ch {
    right: -25%;
}

.inactive .top_left_ch {
    left: -25%;
}

.inactive .top_right_arr,
.inactive .top_left_arr {
    top: 4px;
}

.inactive .top_right_arr {
    right: 47.9%;

}

.inactive .top_left_arr {
    left: 45.8%;
}

.inactive .top_right_link,
.inactive .top_left_link {
    top: 55px;
    cursor: pointer;
}

.inactive .top_right_link {
    right: -2%;
    min-width: 240px;
}

.inactive .top_left_link {
    left: -2%;
    min-width: 252px;
}

.inactive .top_right_link:first-of-type,
.inactive .top_left_link:first-of-type {
    margin-bottom: 0.7rem;
}

.inactive .top_right_link:hover,
.inactive .top_left_link:hover {
    box-shadow: 0 0 5px;
}

/* - active - */
/* Components */
.profile_wrapper .errors-container span {
    font-size: .9rem;
    font-weight: var(--font-semi-bold);
}

/* Components */
/* info & settings page */
.profile_container.active .profile_wrapper {
    gap: var(--f-gap);
}

.profile_container.active p.section_subtitle {
    font-size: 1.3rem;
}

.profile_container.active .profile_wrapper form i.bx {
    line-height: .8;
}

.profile_container.active aside {
    flex-basis: 30%;
    border-right-style: solid;
    border-right-width: 1px;
    padding-right: 13px;
}

.profile_container.active aside a {
    font-size: 1.2rem;
    font-family: var(--alt-font);
    padding: 20px 15px;
}

.profile_container.active aside a.profile_active::after {
    content: "";
    position: absolute;
    background: var(--fourth-color);
    width: 11px;
    height: 11px;
    right: -19px;
    top: 50%;
    animation: alert_category 1.5s infinite ease-in-out;
    -webkit-animation: alert_category 1.5s infinite ease-in-out;
}


.profile_container.active aside a:last-of-type {
    column-gap: 3px;
}

.profile_container.active aside a:last-of-type i,
.profile_container.active .form_control button i {
    font-size: 1.5rem;
}

.profile_container.active .profile_body {
    flex-basis: 100%;
}

.profile_body form {
    max-width: 90%;
    text-align: initial;
}

.profile_body form>div.form-group {
    gap: 25px;
    margin-bottom: 25px;
}

.profile_container.active .profile_body form label {
    position: relative;
    bottom: -13px;
    left: 13px;
    font-size: .9rem;
}

.profile_body form>div.form-group>div {
    flex-basis: 50%;
}

.profile_container.active .profile_body form input {
    font-size: .9rem;
}

.profile_container.active .profile_body form span.asterisk {
    top: 75%;
}

.profile_container.active .form_control button {
    font-family: var(--alt-font);
    font-weight: var(--font-semi-bold);
    padding: 4px 7px;
    column-gap: 6px;
}

.profile_container.active .form_control button:hover {
    box-shadow: 0 0 5px;
}

.profile_container.active .btn_loader {
    width: 22px;
    height: 22px;
    border-width: 3px;
    border-style: dashed solid solid dotted;
    animation: rotation 1s linear infinite;
    -webkit-animation: rotation 1s linear infinite;
}

.profile_container.active .form_control button:hover i,
.profile_container.active .form_control button:hover .btn_loader {
    animation: unset;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

/* wishlist Page */
.wishlist_container {
    gap: 40px 25px;
    height: fit-content;
    padding-bottom: 30px;
}

.wishlist_container .wrapper_card {
    height: 100%;
    background: var(--body-color);
    flex-basis: 48%;
}

.profile_body .wrapper_card img {
    height: 250px;
}

.wishlist_container .wrapper_card>div {
    background: var(--body-color);
    border: 1px solid var(--fourth-color);
    box-shadow: 0 0 4px hsl(25deg 57% 54% / 44%);
    padding: 10px 0;
    left: 50%;
    bottom: -7%;
    width: 90%;
}

.wishlist_container .wrapper_card>div h5 {
    font-family: var(--alt-font);
    letter-spacing: .9px;
    font-size: 1.1rem;
}

.profile_container .profile_body .empty_items {
    display: grid;
    font-family: var(--alt-font);
}

/* End active Page */

/* - unapproved - */
.profile_container.unapproved {
    height: 450px;
}



@media (max-width: 480px) {
    .profile_container h3 {
        font-size: 1.1rem !important;
    }

    .profile_container .profile_body .empty_items {
        font-size: 1rem !important;
    }

    .wishlist_container .wrapper_card {
        flex-basis: 90%;
    }
}

@media (max-width: 575px) {
    .profile_container.active .profile_body form {
        max-width: 97% !important;
        padding: 18px 10px;
    }

    .profile_container .container .section_title {
        text-align: center;
    }
}

@media (min-width: 481px) and (max-width: 991px) {
    .profile_container h3 {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 699px) {
    .inactive {
        height: 110vh;
    }

    .inactive div.top,
    .inactive div.center {
        display: none;
    }

    .inactive .top_right {
        right: 49.8%;
        top: 0;
    }

    .inactive .top_left {
        left: 49.8%;
        top: 203px;
    }

    .inactive div.top,
    .inactive .top_right,
    .inactive .top_left,
    .inactive .top_right_arr,
    .inactive .top_left_arr {
        height: 40px;
    }

    .inactive .top_right>div,
    .inactive .top_left>div {
        top: 40px;
    }

    .inactive .top_right_link,
    .inactive .top_left_link {
        top: 44px;
    }

}

@media (max-width: 767px) {
    .profile_container.active .profile_wrapper {
        flex-direction: column;
    }

    .profile_container.active aside {
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-right-style: unset;
        padding-right: unset;
        flex-basis: 100%;
    }


    .profile_body form {
        margin: 20px auto !important;
    }

    .wishlist_container {
        margin-top: 10px;
    }

    .wishlist_container .wrapper_card h5,
    .wishlist_container .wrapper_card .card_size {
        font-size: .8rem !important;
    }

    .profile_container .profile_body .empty_items {
        margin-top: 25px;
    }

    .profile_container.active aside a,
    .profile_container.active .profile_body form label {
        width: fit-content;
        margin: auto;
    }

    .profile_container.active aside a.profile_active::after {
        right: -10px;
    }
}

@media (min-width: 700px) and (max-width: 766px) {
    .inactive {
        height: 81vh;
    }
}

@media (min-width: 700px) and (max-width: 767px) {
    .wishlist_container .wrapper_card {
        flex-basis: 47%;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .inactive {
        height: 80vh;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .wishlist_container {
        gap: 40px 12px;
    }

    .wishlist_container .wrapper_card {
        flex-basis: 44%;
    }
}

@media (max-width: 991px) {
    .profile_container.active p.section_subtitle {
        font-size: 1rem !important;
    }

    .profile_container.active aside a {
        font-size: .9rem !important;
    }

    .profile_container.active .profile_body form label {
        font-size: .8rem;
    }

    .profile_container.active .btn_loader {
        width: 20px;
        height: 20px;
    }

    .wishlist_container .wrapper_card h5 {
        font-size: .9rem !important;
    }

    .profile_container.active aside a.profile_active::after {
        width: 10px;
        height: 10px;
    }

    .profile_body .wrapper_card img {
        height: 230px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .inactive {
        height: 65vh;
    }


    .profile_container.active p.section_subtitle {
        font-size: 1.2rem;
    }

    .profile_body form {
        padding: 25px 19px;
    }

    .wishlist_container .wrapper_card h5 {
        font-size: 1rem !important;
    }

    .profile_body .wrapper_card img {
        height: 220px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .profile_container.active aside {
        flex-basis: 38%;
    }

    .profile_body form {
        padding: 25px 20px;
    }
}



/* ===== Footer ===== */
footer .container {
    background: hsl(228, 16%, 14%);
    background-image: linear-gradient(-45deg, hsl(228, 16%, 14%), black);
    padding: 25px 10px;
}

footer .container>div {
    gap: var(--s-gap);
}

footer img {
    width: 200px;
}

footer ul a,
footer ul i {
    color: white;
}

footer ul.footer_links_list li {
    flex-basis: 30%;
    padding: 8px;
}

footer ul:first-of-type li:last-of-type {
    flex-basis: 100%;
}

footer ul.footer_contact_list {
    gap: var(--f-gap);
}

footer .footer_contact_list li {
    flex-basis: 7%;
    padding: 10px;
}

footer ul li div>i {
    font-size: 1.1rem !important;
}

footer .footer_links_list li a:hover {
    text-decoration: underline;
    color: white;
}

footer .footer_contact_list a {
    position: relative;
    font-size: 1.2rem;
}

footer .footer_contact_list a::after {
    content: "";
    position: absolute;
    padding: 1rem 1.3rem;
    border: 1px solid;
    left: -65%;
    top: -50%;
    opacity: 0;
    width: 0;
    height: 0;
    box-shadow: 0 0 4px;
    color: hsl(33deg 65% 33%);
}

footer .footer_contact_list a:hover::after {
    width: 100%;
    height: 180%;
    opacity: 1;
    top: -50%;
}

footer .container>h6 {
    letter-spacing: var(--spacing);
}

footer .container>h6 i {
    font-size: 1.3rem;
    position: relative;
    top: 3px;
    color: hsl(33deg 65% 33%);
}


@media (max-width: 575px) {
    footer .container>div {
        flex-direction: column;
        align-items: center;
        gap: var(--f-gap);
    }

    footer {
        margin: 0 10px;
    }

    footer .container {
        padding: 25px 0;
    }

    footer .footer_contact_list a::after {
        left: -20% !important;
    }
}

@media (max-width: 991px) {
    footer .container>h6 {
        font-size: .9rem;
    }

    footer img {
        width: 190px;
    }

    footer ul.footer_links_list li {
        flex-basis: 50%;
    }

    footer ul.footer_contact_list {
        gap: unset;
    }

    footer .footer_contact_list li {
        flex-basis: 15%;
    }

    footer .footer_contact_list a {
        font-size: 1rem !important;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    footer .footer_contact_list a::after {
        left: -5% !important;
    }
}



/* ---  Btn Top --- */
.scroll_up {
    right: 2%;
    bottom: 3%;
    z-index: -1;
    opacity: 0;
}

.toggle {
    height: 50px;
    width: 50px;
}

.toggle:before {
    box-shadow: 0;
    background: #fff;
    position: absolute;
    margin-left: -36px;
    margin-top: -36px;
    opacity: 0.2;
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    border-radius: 84.5px;
    -webkit-border-radius: 84.5px;
    -moz-border-radius: 84.5px;
    -ms-border-radius: 84.5px;
    -o-border-radius: 84.5px;
}

.toggle .button {
    height: 50.8px;
    width: 50.8px;
    transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 68.8px;
    -webkit-border-radius: 68.8px;
    -moz-border-radius: 68.8px;
    -ms-border-radius: 68.8px;
    -o-border-radius: 68.8px;
}

.toggle .label {
    transition: color 300ms ease-out;
    line-height: 101px;
    font-weight: 700;
    font-size: 28px;
    opacity: 0.9;
    color: rgba(0, 0, 0, 0.9);
    -webkit-transition: color 300ms ease-out;
    -moz-transition: color 300ms ease-out;
    -ms-transition: color 300ms ease-out;
    -o-transition: color 300ms ease-out;
}

.toggle .label i {
    left: 52%;
    top: 53%;
}

.toggle input {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    z-index: 1;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.toggle input:active~.button {
    filter: blur(0.5px);
    box-shadow: 0 12px 25px -4px rgba(0, 0, 0, 0.4), inset 0 -8px 30px 1px rgba(255, 255, 255, 0.9), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 8px 25px 0 rgba(0, 0, 0, 0.4), inset 0 0 10px 1px rgba(255, 255, 255, 0.6);
    -webkit-filter: blur(0.5px);
}

.toggle input:active~.label {
    font-size: 26px;
    color: rgba(0, 0, 0, 0.45);
}

.toggle input:checked~.button {
    filter: blur(0.5px);
    box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.4), inset 0 -8px 25px -1px rgba(255, 255, 255, 0.9), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 8px 20px 0 rgba(0, 0, 0, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.6);
    -webkit-filter: blur(0.5px);
}

.toggle input:checked~.label {
    color: rgba(0, 0, 0, 0.8);
}


@media (max-width: 766px) {
    .toggle .button {
        height: 40.8px;
        width: 40.8px;
    }

    .toggle .label i {
        font-size: 23px;
        left: 40%;
        top: 45%;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .toggle .button {
        height: 45.8px;
        width: 45.8px;
    }

    .toggle .label i {
        left: 47%;
        font-size: 26px;
        top: 50%;
    }
}

@media (max-width: 991px) {
    .scroll_up {
        right: 1%;
    }
}