:root {
    --White: #fff;
    --Text: #3D3E3F;
    --Primary: #FF8444;
    --PrimaryDark: #ED3031;
    --Secondary: #333;
    --Third: #EB664E;
    --Fourth: #1F4B43;
    --Border: #EBEBEB;
    --atomic: #F75A2A;
    --dark: #000000;
    --uae-gold: #C9A24D;
    --uae-green: #0f7b6c;
    --uae-dark: #0b1d26;
}
body {
    background: var(--White);
    line-height: 1.5;
    padding: 0 !important;
    font-size: 15px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    line-height: 2;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: none;
}

select {
    max-width: 100%;
}

/* General
-------------------------------------------------------------- */
body,
button,
input,
select,
textarea {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--Text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-y: auto;
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--Secondary);
}

strong,
b,
cite {
    font-weight: bold;
}

dfn,
cite,
em,
i,
blockquote {
    font-style: italic;
}

abbr,
acronym {
    border-bottom: 1px dotted #e0e0e0;
    cursor: help;
}

.btn-link:focus,
.btn-link:hover,
mark,
ins {
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

address {
    font-style: italic;
    margin: 0 0 20px;
}

code,
kbd,
tt,
var,
samp,
pre {
    margin: 20px 0;
    padding: 4px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    border-radius: 0;
    height: auto;
}

svg,
svg path {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Elements
-------------------------------------------------------------- */
hr {
    margin-bottom: 20px;
    border: dashed 1px #ccc;
}

/* List */
ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
}

dl,
dd {
    margin: 0 0 20px;
}

dt {
    font-weight: bold;
}

del,
.disable {
    text-decoration: line-through;
    filter: alpha(opacity=50);
    opacity: 0.5;
}


/* Media */
embed,
object,
video {
    margin-bottom: 20px;
    max-width: 100%;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

p>embed,
p>iframe,
p>object,
p>video {
    margin-bottom: 0;
}

/* Forms
-------------------------------------------------------------- */
/* Fixes */
button,
input {
    line-height: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    line-height: inherit;
    margin: 0;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
    /* Removes default vertical scrollbar in IE6/7/8/9 */
    vertical-align: top;
    /* Improves readability and alignment in all browsers */
}

input[type=checkbox] {
    display: inline;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: button;
    border: 0;
}

input[type=checkbox],
input[type=radio] {
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    cursor: pointer;
    vertical-align: sub;
    /* Addresses excess padding in IE8/9 */
}
.form-check-input:checked{
    background-color: rgba(0, 0, 0) !important;
    border-color: rgba(0, 0, 0) !important;
}

input[type=search] {
    -webkit-appearance: textfield;
    /* Addresses appearance set to searchfield in S5, Chrome */
}

input[type=search]::-webkit-search-decoration {
    /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Remove chrome yellow autofill */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #f7f7f7 inset;
}

/* Reset search styling */
input[type=search] {
    outline: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none;
}

/* Placeholder color */
::-webkit-input-placeholder {
    color: #171412;
}

::-moz-placeholder {
    color: #171412;
    opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
    color: #171412;
}

/* Typography
-------------------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Poppins", sans-serif;
    color: var(--Secondary);
    margin: 0;
    font-weight: 600;
    text-rendering: optimizeLegibility;
}

h1, .h1 {
    font-size: 40px;   /* Bootstrap default ~2.5rem */
    font-weight: 500;
    line-height: 1.2;
}

h2, .h2 {
    font-size: 32px;   /* ~2rem */
    font-weight: 500;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 28px;   /* ~1.75rem */
    font-weight: 500;
    line-height: 1.3;
}

h4, .h4 {
    font-size: 24px;   /* ~1.5rem */
    font-weight: 500;
    line-height: 1.4;
}

h5, .h5 {
    font-size: 20px;   /* ~1.25rem */
    font-weight: 500;
    line-height: 1.4;
}

h6, .h6 {
    font-size: 15px;   /* ~1rem */
    font-weight: 500;
    line-height: 1.5;
}

/* Extra classes
-------------------------------------------------------------- */
.hidden {
    display: none;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed !important;
}

.position-unset {
    position: unset !important;
}

.over-hidden {
    overflow: hidden;
}

.z-5 {
    z-index: 5;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-grow {
    flex-grow: 1 !important;
}

.row-reverse {
    flex-direction: row-reverse !important;
}

.justify-start {
    justify-content: start !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-between {
    justify-content: space-between !important;
}

.items-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.text-end {
    text-align: end !important;
}

.text-center {
    text-align: center !important;
}

.gap2 {
    gap: 2px !important;
}

.gap6 {
    gap: 6px !important;
}

.gap7 {
    gap: 7px !important;
}

.gap8 {
    gap: 8px !important;
}

.gap9 {
    gap: 9px !important;
}

.gap10 {
    gap: 10px !important;
}

.gap14 {
    gap: 14px !important;
}

.gap15 {
    gap: 15px !important;
}

.gap16 {
    gap: 16px !important;
}

.gap18 {
    gap: 18px !important;
}

.gap20 {
    gap: 20px !important;
}

.gap22 {
    gap: 22px !important;
}

.gap24 {
    gap: 24px !important;
}

.gap30 {
    gap: 30px !important;
}

.gap34 {
    gap: 34px !important;
}

.gap40 {
    gap: 40px !important;
}

.gap50 {
    gap: 50px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.ml-6 {
    margin-left: 6px !important;
}


.mt-10 {
    margin-top: 10px !important;
}

.mt-13 {
    margin-top: 13px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-21 {
    margin-top: 21px !important;
}


.mb-6 {
    margin-bottom: 6px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-14 {
    margin-bottom: 14px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-22 {
    margin-bottom: 22px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-27 {
    margin-bottom: 27px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.pt-30 {
    padding-top: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.w-full {
    width: 100% !important;
}

.w-half {
    width: 50% !important;
}

.w-max {
    width: max-content !important;
}

.h-full {
    height: 100%;
}

.tf-color {
    color: var(--Primary) !important;
}

.space-20 {
    height: 20px;
}

#wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 100%;
}

#wrapper>.background-F9F9F9 {
    background-color: #F9F9F9;
}

/* link style
-------------------------------------------------------------- */
a {
    text-decoration: none;
    color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover{
    color: var(--PrimaryDark);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* cl-container
-------------------------------------------------------------- */
.cl-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 14px;
    padding-left: 14px;
    width: 1428px;
    max-width: 100%;
}

.cl-container .row {
    margin-left: -14px !important;
    margin-right: -14px !important;
}

.cl-container .row>* {
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.cl-container.full {
    width: 100%;
}

.cl-container.w1800 {
    width: 1828px;
}

.tf-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.heading-section {
    margin-bottom: 46px;
}

.heading-section h2 {
    margin-top: -9px;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.heading-section .text {
    font-weight: 400;
    font-size: 14px;
    color: var(--Text);
}

.heading-section.style-white h2,
.heading-section.style-white .text {
    color: var(--White);
}

.text-content {
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
}

.divider {
    height: 1px;
    background: var(--Border);
}

ul.breadcrumbs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

ul.breadcrumbs li {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: var(--Text);
}

ul.breadcrumbs.style-1 li {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
}

.wg-blog {
    border-radius: 16px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 29px;
}

.wg-blog .image {
    overflow: hidden;
}

.wg-blog .image img {
    width: 100%;
    height: 200px;
    min-height: 200px;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}

.wg-blog .content {
    padding: 22px 10px 20px;
    text-align: center;
    background-color: var(--White);
    border: 1px solid var(--Border);
    border-top: 0;
    border-radius: 0 0 16px 16px;
}

.wg-blog .content .name {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 23px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wg-blog .content p {
    margin-bottom: 23px;
}

.wg-blog .content a {
    margin: auto;
}

.wg-blog:hover {
    box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.0509803922);
}

.wg-blog:hover .image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
    transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
}

.wg-blog.style-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 27px;
}

.wg-blog.style-row .image {
    width: 35.6%;
}

.wg-blog.style-row .content {
    width: 64.4%;
    padding: 41px 30px;
    text-align: start;
    border-top: 1px solid var(--Border);
    border-radius: 0 16px 16px 0;
}

.wg-blog.style-row .content .sub-blog {
    justify-content: start;
}

.wg-blog.style-row .content .name {
    font-weight: 600;
    font-size: 21px;
    line-height: 30px;
    max-width: 415px;
    margin-bottom: 14px;
}

.wg-blog.style-row .content a {
    margin: unset;
}

.sub-blog {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 13px;
}

.sub-blog div {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: var(--Text);
}

.sub-blog div:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--Text);
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
}

.sub-blog.style-color {
    justify-content: start;
}

.sub-blog.style-color div {
    color: var(--Fourth);
}

.sub-blog.style-color div::after {
    background-color: var(--Fourth);
}

.wg-pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
}

.wg-pagination li {
    list-style: none;
    min-width: 40px;
    text-align: center;
    color: var(--Secondary);
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}

.wg-pagination li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    gap: 10px;
    border-radius: 40px;
    color: var(--Secondary);
}

.wg-pagination li a i {
    font-size: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wg-pagination li:hover a {
    background: #F9F9F9;
}

.wg-pagination li.active a {
    background: var(--Secondary);
    color: #fff !important;
}

.wg-pagination li.active i {
    color: #fff !important;
}

.wg-pagination li:last-child a,
.wg-pagination li:first-child a {
    border: 1px solid var(--Border);
    width: 61px;
    height: 40px;
}

.wg-pagination li:last-child a i,
.wg-pagination li:first-child a i {
    font-size: 23px;
}

.wg-pagination li:last-child:hover a,
.wg-pagination li:first-child:hover a {
    border: 1px solid var(--Secondary);
}

.wg-pagination li:last-child {
    margin-left: 10px;
}

.wg-pagination li:first-child {
    margin-right: 10px;
}

.wg-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
}

.wg-social>span {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    color: var(--White);
}

.wg-social ul.list-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wg-social ul.list-social li a {
    color: var(--White);
    position: relative;
    font-size: 14px;
}

.wg-social.style-black>span {
    color: var(--Secondary);
}

.wg-social.style-black ul.list-social li a {
    color: var(--White);
}

.wg-social.style-black ul.list-social li a:hover::before {
    background-color: #1c1c1c;
}

.checkbox-item label {
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}

.checkbox-item label input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.checkbox-item label input:checked~.btn-checkbox {
    background-color: var(--Secondary);
}

.checkbox-item label input:checked~.btn-checkbox:after {
    display: block;
}

.checkbox-item label .btn-checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 6px;
    border: 1px solid #E1E1E1;
}

.checkbox-item label .btn-checkbox:after {
    content: "\f125";
    font-family: flaticon_just-home !important;
    position: absolute;
    font-size: 13px;
    top: 2px;
    line-height: 1;
    left: 2.8px;
    font-weight: bold;
    color: #fff;
    display: none;
}
.checkbox-item label input:checked~.btn-checkbox{
    border-color: var(--atomic);
    background-color: var(--atomic);
}
.radio-item label {
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}
.radio-item label input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.radio-item label input:checked ~ .btn-checkbox:after {
    display: block;
}
.radio-item label .btn-checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid var(--Border);
}
.radio-item label .btn-checkbox:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    border: 4px solid var(--Secondary);
    display: none;
}

.wg-related-posts {
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 24px;
    background-color: #F9F9F9;
}

.box-content-search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 40px 0;
    border: 1px solid var(--Secondary);
    border-radius: 32px;
    background-color: var(--White);
    box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.0509803922);
    opacity: 0;
    visibility: hidden;
    z-index: 5;
}

.box-content-search.active {
    top: calc(100% + 10px);
    opacity: 1;
    visibility: visible;
}
.box-content-search ul, .box-content-search ul li{
    list-style: none;
}

.box-content-search .heading {
    padding: 0 40px 13px;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Fourth);
}

.box-content-search .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box-content-search .item i {
    font-size: 15px;
    color: var(--Fourth);
}

.box-content-search .item:hover {
    background-color: #F9F9F9;
}

.box-content-search .item1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box-content-search .item1:hover {
    background-color: #F9F9F9;
}

.box-content-search .item1>div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.box-content-search .item1>div .image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.box-content-search .item1>div .image img {
    width: 100%;
    object-fit: cover;
}

.box-content-search .item1 .text {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary);
}

.box-content-search.style-1 {
    padding: 28px 21px 20px;
}

.box-content-search.style-1 ul {
    max-height: 320px;
}

.box-content-search.style-1 ul .item1 {
    padding: 15px;
    border-radius: 16px;
}

.wg-filter {
    position: relative;
    z-index: 15;
}

/*.wg-filter .btn-filter.active {*/
/*    border-color: var(--Secondary);*/
/*}*/

.wg-filter .open-filter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--Secondary);
    border-radius: 16px;
    background-color: var(--White);
    box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.0509803922);
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.wg-filter .open-filter.active {
    opacity: 1;
    visibility: visible;
    top: 110%;
}

.wg-filter .open-filter .title {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary);
    margin-bottom: 20px;
}

.wg-filter.style-more {
    z-index: 40;
}

.wg-filter.style-more .btn-filter {
    height: 54px;
    padding: 16px 47px 16px 28px;
}

.wg-filter.style-more .open-filter {
    width: 1022px;
}

.wg-filter.style-more .open-filter.active {
    top: 116%;
    z-index: 70;
}

.wg-filter.style-more::after {
    border-bottom: 1.7px solid var(--Secondary);
    border-right: 1.7px solid var(--Secondary);
    content: "";
    height: 8px;
    width: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    top: 47%;
    right: 30px;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.wg-filter.style-price {
    z-index: 50;
}

.wg-filter.style-price .btn-filter {
    height: 54px;
    padding: 16px 47px 16px 28px;
}

.wg-filter.style-price .open-filter {
    width: 401px;
    left: 0;
    padding: 24px 30px 30px 20px;
}

.wg-filter.style-price .open-filter.active {
    top: 116%;
    z-index: 60;
}

.wg-filter.style-price .open-filter .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 16px;
}

.wg-filter.style-price .open-filter .grid-2-cols {
    gap: 10px;
}

.wg-filter.style-price .open-filter .nice-select {
    border-radius: 12px !important;
    padding: 12px 49px 12px 19px !important;
}

.wg-filter.style-price .open-filter .nice-select::after {
    right: 21px !important;
}

.wg-filter.style-price::after {
    border-bottom: 1.7px solid #3A3A3C;
    border-right: 1.7px solid #3A3A3C;
    content: "";
    height: 8px;
    width: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    top: 47%;
    right: 30px;
    border-color: var(--Secondary);
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    width: 100%;
}

.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
    width: 100%;
}

.grid-checkbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    width: 100%;
}

.box-dream {
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 16px;
    background-color: var(--White);
    padding-top: 10px;
    height: 100%;
}

.box-dream:hover {
    box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.0509803922);
}

.box-dream:hover .image .swiper-container::after {
    opacity: 1;
    visibility: visible;
}

.box-dream:hover .image .swiper-container .swiper-pagination,
.box-dream:hover .image .swiper-container .swiper-button-next,
.box-dream:hover .image .swiper-container .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.box-dream:hover .image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
    transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
}

.box-dream .image {
    position: relative;
    margin: 0px 10px;
    border-radius: 12px;
    overflow: hidden;
}

.box-dream .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}
.properties .box-dream .image img {
    height: 250px;
}
.properties .box-dream {
    height: 100%;
}

.box-dream .image .swiper-container .swiper-slide {
    overflow: hidden;
}

.box-dream .image .swiper-container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.1) 61.39%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box-dream .image .swiper-container .swiper-pagination,
.box-dream .image .swiper-container .swiper-button-next,
.box-dream .image .swiper-container .swiper-button-prev {
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.box-dream .content {
    padding: 16px 16px 20px;
}

.box-dream .content .head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 11px;
}

.box-dream .content .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
}

.box-dream .content .price {
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    color: var(--PrimaryDark);
}

.box-dream .content .location {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 27px;
}

.box-dream .content .location .icon i {
    font-size: 20px;
    color: var(--Text);
}

.box-dream .content .location p {
    line-height: 24px;
}

.box-dream .content .bot {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 17px;
    border-top: 1px solid var(--Border);
}

.box-dream .content p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: var(--Text);
    margin: 0;
}
.box-dream{
    z-index: 1;
}
.box-dream.has-border {
    border: 1px solid var(--Border);
    padding-top: 9px;
}

.box-dream.has-border:hover {
    box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.0509803922);
}

.box-dream.style-1 {
    border: 1px solid var(--Border);
}

.box-dream.style-1 .image {
    margin: 0 9px;
}

.box-dream.style-1 .content {
    padding: 13px 20px 13px 20px;
}

.box-dream.style-1 .content .head {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    margin-bottom: 2px;
}

.box-dream.style-1 .content .price {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
}

.box-dream.style-1 .content .location {
    gap: 7px;
    margin-bottom: 10px;
}

.box-dream.style-1 .content .location i {
    font-size: 15px;
}

.box-dream.style-1 .content .location p {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}

.box-dream.style-1 .content .icon-box .item {
    gap: 7px;
}

.box-dream.style-1 .content .icon-box .item i {
    font-size: 17px;
}

.box-dream.style-1 .content .icon-box .item p {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
}

.box-dream.style-absolute {
    padding-top: 0;
}

.box-dream.style-absolute .image {
    margin: 0;
}

.box-dream.style-absolute .content {
    position: absolute;
    padding: 0 0 10px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--White);
    border-radius: 8px;
    z-index: 10;
}

.box-dream.style-absolute .content .location {
    margin-bottom: 15px;
}

.box-dream.style-absolute.type-no-bg-content .image::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.1) 40%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 5;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box-dream.style-absolute.type-no-bg-content .content {
    background-color: transparent;
}

.box-dream.style-absolute.type-no-bg-content .content .icon-box .item p,
.box-dream.style-absolute.type-no-bg-content .content .icon-box .item i,
.box-dream.style-absolute.type-no-bg-content .content .price,
.box-dream.style-absolute.type-no-bg-content .content .location p,
.box-dream.style-absolute.type-no-bg-content .content .location .icon i,
.box-dream.style-absolute.type-no-bg-content .content .title a {
    color: var(--White);
}

.list-tags {
    position: absolute;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.list-tags .tags-item {
    padding: 9px 15px;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    border-radius: 120px;
}

.list-tags .tags-item.for-sell {
    background-color: var(--Secondary);
    color: var(--White);
}

.list-tags .tags-item.featured {
    background-color: var(--atomic);
    color: var(--White);
}

.list-tags.type-1 {
    top: 30px;
    left: 30px;
}

.icon-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.icon-box .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    position: relative;
}

.icon-box .item i {
    font-size: 20px;
    color: var(--Text);
}

.icon-box .item:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    right: -15px;
    /*background-color: var(--Border);*/
}

.icon-box.style-border .item {
    padding: 10px 16px;
    border: 1px solid var(--Border);
    border-radius: 120px;
}

.icon-box.style-border .item::after {
    display: none;
}

.cities-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cities-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.1) 61.39%, rgba(26, 26, 26, 0) 100%);
}

.cities-item .image {
    overflow: hidden;
}

.cities-item img {
    width: 100%;
    min-height: 350px;
    max-height: 400px;
    object-fit: cover;
    height: 100%;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
@media (max-width: 768px) {
    .cities-item img{
        min-height: 250px;
    }
}

.cities-item .content {
    position: absolute;
    top: 22px;
    left: 30px;
    z-index: 3;
}

.cities-item .content p {
    margin-bottom: 4px;
    color: var(--White);
}

.cities-item .content h4 {
    color: var(--White);
}

.cities-item> .button-arrow-right {
    position: absolute;
    left: 30px;
    bottom: 40px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.cities-item:hover>a {
    opacity: 1;
    visibility: visible;
}

.cities-item.style-3::after {
    display: none;
}

.cities-item.style-3 .content {
    top: 34px;
    left: 30px;
}

.cities-item.style-3 .content h4 {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0px;
}

.cities-item.style-3 .content p {
    color: #fff;
}

.box-icon {
    text-align: center;
}

.box-icon:hover .icon:not(.has-ellipse) i {
    transform: rotateY(360deg);
}

.box-icon:hover .icon.has-ellipse::before {
    width: 70px !important;
    height: 70px !important;
    bottom: -10px;
    left: 0;
}

.box-icon:hover .icon.has-ellipse.small::before {
    width: 80px !important;
    height: 80px !important;
    bottom: -10px;
    left: -12px;
}

.box-icon:hover .image {
    transform: rotateY(360deg);
}

.box-icon .icon {
    width: 50px;
    height: 50px;
    font-size: 50px;
    color: var(--Secondary);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    position: relative;
}

.box-icon .icon i {
    display: inline-block;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.box-icon .icon.has-ellipse {
    padding-left: 10px;
    padding-bottom: 10px;
}

.box-icon .icon.has-ellipse::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--Primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box-icon .icon.has-ellipse.small::before {
    width: 30px;
    height: 30px;
}

.box-icon .icon i {
    position: relative;
    font-size: 40px;
}

.box-icon .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    text-transform: capitalize;
}

.box-icon .title:hover {
    color: var(--Fourth);
}

.box-icon p {
    color: var(--Secondary);
    margin-top: 14px;
}

.box-icon.style-1 .icon {
    width: 70px;
    height: 70px;
    font-size: 60px;
}

.box-icon.style-1 .title {
    font-size: 21px;
    font-weight: 600;
    line-height: 30px;
    text-transform: none;
}

.box-icon.has-bg {
    text-align: start;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 0px 16px 16px 0px;
    border-left: 3px solid #cccccc;
    background-color: #f1f1f1;
    margin-bottom: 1rem;
}

.box-icon.has-bg .icon {
    margin-left: unset;
    margin-right: unset;
    margin-bottom: 0;
}

.box-icon.has-bg .icon i {
    font-size: 35px;
}

.box-icon.has-bg .content .title {
    font-weight: 600;
    font-size: 21px;
    line-height: 30px;
}

.box-icon.has-bg .content p {
    margin-top: 4px;
}

.box-icon.has-bg.active,
.box-icon.has-bg:hover {
    background-color: #faefd4;
    border-left: 3px solid var(--Secondary);
}

.properties-slider {
    border-radius: 16px;
    overflow: hidden;
}

.properties-slider .swiper-button-next {
    right: 20px !important;
}

.properties-slider .swiper-button-prev {
    left: 20px !important;
}

.properties-content-default {
    padding: 31px 40px 40px 40px;
    border-radius: 16px;
    background-color: var(--Secondary);
}

.properties-content-default .number {
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: var(--White);
    margin-bottom: 4px;
}

.properties-content-default .number span {
    font-size: 26px;
    line-height: 36px;
}

.properties-content-default .text {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--White);
    margin-bottom: 34px;
}

.properties-content-default p {
    color: var(--White);
    margin-bottom: 45px;
}

.properties-content-default>a {
    margin-left: auto;
}

.counter .number-counter div {
    font-weight: 600;
    font-size: 32px;
    line-height: 47px;
    color: var(--Primary);
    margin-bottom: 12px;
}

.counter .number-counter p {
    color: var(--White);
    text-transform: capitalize;
}

.counter .number-counter.style-1 {
    border-radius: 16px;
    padding: 61px 40px 63px;
    background-color: #F9F9F9;
    text-align: start !important;
}

.counter .number-counter.style-1 div {
    text-align: start !important;
    margin-bottom: 53px;
    color: var(--Third);
}

.counter .number-counter.style-1 h4 {
    color: var(--Secondary);
    margin-bottom: 16px;
}

.counter .number-counter.style-1 .text-content {
    color: var(--Secondary);
}

.experts-item{
    position: relative;
}
.experts-item h4{
    font-size: 20px;
    font-weight: 600;
}
.experts-item .image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 10px;
}

.experts-item .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}
@media (max-width: 992px) {
    .experts-item .image img {
        height: 250px;
    }
}

.experts-item .image .wg-social-1 {
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 22px -10px #ddd;
}

.experts-item:hover .wg-social-1 {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.experts-item:hover .image img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
    transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
}

ul.wg-social-1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 120px;
    padding: 10px 20px;
    background-color: var(--White);
    list-style: none;
}
ul.wg-social-1 li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.wg-social-1 i{
    display: block;
    line-height: 1;
}

.flat-accordion .flat-toggle {
    padding: 0px 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.flat-accordion .flat-toggle .toggle-title {
    position: relative;
    cursor: pointer;
    width: 99%;
    font-size: 18px;
}
.flat-accordion .toggle-content p{
    font-size: 14px;
}

.flat-accordion .flat-toggle .toggle-title:before {
    position: absolute;
    content: "";
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 2px;
    background-color: var(--atomic);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.flat-accordion .flat-toggle .toggle-title::after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: var(--atomic);
}

.flat-accordion .flat-toggle .toggle-content {
    margin-top: 16px;
    display: none;
}

.flat-accordion .flat-toggle.active {
    background-color: #ffeae5;
    padding: 20px;
}

.flat-accordion .flat-toggle.active .toggle-title{
    color: var(--atomic);
}

.flat-accordion .flat-toggle.active .toggle-title::before {
    opacity: 0;
    visibility: hidden;
}

.work-with-us-item {
    padding: 43px 0 42px 0;
    border-bottom: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.work-with-us-item .proces {
    min-width: 5%;
    width: 5%;
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
}

.work-with-us-item h2 {
    min-width: 30%;
    position: relative;
    font-size: 30px;
    margin-bottom: 1rem;
}

.work-with-us-item .text-content {
    min-width: 65%;
    color: var(--Secondary);
    text-align: end;
}

.work-with-us-item a {
    /*position: absolute;*/
    /*left: 61px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    /*opacity: 0;*/
    /*visibility: hidden;*/
    width: 30px;
    height: 30px;
}
@media (max-width: 992px) {
    .work-with-us-item div:has(h2){
        min-width: 40%;
    }
    .work-with-us-item .text-content{
        max-width: 100%;
        min-width: unset;
    }
    .work-with-us-item{
        padding: 50px 0 50px 0;
    }
}
.work-with-us-item a i {
    font-size: 18px;
}

.work-with-us-item:hover a {
    left: 71px;
    opacity: 1;
    visibility: visible;
}

.wrap-gallery-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 10px;
    grid-template-rows: auto;
    grid-template-areas: "aa aa bb cc" "aa aa dd ee";
}

.wrap-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 450px;
}

.wrap-gallery-image .item-1 {
    grid-area: aa;
}

.wrap-gallery-image .item-2 {
    grid-area: bb;
}

.wrap-gallery-image .item-3 {
    grid-area: cc;
}

.wrap-gallery-image .item-4 {
    grid-area: dd;
}

.wrap-gallery-image .item-5 {
    grid-area: ee;
}

.wrap-gallery-image .more-photos {
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.more-photos, .more-photos .d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 15px;
    background-color: var(--White);
    border-radius: 8px;
    cursor: pointer;
}

.more-photos i {
    font-size: 15px;
    color: var(--Secondary);
    line-height: 1;
}

.more-photos p {
    color: var(--Secondary);
    margin: 0;
    line-height: 1.5;
}

.property-single-sidebar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 390px;
    margin-left: auto;
}

.property-single-sidebar .sidebar-item {
    padding: 30px;
    border-radius: 16px;
    background-color: var(--White);
    border: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.property-single-sidebar .sidebar-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    margin-top: -6px;
}

.property-single-sidebar .sidebar-request .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary);
    text-align: center;
}

.property-single-sidebar .sidebar-request .text span {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.flat-title {
    padding-top: 90px;
    padding-bottom: 94px;
    /*position: relative;*/
    /*z-index: 20;*/
}

.flat-title .content {
    text-align: center;
}

.flat-title .content h2 {
    margin-bottom: 14px;
}

.flat-title .content>.text {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
}

.flat-title.page-property-list-3 {
    padding-top: 130px;
    padding-bottom: 50px;
    border-radius: 0;
    /*position: relative;*/
    background-color: var(--Secondary);
    /*z-index: 20;*/
}

.flat-title.page-property-list-3 .content h2 {
    color: var(--White);
}

.flat-title.page-property-list-3 .content .breadcrumbs {
    margin-bottom: 23px;
}

.flat-title.page-property-list-3 .content .breadcrumbs li {
    color: var(--White);
}

.flat-title.page-property-list-3 .content .breadcrumbs li a {
    color: var(--White);
}

.flat-title.page-property-list-3 .content .form-filter {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: start;
    /*position: relative;*/
    /*z-index: 99;*/
}

/*.flat-title.page-property-list-3 .content .form-filter form,  .form-filter .dropdown-menu{*/
/*    border-radius: 16px;*/
/*    border: 1px solid var(--Border);*/
/*}*/

.flat-title.page-property-list-3 .content .form-filter form .wg-filter>.btn-filter {
    background-color: var(--White);
}


.slider .wrap-slider {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slider .slider-item .slider-content {
    text-align: center;
}

.slider .slider-item .slider-content .sub {
    width: max-content;
    margin: auto;
    padding: 11px 25px;
    border-radius: 120px;
    border: 1px solid var(--White);
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: var(--White);
    margin-bottom: 17px;
}

.slider .slider-item .slider-content h1 {
    color: var(--White);
    margin: auto;
    margin-bottom: 42px;
}

.slider .slider-item .slider-content .list-link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 36px;
}

.slider .slider-item .slider-content .list-link>* {
    position: relative;
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: var(--White);
    cursor: pointer;
}

.slider .slider-item .slider-content .list-link>*::after {
    position: absolute;
    content: "";
    bottom: -3px;
    left: auto;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--White);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slider .slider-item .slider-content .list-link>*.active::after,
.slider .slider-item .slider-content .list-link>*:hover::after {
    width: 100%;
    left: 0px;
    right: auto;
}

.slider.home7 .wrap-slider {
    position: relative;
    background-color: #FFF8F6;
}

.slider.home7 .wrap-slider .slider-item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: fit-content;
    margin: auto;
}

.slider.home7 .wrap-slider .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.slider.home7 .wrap-slider::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(26, 26, 26, 1), rgba(26, 26, 26, 0));
}

.slider.home7 .wrap-slider .slider-item {
    z-index: 5;
}

.slider.home7 .wrap-slider .slider-item .slider-content {
    text-align: center;
}

.slider.home7 .wrap-slider .slider-item .slider-content .text {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: var(--White);
    margin-bottom: 1rem;
}

.slider.home7 .wrap-slider .slider-item .slider-content h1 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.slider.home7 .wrap-slider .slider-item .slider-content .text-1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.61px;
    margin-bottom: 44px;
    color: var(--White);
}

.slider.home7 .swiper-button-next {
    right: 60px !important;
}

.slider.home7 .swiper-button-prev {
    left: 60px !important;
}

.slider.home7>form {
    max-width: 1162px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    border-radius: 24px !important;
    gap: 20px;
}
@media (max-width: 992px){
    .slider.home7>form {
        margin-top: 0;
        flex-direction: column;
        border-radius: 0 !important;
    }
}
@media  (max-width: 1080px) {
    h1, .h1{
        font-size: 40px;
    }
}

.luxury-home {
    background-color: var(--Fourth);
    border-radius: 24px;
    padding-bottom: 191px;
}

.luxury-home .image {
    position: relative;
}

.luxury-home .image img {
    width: 100%;
    border-radius: 16px;
}

.luxury-home .image .box {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--White);
    padding: 20px 60px 20px 30px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.luxury-home .image .box .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 200, 115, 0.2);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.luxury-home .image .box .icon i {
    font-size: 26px;
}

.luxury-home .content {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 9px;
}

.luxury-home .content h2 {
    color: var(--White);
    margin-bottom: 34px;
    font-weight: 600;
}

.luxury-home .content .text-content {
    color: var(--White);
    margin-bottom: 43px;
}

.luxury-home .content ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px 53px;
    flex-wrap: wrap;
    margin-bottom: 41px;
}

.luxury-home .content ul li h4 {
    margin-bottom: 14px;
}

.luxury-home .counter {
    padding-top: 91px;
}

.luxury-home.style-4 {
    background-color: var(--White);
    padding-bottom: 80px;
}

.luxury-home.style-4 .content {
    justify-content: start;
}

.luxury-home.style-4 .content h2,
.luxury-home.style-4 .content .text-content {
    color: var(--Secondary);
}

.luxury-home.style-4 .content .text-content {
    margin-bottom: 34px;
}

.luxury-home.style-4 .content .counter {
    padding-top: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 90px;
    margin-bottom: 41px;
}

.luxury-home.style-4 .content .counter>div {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.number-counter{
    width: 100%;
}
.luxury-home.style-4 .content .counter .number-counter div,
.luxury-home.style-4 .content .counter p {
    color: var(--Secondary);
}

.parallax-wrap {
    padding-top: 170px;
    padding-bottom: 170px;
    padding-inline: 1rem;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.parallax-wrap .heading {
    font-weight: 500;
    font-size: 45px;
    line-height: 70px;
    color: #111235;
    margin-bottom: 10px;
}

.parallax-wrap .text {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #111235;
    margin-bottom: 43px;
}

.parallax-wrap .color-white .heading,
.parallax-wrap .color-white .text {
    color: var(--White);
}

.parallax-wrap.style-1 {
    padding-bottom: 170px;
    background-image: url(../images/parallax-2.jpg);
}

.parallax-wrap.style-1::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.5) 61.39%, rgba(26, 26, 26, 0) 100%);
}

.parallax-wrap.style-1 .content {
    position: relative;
    z-index: 7;
}

.progress-wrap {
    position: fixed;
    bottom: 90px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 30px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
    box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    background: var(--Secondary);
}

.progress-wrap::after {
    position: absolute;
    content: "\f062";
    font-family: "Font Awesome 7 Free";
    text-align: center;
    line-height: 50px;
    font-size: 15px;
    font-weight: 800;
    color: var(--White);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    box-sizing: border-box;
    stroke: var(--atomic);
    stroke-width: 5;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    transition-duration: 0.4s;
    transition-timing-function: linear;
}

.preload-container {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000000000000000000000;
    height: 100%;
    width: 100%;
    /*background-color: #fff;*/
    background-color: rgb(255 255 255 / 80%);
    /*backdrop-filter: blur(10px);*/
}

.preload-container .middle {
    top: 50%;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 100;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    /*content: url(../images/logo-n.png);*/
    animation: preload 1.2s
    linear infinite alternate;
    width: 220px;
    margin: auto;
}

#header_main {
    position: relative;
    /*z-index: 100;*/
}

#header_main .header-inner.background-white .header-inner-wrap {
    background-color: var(--White);
}

#header_main .header-inner .header-inner-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--Border);
    border-radius: 0;
    padding-left: 40px;
    padding-right: 40px;
}
#logo-header,
#logo-header-mobile, #footer-logo img {
    width: 170px;
    object-fit: contain;
}
#header_main .header-inner .header-inner-wrap #site-logo #logo-header-mobile {
    display: none;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}
@media (max-width: 1300px){
    #header_main .header-inner .header-inner-wrap .main-menu ul.navigation {
        gap: 30px;
    }
}
@media (max-width: 1300px){
    #header_main .header-inner .header-inner-wrap .main-menu ul.navigation {
        gap: 25px;
    }
}
#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li {
    position: relative;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>a {
    line-height: 100px;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul {
    position: absolute;
    min-width: 270px;
    padding: 8px 20px;
    opacity: 0;
    border-radius: 16px;
    background-color: var(--White);
    visibility: hidden;
    transform: translateY(10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li {
    line-height: 40px;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li a {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    line-height: 40px;
    display: block;
}
.has-children ul{
    box-shadow: 0 0 21px -15px;
}
#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--atomic);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li a.current::after,
#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul>li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul.mega-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 130px;
    padding: 40px 45px;
    transform: translateX(-50%) translateY(10px);
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li>ul.mega-menu .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 33px;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: all;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li:hover ul.mega-menu {
    transform: translateX(-50%) translateY(0px);
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation>li.current::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#header_main .header-inner .header-inner-wrap .main-menu ul.navigation a,
#header_main .header-inner .header-inner-wrap .main-menu ul.navigation li {
    /*width: max-content;*/
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--Secondary);
    list-style: none;
}

#header_main .header-inner .header-inner-wrap .main-menu.style-white>ul>li>a {
    color: var(--White);
}

#header_main .header-inner .header-inner-wrap .main-menu.style-white>ul>li::after {
    background-color: var(--atomic) !important;
}

#header_main .header-inner .header-inner-wrap .main-menu.style-blue>ul>li>a {
    color: var(--Fourth);
}

#header_main .header-inner .header-inner-wrap .main-menu.style-blue>ul>li::after {
    background-color: var(--Fourth) !important;
}

#header_main .header-inner .header-inner-wrap .header-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#header_main .header-inner .header-inner-wrap .header-right .header-call {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
}

#header_main .header-inner .header-inner-wrap .header-right .header-call .icon i {
    font-size: 20px;
    color: var(--Secondary);
}

#header_main .header-inner .header-inner-wrap .header-right .header-call .number a{
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary);
}

#header_main .header-inner .header-inner-wrap .header-right .header-call.style-white .number a {
    color: var(--White);
}

#header_main .header-inner .header-inner-wrap .header-right .header-call.style-white .icon i {
    color: var(--White);
    display: block;
    line-height: 0;
}

#header_main .header-inner .header-inner-wrap .header-right .header-call.style-blue .number {
    color: var(--Fourth);
}

#header_main .header-inner .header-inner-wrap .header-right .header-call.style-blue .icon i {
    color: var(--Fourth);
}

#header_main .header-inner .header-inner-wrap .header-right .header-user {
    width: 41px;
    height: 41px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--Secondary);
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

#header_main .header-inner .header-inner-wrap .header-right .header-user i {
    font-size: 15px;
    color: var(--Secondary);
    display: block;
    line-height: 1;
}

#header_main .header-inner .header-inner-wrap .header-right .header-user.style-white {
    border-color: var(--White);
}

#header_main .header-inner .header-inner-wrap .header-right .header-user.style-white .icon i {
    color: var(--White);
}

#header_main .header-inner .header-inner-wrap .header-right .header-user.style-blue {
    border-color: var(--Fourth);
}

#header_main .header-inner .header-inner-wrap .header-right .header-user.style-blue .icon i {
    color: var(--Fourth);
}

#header_main .header-inner .header-inner-wrap .header-right .header-user-login {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#header_main .header-inner .header-inner-wrap .header-right .header-user-login .image {
    width: 41px;
    height: 41px;
}

#header_main .header-inner .header-inner-wrap .header-right .header-user-login .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#header_main .header-inner .header-inner-wrap .header-right .header-user-login .name {
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary);
}

#header_main .header-inner .header-inner-wrap .mobile-button {
    display: none;
    width: 23px;
    height: 10px;
    position: relative;
}

#header_main .header-inner .header-inner-wrap .mobile-button::before,
#header_main .header-inner .header-inner-wrap .mobile-button::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--Secondary);
}

#header_main .header-inner .header-inner-wrap .mobile-button::before {
    top: 0;
}

#header_main .header-inner .header-inner-wrap .mobile-button::after {
    bottom: 0;
}

#header_main.is-fixed {
    position: fixed !important;
    padding: 0;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 999;
    border: none;
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0 0 15px -8px;
    z-index: 100 !important;
}

#header_main.is-fixed.is-small {
    top: 0;
}

#header_main.is-fixed.is-small .header-inner {
    padding-top: 0 !important;
}

#header_main.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: var(--White);
}

#header_main.is-fixed.type-home1.is-small {
    top: 20px;
}

#header_main.style-absolute {
    position: absolute;
    width: 100%;
    z-index: 9;
}

#header_main.style-no-bg .header-inner .header-inner-wrap {
    background-color: transparent;
    border: 0;
}

#header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: var(--White);
}

#header_main.style-no-bg .header-inner .header-inner-wrap .main-menu ul.navigation>li::after {
    bottom: 29px;
    height: 2px;
}

#header_main.type-home10 .header-inner {
    padding: 10px 20px 0 20px !important;
}

#header_main.type-home10.is-fixed.is-small {
    background-color: var(--Secondary);
    border: 0;
}

#header_main.type-home10.is-fixed.is-small .header-inner .header-inner-wrap {
    background-color: transparent;
}

#header_main.style-bg-white .header-inner {
    padding: 40px 40px 0 40px !important;
}

#header_main.style-bg-white .header-inner .header-inner-wrap {
    border-radius: 120px;
    padding-right: 20px;
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation {
    gap: 50px;
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li::after {
    display: none;
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 50px);
    height: 41px;
    border-radius: 120px;
    background-color: unset;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li.current::before,
#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li:hover::before {
    background-color: var(--Primary);
}

#header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li>a {
    position: relative;
    line-height: 79px;
}

#header_main.style-container .header-inner .header-inner-wrap {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

#header_main.style-container .header-inner .header-inner-wrap .main-menu {
    flex-grow: 1;
}

#header_main.style-container .header-inner .header-inner-wrap .main-menu .navigation {
    margin-left: 90px;
    justify-content: start;
}

#header_main.style-fixed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0 !important;
    background-color: #F9F9F9;
}

#header_main.style-fixed.none-bg {
    background-color: var(--White);
}
#header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap .header-right .header-call.style-white .icon i{
    color: var(--Secondary);
}
#header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap .header-right .header-call.style-white .icon i{
    color: var(--Secondary);
}
#header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap .header-right .header-call.style-white .number a{
    color: var(--Secondary);
}
#header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap .main-menu.style-white>ul>li>a{
    color: var(--Secondary);
}
#header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap .header-right .header-user.style-white, #header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap .header-right .header-user.style-white .icon i{
    border-color: var(--Secondary);
    color: var(--Secondary);
}
#header_main.style-no-bg.is-fixed.is-small .header-inner .header-inner-wrap .main-menu.style-white>ul>li>a{
    color: var(--Secondary);
}
.header-right ul.navigation>li::after{
    display: none;
}

.header-right ul.navigation>li ul{
    right: 0 !important;
    min-width: 150px !important;
}
.mm-wrapper--position-left .mm-slideout,
.mm-wrapper--position-right .mm-slideout {
    transform: none;
}

#menu {
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary) !important;
    background-color: var(--White) !important;
}

#menu>a.close {
    position: absolute;
    top: 10px;
    left: unset;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #F9F9F9;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#menu>a.close i {
    font-size: 10px;
    color: var(--Secondary);
}

#menu .mm-panels {
    background-color: var(--White) !important;
}

#menu .mm-panels .mm-panel {
    background-color: var(--White) !important;
}

#menu .mm-panels .mm-panel .mm-navbar {
    background-color: var(--White) !important;
    border-bottom: 1px solid var(--Border) !important;
}

#menu .mm-panels .mm-panel .mm-navbar .mm-navbar__title {
    justify-content: start;
    padding: 10px 20px;
    height: 60px;
    color: var(--Secondary) !important;
}

#menu .mm-panels .mm-panel .mm-listview {
    padding: 30px 20px;
}

#menu .mm-panels .mm-panel .mm-listview .current {
    background-color: #F9F9F9;
    border-radius: 12px;
}

#menu .mm-panels .mm-panel .mm-listview .mm-listitem .mm-btn {
    height: 51px;
}

#menu .mm-panels .mm-panel .mm-listview .mm-listitem .mm-btn::after {
    border-color: var(--Secondary);
}

#menu .mm-panels .mm-panel .mm-listview .mm-listitem::after {
    display: none;
}

@media (min-width: 1199px) {
    #menu {
        display: none;
    }
}

.tf-button-no-bg {
    position: relative;
    width: max-content;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--Secondary);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-button-no-bg i {
    font-size: 18px;
}

.tf-button-no-bg:hover i {
    animation: 0.3s link-icon linear;
    color: var(--PrimaryDark);
}

.tf-button-no-bg.style-white {
    color: var(--White);
}

.tf-button-no-bg.style-white i {
    color: var(--White);
}

.tf-button-bg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 44px;
    padding: 13px 30px;
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--White);
}

.tf-button-bg:hover {
    background-color: rgba(255, 255, 255, 0.2509803922);
}

.tf-button-bg.type-secondary {
    background-color: var(--Secondary) !important;
}

.tf-button-green {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    background-color: var(--Fourth);
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: var(--White);
}

.tf-button-green i {
    font-size: 15px;
}

.tf-button-green:hover {
    background-color: #1e302d;
    color: var(--White);
}

.tf-button-primary {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    gap: 10px;
    padding: 18px 26px;
    border-radius: 12px;
    border: 0;
    background-color: var(--atomic);
    color: var(--White);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn{
    padding: 18px 26px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
}

.tf-button-primary i {
    font-size: 18px;
}

.tf-button-primary.active,
.tf-button-primary:hover,
.tf-button-primary:focus{
    background-color: var(--Primary);
    color: var(--White);
}

.tf-button-primary.active i,
.tf-button-primary:hover i {
    animation: 0.3s link-icon linear;
}

.tf-button-primary.style-green {
    background-color: #254EF0;
    color: var(--White);
}

.tf-button-primary.style-green:hover {
    background-color: #0a36e1;
}

.tf-button-primary.style-blue {
    background-color: var(--Fourth);
    color: var(--White);
}

.tf-button-primary.style-blue:hover {
    background-color: #112e29;
}

.tf-button-primary.style-bg-white {
    background-color: var(--White);
    border: 1px solid var(--Primary);
    color: var(--Secondary);
}

.tf-button-primary.style-bg-white.active,
.tf-button-primary.style-bg-white:hover {
    background-color: rgba(217, 183, 90, 0.0509803922);
}

.tf-button-primary.style-black {
    background-color: var(--Secondary);
    color: var(--White);
}

.tf-button-primary.style-black.active,
.tf-button-primary.style-black:hover {
    background-color: var(--Fourth);
}

.tf-button-primary.type-1 {
    padding: 17px 26px;
    border: 1px solid var(--Secondary);
    border-radius: 120px;
}

.tf-button-filter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border: 1px solid var(--Border);
    border-radius: 12px;
    color: var(--Secondary);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-button-filter i {
    font-size: 18px;
}

.tf-button-filter.border-radius {
    border-radius: 120px;
}

.button-arrow-right {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--White);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button-arrow-right i {
    font-size: 18px;
    color: var(--PrimaryDark);
}

.button-arrow-right:hover i {
    animation: 0.3s link-icon linear;
}

.button-arrow-right.style-third {
    background-color: var(--Primary);
}

.button-arrow-right.style-third i {
    color: var(--White);
}

.tf-button-icon-before {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    gap: 15px;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--Secondary);
    position: relative;
}

.tf-button-icon-before::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: var(--White);
    border-radius: 50px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0;
}

.tf-button-icon-before span {
    position: relative;
}

.tf-button-icon-before i {
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: var(--Secondary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-button-icon-before:hover i {
    color: var(--Primary);
}

.tf-button-icon-before:hover::before {
    width: 100% !important;
}

.tf-button-icon-before.style-1 {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    gap: 10px;
    padding-right: 0;
}

.tf-button-icon-before.style-1 i {
    width: 40px;
    height: 40px;
    font-size: 15px;
    border-radius: 40px;
    background-color: #F9F9F9;
}

.tf-button-icon-before.style-1 .title {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
}

.tf-button-icon-before.style-1:hover {
    color: var(--Third);
}

.tf-button-icon-before.style-1:hover i {
    color: var(--Third);
}

form textarea,
form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color] {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 28px;
    background-color: var(--White);
    border: 1px solid #E1E1E1;
    border-radius: 12px;
    color: var(--Secondary);
    overflow: hidden;
    margin-bottom: 0;
}

form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Secondary);
}

form input[type=button],
form input[type=reset],
form input[type=submit] {
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    background-color: var(--White);
    border-radius: 12px;
    color: var(--Secondary);
    overflow: hidden;
    display: inline-block;
    -webkit-appearance: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

form textarea.style-4,
form input[type=text].style-4,
form input[type=password].style-4,
form input[type=datetime].style-4,
form input[type=datetime-local].style-4,
form input[type=date].style-4,
form input[type=month].style-4,
form input[type=time].style-4,
form input[type=week].style-4,
form input[type=number].style-4,
form input[type=email].style-4,
form input[type=url].style-4,
form input[type=search].style-4,
form input[type=tel].style-4,
form input[type=color].style-4 {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    padding: 0 30px;
    height: 70px;
    border: 0;
    border-radius: 70px;
    color: var(--White);
    background-color: rgba(255, 255, 255, 0.1019607843);
}
form textarea.style-4::placeholder,
form input[type=text].style-4::placeholder,
form input[type=password].style-4::placeholder,
form input[type=datetime].style-4::placeholder,
form input[type=datetime-local].style-4::placeholder,
form input[type=date].style-4::placeholder,
form input[type=month].style-4::placeholder,
form input[type=time].style-4::placeholder,
form input[type=week].style-4::placeholder,
form input[type=number].style-4::placeholder,
form input[type=email].style-4::placeholder,
form input[type=url].style-4::placeholder,
form input[type=search].style-4::placeholder,
form input[type=tel].style-4::placeholder,
form input[type=color].style-4::placeholder {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--White);
}
form textarea.style-default,
form input[type=text].style-default,
form input[type=password].style-default,
form input[type=datetime].style-default,
form input[type=datetime-local].style-default,
form input[type=date].style-default,
form input[type=month].style-default,
form input[type=time].style-default,
form input[type=week].style-default,
form input[type=number].style-default,
form input[type=email].style-default,
form input[type=url].style-default,
form input[type=search].style-default,
form input[type=tel].style-default,
form input[type=color].style-default {
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background-color: transparent;
}
form.background-secondary {
    background-color: var(--Secondary) !important;
}

form.background-secondary .divider-1 {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

form.background-secondary input {
    color: var(--White) !important;
}

form.background-secondary input::placeholder {
    color: var(--White) !important;
}

form.background-secondary i {
    color: var(--White) !important;
}
form.background-secondary .wg-filter > .tf-button-filter {
    color: var(--White) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}
form textarea {
    /*height: 200px !important; */
}

form .cols {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

form .cols.cols-two>* {
    width: 50%;
}

form .style-absolute-right {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 5;
    transform: translateY(-60%);
}

form .style-absolute-right-center {
    position: absolute;
    top: 50%;
    right: 19px;
    z-index: 5;
    line-height: 1;
    transform: translateY(-50%);
}

form .style-absolute-left-center {
    position: absolute;
    top: 50%;
    left: 25px;
    z-index: 5;
    transform: translateY(-50%);
}

form .style-icon-default {
    padding: 0;
    background-color: transparent;
    border: 0;
    font-size: 17px;
}

form.form-search .button-submit button i {
    font-size: 17px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

form.form-search .button-submit button:hover i {
    color: var(--Primary);
}

form .style-subscribe {
    background-color: unset;
    border-radius: 0;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1019607843);
    padding-left: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    color: var(--White);
}

form .style-subscribe i {
    font-size: 19px;
}

form .style-subscribe.type-secondary {
    color: var(--Secondary);
}

form.form-subscribe input {
    padding-right: 160px !important;
}

fieldset {
    margin-bottom: 0;
    width: 100%;
}

fieldset.phone {
    position: relative;
}

fieldset.phone::after {
    position: absolute;
    content: "";
    border-radius: 12px;
    width: 40px;
    top: 1px;
    bottom: 1px;
    right: 1px;
    background-color: var(--White);
}

.form-style-has-title {
    position: relative;
}

.form-style-has-title .title {
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    color: var(--atomic);
    margin-bottom: 4px;
}

.form-style-has-title .nice-select {
    padding: 0;
    border: 0 !important;
    background-color: transparent;
}

.form-style-has-title .nice-select::after {
    right: 3px;
    margin-top: -8px;
}

.form-style-has-title .nice-select ul.list {
    width: 300px;
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.form-style-has-title .box-content-search {
    width: 540px;
}

.form-search-home5 {
    max-width: 1162px;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 40px;
    padding: 19px 20px 19px 30px;
    border-radius: 12px;
    background-color: var(--White);
    z-index: 50 !important;
}

.form-search-home5>.list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-grow: 1;
    gap: 20px;
    margin-top: 7px;
    justify-content: space-between;
}

.form-search-home5>.list>.divider-1 {
    background-color: var(--Border);
    width: 1px;
}

.form-search-home5>.list .group-form{
    min-width: 130px;
}

.form-search-home5 .button-submit button {
    padding: 19px 30px;
    background-color: var(--atomic);
    width: 100%;
    color: var(--White);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 17px;
}

.form-search-home5 .wg-filter {
    position: unset;
}

.form-search-home5.background-secondary .wg-filter input {
    color: var(--Secondary) !important;
}

.form-search-home5.background-secondary .wg-filter input::placeholder {
    color: var(--Secondary) !important;
}


.has-top-title {
    position: relative;
}

.has-top-title textarea:valid,
.has-top-title input:valid {
    border: 1px solid var(--Secondary) !important;
}

.has-top-title textarea:valid~label,
.has-top-title input:valid~label {
    opacity: 1;
    visibility: visible;
}

.has-top-title textarea[type=email].has-value,
.has-top-title input[type=email].has-value {
    border: 1px solid var(--Secondary) !important;
}

.has-top-title textarea[type=email].has-value~label,
.has-top-title input[type=email].has-value~label {
    opacity: 1;
    visibility: visible;
}

.has-top-title textarea~label,
.has-top-title input~label {
    position: absolute;
    width: unset;
    height: 15px;
    top: -8px;
    left: 10px;
    padding: 2px 10px 2px 10px;
    color: var(--Secondary);
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 3;
}

.has-top-title textarea~label::before,
.has-top-title input~label::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--White);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
}

.form-shop-checkout .nice-select>.list {
    max-width: unset;
}

body::-webkit-scrollbar {
    width: 0;
}

.main-content {
    padding-bottom: 200px;
}

.main-content.pt-200 {
    padding-top: 200px;
}

.main-content.style-1 {
    padding-bottom: 156px;
}

.main-content.spacing-20 {
    padding: 20px;
}

.main-content.px-110 {
    padding-left: 110px;
    padding-right: 110px;
}

.main-content.px-60 {
    padding-left: 60px;
    padding-right: 60px;
}

.main-content.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.footer {
    padding: 0 20px 20px 20px;
}

.footer #logo-footer {
    width: 200px;
    height: 56px;
}

.footer .footer-inner {
    background-color: var(--Secondary);
    border-radius: 24px;
    padding: 0 20px;
}

.footer .footer-inner .footer-inner-wrap {
    width: 100%;
    max-width: 1680px;
    margin: auto;
}

.footer .footer-inner .footer-inner-wrap .top-footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 41px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
}

.footer .footer-inner .footer-inner-wrap .top-footer .wg-social {
    margin-top: 2px;
}

.footer .footer-inner .footer-inner-wrap .center-footer {
    padding-top: 95px;
    padding-bottom: 87px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.footer .footer-inner .footer-inner-wrap .center-footer .ft-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: #fff;
    opacity: 0.5;
    margin-bottom: 42px;
}

.footer .footer-inner .footer-inner-wrap .center-footer .navigation-menu-footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.footer .footer-inner .footer-inner-wrap .center-footer .navigation-menu-footer li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 35px;
    color: #fff;
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-1 {
    width: 100%;
    max-width: 400px;
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-3 .ft-title,
.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-2 .ft-title {
    margin-bottom: 30px;
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-4 {
    width: 122px;
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-4 .ft-title {
    margin-bottom: 34px;
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-5 {
    width: 171px;
}

.footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-5 .ft-title {
    margin-bottom: 34px;
}

.footer .footer-inner .footer-inner-wrap .center-footer form .button-submit {
    top: 0 !important;
    transform: none !important;
}

.footer .footer-inner .footer-inner-wrap .text {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: #fff;
}

.footer .footer-inner .footer-inner-wrap.style-container {
    max-width: 1400px;
}

.footer .bottom-footer {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
    text-align: center;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer {
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer .icon {
    width: 60px !important;
    height: 60px;
    background-color: var(--atomic);
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer .icon i {
    font-size: 30px;
    color: var(--White);
    line-height: 0 !important;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer h2 {
    color: var(--White);
    margin-bottom: -4px;
    font-weight: 600;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer p {
    color: var(--White);
    margin-bottom: 26px;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer form {
    width: 100%;
    max-width: 567px;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer form input {
    height: 60px !important;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer form .button-submit {
    right: 30px;
}

.footer.style-1 .footer-inner .footer-inner-wrap .center-footer form .style-absolute-right-center {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.footer.style-1 .bottom-footer {
    border: none;
    background-color: var(--atomic);
    padding: 2px 1rem;
}

.footer.style-1 .bottom-footer .inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer.style-1 .bottom-footer p {
    color: var(--White);
    margin: 0;
}

.footer.style-1 .bottom-footer .list-social {
    padding: 0;
    margin: 0;
}

.footer.style-1.bg-fourth .footer-inner {
    background-color: var(--Fourth);
}

.footer.style-1.bg-fourth .footer-inner .footer-inner-wrap .center-footer .icon {
    background-color: var(--Primary);
}

.footer.style-1.bg-fourth .footer-inner .footer-inner-wrap .center-footer .icon i {
    color: var(--Fourth);
}

.footer.style-1.bg-fourth .bottom-footer {
    background-color: var(--Text);
}

.footer.style-1.background-white .footer-inner {
    background-color: var(--White);
}

.footer.style-1.background-white .footer-inner .footer-inner-wrap .center-footer .icon {
    background-color: var(--Secondary);
}

.footer.style-1.background-white .footer-inner .footer-inner-wrap .center-footer .icon i {
    color: var(--Primary);
}

.footer.style-1.background-white .footer-inner .footer-inner-wrap .center-footer h2,
.footer.style-1.background-white .footer-inner .footer-inner-wrap .center-footer p {
    color: var(--Secondary);
}

.footer.style-1.background-white .bottom-footer {
    background-color: rgb(249, 249, 249);
}

.footer.style-1.background-white .bottom-footer p {
    color: var(--Secondary);
}

.footer.style-1.background-white.type-1 .footer-inner {
    background-color: #F9F9F9;
}

.footer.style-1.background-white.type-1 .bottom-footer {
    background-color: #F2F1F1;
}

.footer.style-full {
    padding: 0;
}

.footer.style-full .footer-inner {
    border-radius: 0;
}

.blog-single-wrap .image-head {
    margin-bottom: 40px;
    position: relative;
}
.blog-single-wrap .image-head:after{
    content: '';
    position: absolute;
    background-image: linear-gradient(to bottom, #000, transparent);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.blog-single-wrap .image-head img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.blog-single-wrap .blog-single-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 51px;
    margin-bottom: 200px;
}

.blog-single-wrap .blog-single-inner h2 {
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-single-wrap .blog-single-inner h4 {
    margin-bottom: 24px;
}

.blog-single-wrap .blog-single-inner .grid-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}

.blog-single-wrap .blog-single-inner .grid-image .right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-single-wrap .blog-single-inner .grid-image .image img {
    width: 100%;
    border-radius: 12px;
}

.blog-single-wrap .blog-single-inner .grid-image-1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}

.blog-single-wrap .blog-single-inner .grid-image-1 .image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.blog-single-wrap .blog-single-inner .grid-image-1 .image p {
    text-align: center;
}

.blog-single-wrap .blog-single-inner .bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 19px;
    gap: 20px;
}

.blog-single-wrap .blog-single-inner .bottom .share {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 31px;
}

.blog-single-wrap .blog-single-inner .bottom .share span {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary);
}

.blog-single-wrap .blog-single-inner .bottom .share ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.blog-single-wrap .blog-single-inner .bottom .share ul li {
    position: relative;
}

.blog-single-wrap .blog-single-inner .bottom .share ul li:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--Fourth);
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
}

.blog-single-wrap .blog-single-inner .bottom ul.tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-single-wrap .blog-single-inner .bottom ul.tags li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 0 20px;
    border-radius: 8px;
    background-color: #F9F9F9;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
}

.blog-single-wrap .blog-single-inner .box-admin {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: #F9F9F9;
    border-radius: 16px;
    padding: 40px;
    margin-top: 29px;
}

.blog-single-wrap .blog-single-inner .box-admin .image {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-single-wrap .blog-single-inner .box-admin .content .name {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 5px;
}

.blog-single-wrap .blog-single-inner .nav-links {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.blog-single-wrap .blog-single-inner .nav-links>svg {
    margin-right: 13px;
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation>a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--Secondary);
    border-radius: 40px;
    width: 60px;
    height: 39px;
    margin-top: 5px;
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation>a i {
    font-size: 18px;
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation .content .title-post {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 3px;
}

.blog-single-wrap .blog-single-inner .nav-links .post-navigation.next-post .content {
    text-align: end;
}

.account-bar {
    padding-top: 91px;
    padding-bottom: 94px;
    background-color: #FFF8F6;
    border-radius: 24px;
}

.account-bar h3 {
    font-size: 30px;
    margin-bottom: 17px;
}

.account-bar .text {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
}

.account-bar.style-1 {
    background-color: var(--Fourth);
}

.account-bar.style-1 h3,
.account-bar.style-1 .text {
    color: var(--White);
}


.account-bar.type-container {
    background-color: unset;
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 70px;
}

.account-bar.type-container .wrap {
    background-color: var(--atomic);
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 22px;
}

.account-bar.background-secondary {
    background-color: var(--Secondary);
}

.account-bar.background-secondary h3,
.account-bar.background-secondary .text {
    color: var(--White);
}
.flat-cities .inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 28px;
    grid-template-rows: auto;
    grid-template-areas: "aa aa bb cc" "dd ee ff ff";
}
.flat-cities .inner .item-1 {
    grid-area: aa;
}
.flat-cities .inner .item-2 {
    grid-area: bb;
}
.flat-cities .inner .item-3 {
    grid-area: cc;
}
.flat-cities .inner .item-4 {
    grid-area: dd;
}
.flat-cities .inner .item-5 {
    grid-area: ee;
}
.flat-cities .inner .item-6 {
    grid-area: ff;
}
.flat-cities .inner .cities-item {
    margin-bottom: 0;
}
.flat-cities .inner.style-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 28px;
    grid-template-areas: "aa bb cc" "aa dd ee";
}
.flat-cities .inner.style-1 .cities-item img {
    height: 320px;
}
.flat-cities .inner.style-1 .cities-item.item-1 img {
    height: 670px;
}
.flat-cities.style-1 {
    background-color: #F7F7F7;
    padding-top: 212px;
}
.flat-cities.style-1 .wrap {
    padding-left: 46px;
    padding-right: 46px;
}
.flat-cities.style-2 {
    background-color: #F7F7F7;
    padding-top: 189px;
    padding-bottom: 173px;
}
.flat-cities.style-2 .cities-item img {
    height: 330px;
}
.flat-cities.style-3 .inner {
    margin-bottom: 196px;
}
.flat-cities.style-4 {
    padding-top: 114px;
    padding-bottom: 0;
}
.flat-cities.style-4 .cities-item {
    height: 300px;
}
.flat-cities.style-4 .cities-item .content {
    top: 27px;
    left: 30px;
}
.flat-cities.style-4 .cities-item .content p {
    font-size: 13px;
    font-weight: 400;
    line-height: 15.23px;
    margin-bottom: 6px;
}
.flat-cities.style-4 .cities-item .content h4 {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
}
.flat-cities.style-4 .cities-item a {
    left: 30px;
}
.flat-cities.style-4 .cities-item img {
    height: 300px;
}
.flat-cities.style-4.py-200 {
    padding-top: 200px;
    padding-bottom: 200px;
}
/* comp*/
.flat-news {
    background-color: #fff;
    border-radius: 0;
    padding-bottom: 0;
}

.flat-news .wg-blog {
    margin-bottom: 0;
}

.work-with-us {
    padding-top: 80px;
    padding-bottom: 0;
}

.work-with-us .wrap {
    gap: 15px;
    margin-bottom: 0;
    padding-left: 14px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

.work-with-us .widget-tabs {
    margin-bottom: 0;
}

.work-with-us .widget-tabs .widget-menu-tab {
    margin-bottom: 50px !important;
}

.work-with-us .widget-tabs .box-dream {
    margin-bottom: 0;
}

.work-with-us.style-1 {
    padding-top: 200px;
    padding-bottom: 193px;
}

.work-with-us.style-1 .wrap {
    padding-left: 0;
    margin-bottom: 0;
}

.work-with-us.style-1 .box-icon {
    width: 100%;
    max-width: 342px;
}

.work-with-us.style-2 {
    padding-top: 80px;
    padding-bottom: 0;
}

.work-with-us.style-2 .wrap {
    padding-left: 0;
    margin-bottom: 0;
}

.work-with-us.style-3 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.work-with-us.style-4 {
    padding-top: 80px;
    padding-bottom: 0;
}

.work-with-us.style-4 .list-item {
    border-top: 1px solid var(--Border);
}

.flat-explore {
    padding-top: 80px;
    padding-bottom: 80px;
}

.flat-explore .wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-evenly;
    gap: 19px;
}

.flat-explore .wrap .cities-item {
    margin-bottom: 0;
}

.flat-counter {
    padding-bottom: 0;
}

.flat-brand.bg-fourth {
    background-color: var(--Fourth);
    padding-top: 64px;
    padding-bottom: 78px;
}

.flat-brand.bg-fourth p {
    margin-bottom: 60px;
    text-align: center;
    color: var(--White);
    letter-spacing: 0.8px;
}

.flat-brand.background-secondary {
    background-color: var(--Secondary);
    padding-top: 102px;
    padding-bottom: 92px;
    border-radius: 16px;
}

.flat-brand.background-secondary p {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--White);
}

.flat-question {
    padding-top: 80px;
    padding-bottom: 80px;
}

.flat-question .flat-accordion {
    /*max-width: 804px;*/
    margin-left: auto;
    margin-right: auto;
}

.flat-question.style-1 {
    padding-top: 80px;
}

.flat-question.style-1 .widget-tabs .widget-menu-tab {
    margin-bottom: 50px;
}

.top {
    position: relative;
    z-index: 10;
    padding-bottom: 21px;
}

.top h3 {
    margin-bottom: 3px;
}

.top .sub {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 886px;
}

.property-single-wrap .wrap-gallery-image {
    margin-bottom: 45px;
}

.property-single-wrap .head-title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 39px;
}

.property-single-wrap .head-title h3 {
    margin-top: -9px;
    margin-bottom: 9px;
    text-transform: capitalize;
}

.property-single-wrap .head-title .location {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.property-single-wrap .head-title .location .icon i {
    font-size: 20px;
    color: var(--Text);
}

.property-single-wrap .head-title .location .text-content {
    color: var(--Text);
}

.property-single-wrap .head-title .square {
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    text-align: right;
    color: var(--Secondary);
    margin-top: -4px;
    margin-bottom: 4px;
}

.property-single-wrap .head-title .price {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    text-align: right;
    color: var(--Secondary);
}

.property-single-wrap .head-title.style-white .location .icon i,
.property-single-wrap .head-title.style-white .location .text-content,
.property-single-wrap .head-title.style-white .square,
.property-single-wrap .head-title.style-white .price,
.property-single-wrap .head-title.style-white h3 {
    color: var(--White);
}

.property-single-wrap .content-wrap .box-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 10px;
    margin-bottom: 30px;
}

.property-single-wrap .content-wrap .box-items .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    height: 60px;
    padding: 20px;
    border-radius: 8px;
    background-color: #F9F9F9;
}

.property-single-wrap .content-wrap .box-items .item .icon i {
    font-size: 16px;
    color: var(--Secondary);
}

.property-single-wrap .content-wrap .box-items .item .text-content {
    color: var(--Secondary);
}

.property-single-wrap .content-wrap h4 {
    margin-bottom: 24px;
}

.property-single-wrap .content-wrap .tf-button-green {
    height: 40px;
}

.property-single-wrap .content-wrap .desc {
    margin-bottom: 30px;
}

.property-single-wrap .content-wrap .address {
    margin-bottom: 30px;
}

.property-single-wrap .content-wrap .address>.flex {
    margin-bottom: 32px;
}

.property-single-wrap .content-wrap .list-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 60px;
}

.property-single-wrap .content-wrap .list-item .item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--Border);
}

.property-single-wrap .content-wrap .list-item .item .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Secondary);
}
.property-single-wrap .content-wrap .list-item .item p {
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: var(--Secondary);
    margin: 0;
}
.property-single-wrap .content-wrap .attachments {
    margin-bottom: 73px;
}
.property-single-wrap .content-wrap .attachments h4 {
    margin-bottom: 32px;
}
.property-single-wrap .content-wrap .details {
    margin-bottom: 30px;
}
.property-single-wrap .content-wrap .energy {
    margin-bottom: 73px;
}
.property-single-wrap .content-wrap .energy h4 {
    margin-bottom: 33px;
}
.property-single-wrap .content-wrap .energy ul {
    margin-bottom: 40px;
}

.property-single-wrap .content-wrap .energy ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 11px 20px;
    min-height: 51px;
}

.property-single-wrap .content-wrap .energy ul li p {
    margin-left: auto;
}

.property-single-wrap .content-wrap .energy ul li .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Secondary);
}

.property-single-wrap .content-wrap .energy ul li:nth-child(2n+2) {
    background-color: #F9F9F9;
}

.property-single-wrap .content-wrap .features {
    margin-bottom: 67px;
}

.property-single-wrap .content-wrap .features>p {
    margin-bottom: 22px;
}

.property-single-wrap .content-wrap .features h5 {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
}

.property-single-wrap .content-wrap .features .wrap-check-ellipse {
    margin-bottom: 16px;
}

.property-single-wrap .content-wrap .schedule {
    margin-bottom: 72px;
}

.property-single-wrap .content-wrap .schedule h4 {
    margin-bottom: 33px;
}

.property-single-wrap .content-wrap .plans {
    margin-bottom: 72px;
}

.property-single-wrap .content-wrap .plans h4 {
    margin-bottom: 33px;
}

.property-single-wrap .content-wrap .plans .widget-tabs .widget-menu-tab {
    margin-bottom: 30px;
}

.property-single-wrap .content-wrap .plans .icons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.property-single-wrap .content-wrap .plans .icons .item {
    width: 150px;
    height: 126px;
    padding: 28px 30px 30px 30px;
    border-radius: 16px;
    border: 1px solid var(--Border);
    color: var(--Secondary);
}

.property-single-wrap .content-wrap .plans .icons .item i {
    font-size: 24px;
}

.property-single-wrap .content-wrap .plans .icons .item .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-top: 3px;
    margin-bottom: -2px;
}

.property-single-wrap .content-wrap .plans img {
    margin-top: 22px;
}

.property-single-wrap .content-wrap .calculator {
    margin-bottom: 81px;
}

.property-single-wrap .content-wrap .calculator .pie-chart {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 55px;
    margin-bottom: 26px;
}

.property-single-wrap .content-wrap .calculator .pie-chart #morris-donut-1 {
    width: 260px;
    height: 260px;
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 59px;
    padding-top: 100px;
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item {
    position: relative;
    padding-left: 22px;
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item::before {
    position: absolute;
    content: "";
    top: 3px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    margin-bottom: 4px;
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item p {
    color: var(--Fourth);
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item:nth-child(1)::before {
    background-color: var(--Primary);
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item:nth-child(2)::before {
    background-color: #58A0E5;
}

.property-single-wrap .content-wrap .calculator .pie-chart .wrap-note .item:nth-child(3)::before {
    background-color: #EB6E85;
}

.property-single-wrap .content-wrap .calculator form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    padding-right: 16px;
}

.property-single-wrap .content-wrap .video {
    margin-bottom: 74px;
}

.property-single-wrap .content-wrap .video h4 {
    margin-bottom: 32px;
}

.property-single-wrap .content-wrap .map {
    margin-bottom: 74px;
}

.property-single-wrap .content-wrap .map h4 {
    margin-bottom: 32px;
}

.property-single-wrap .content-wrap .map .wrap-map-v1 {
    height: 500px;
    min-height: unset;
    padding: 0;
    margin: 0;
    border-radius: 16px;
}

.property-single-wrap .content-wrap .tour {
    margin-bottom: 81px;
}

.property-single-wrap .content-wrap .tour h4 {
    margin-bottom: 32px;
}

.property-single-wrap .content-wrap .tour .image img {
    border-radius: 16px;
}

.property-single-wrap .content-wrap .page-views {
    margin-bottom: 98px;
}

.property-single-wrap .content-wrap .walk-score {
    margin-bottom: 73px;
}

.property-single-wrap .content-wrap .walk-score h4 {
    margin-bottom: 32px;
}

.property-single-wrap .content-wrap .nearby {
    margin-bottom: 80px;
}

.property-single-wrap .content-wrap .nearby h4 {
    margin-bottom: 29px;
}

.property-single-wrap .content-wrap .nearby .widget-tabs .widget-menu-tab {
    margin-bottom: 42px;
}

.property-single-wrap .content-wrap .nearby .widget-tabs .widget-menu-tab .item-title {
    padding-bottom: 17px;
}

.property-single-wrap .content-wrap .nearby .nearby-item h4 {
    margin-bottom: 0;
}

.property-single-wrap .content-wrap .reviews-wrap {
    margin-top: 0;
    margin-bottom: 72px;
}

.property-single-wrap .content-wrap .reviews-wrap .tf-button-green {
    height: 33px;
}

.property-single-wrap .content-wrap .leave-a-review {
    margin-top: 0;
    margin-bottom: 72px;
}

.property-single-wrap .content-wrap .smilar-homes h4 {
    margin-bottom: 33px;
}

.grid-section-4 {
    display: grid !important;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-section-1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}

.grid-section-1>.wg-box:first-child {
    width: 66%;
}

.message-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
}

.message-wrap>.wg-box.left {
    width: 27.5%;
    min-width: 300px;
    padding: 40px 39px 28px;
}

.message-wrap>.wg-box.left>form {
    margin-bottom: 30px;
}

.message-wrap>.wg-box.left>form input {
    height: 50px;
    border-radius: 12px;
}

.message-wrap>.wg-box.left>ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 32px;
    cursor: pointer;
}

.message-wrap>.wg-box.right {
    flex-grow: 1;
    padding: 21px 30px 39px;
}

.message-wrap>.wg-box.right>.head {
    padding-left: 11px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 19px;
    border-bottom: 1px solid rgb(233, 233, 233);
}

.message-wrap>.wg-box.right>.head>a {
    font-family: "Poppins", sans-serif;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.03px;
    color: rgb(232, 84, 62);
}

.message-wrap>.wg-box.right>.chat {
    height: 562px;
    padding-left: 11px;
    padding-top: 40px;
    overflow-y: auto;
    display: none;
}

.message-wrap>.wg-box.right>.chat.active-chat {
    display: block;
}

.message-wrap>.wg-box.right>.chat::-webkit-scrollbar {
    width: 0px;
}

.message-wrap>.wg-box.right>.chat .list-message {
    margin-bottom: 15px;
}

.message-wrap>.wg-box.right>.chat .list-message .name {
    margin-bottom: 0;
}

.message-wrap>.wg-box.right>.chat .list-message.style-me .message-item {
    flex-direction: row-reverse;
}

.message-wrap>.wg-box.right>.chat .list-message.style-me .message-item>.flex {
    flex-direction: row-reverse;
}

.message-wrap>.wg-box.right>.chat .list-message.style-me .message-item>.flex>.flex {
    flex-direction: row-reverse;
}

.message-wrap>.wg-box.right>.chat .bubble {
    border-radius: 8px;
    background-color: rgb(249, 249, 249);
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 22px;
    word-break: break-all;
}

.message-wrap>.wg-box.right>.chat .bubble.you {
    max-width: 474px;
}

.message-wrap>.wg-box.right>.chat .bubble.me {
    max-width: 463px;
    margin-left: auto;
    text-align: end;
    background-color: rgba(231, 200, 115, 0.1);
}

.message-wrap>.wg-box.right>.write {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgb(233, 233, 233);
}

.message-wrap>.wg-box.right>.write a {
    flex-shrink: 0;
}

.wg-box {
    padding: 39px;
    border-radius: 24px;
    border: 1px solid var(--Border);
    background-color: var(--White);
}

.wg-box>h4 {
    margin-bottom: 33px;
    margin-top: -8px;
}

.wg-box.pl-44 {
    padding-left: 44px;
}

.wg-box.pr-45 {
    padding-right: 45px;
}

.wg-box.pr-29 {
    padding-right: 29px;
}

.my-profiles-wrap .avatar-image {
    margin-bottom: 40px;
}

.my-profiles-wrap .form-profiles .description textarea {
    height: 230px !important;
}

.my-profiles-wrap .form-profiles .wrap-map-v1 {
    height: 550px;
    min-height: 550px;
    margin: 0;
    width: 100%;
}

.my-profiles-wrap .form-profiles .cols {
    justify-content: start;
}

.my-profiles-wrap .form-profiles .cols.small>* {
    max-width: 300px;
}

.form-bacsic-infomation textarea {
    height: 230px !important;
}

.form-location .wrap-map-v1 {
    height: 550px;
    min-height: 550px;
    margin: 0;
    width: 100%;
}

.form-location .cols {
    justify-content: start;
}

.form-location .cols.small>* {
    max-width: 300px;
}

.form-media {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.form-media .upload-image-wrap {
    margin-top: -8px;
}

.form-media textarea {
    height: 230px !important;
}

.form-amenities .grid-checkbox {
    max-width: 1260px;
    margin-top: -3px;
    gap: 12px 30px;
    margin-bottom: 35px;
}

.form-floors {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-floors textarea {
    height: 230px !important;
}

.form-floors .upload-image-wrap {
    margin-top: -8px;
}

.grid-favorities-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 28px;
    padding-right: 11px;
}

.shop-list-wrap .top {
    margin-top: -9px;
}

.shop-list-wrap .top .sub {
    max-width: unset;
}

.shop-list-wrap .shop-item {
    margin-bottom: 26px;
}

.shop-list-wrap .wg-pagination {
    margin-top: 70px;
}
.wg-pagination{
    padding: 0;
}

.shop-detail-wrap {
    padding-top: 100px;
}

.shop-detail-wrap .bottom {
    padding-top: 94px;
    padding-bottom: 190px;
}

.shop-detail-wrap .bottom .widget-tabs .widget-menu-tab {
    margin-bottom: 32px;
}

.flat-products {
    padding-top: 0;
    padding-bottom: 0;
}

.form-shop-cart .bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.form-shop-cart .bottom fieldset {
    max-width: 270px;
}

.form-shop-cart .bottom>a {
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    padding: 12px 24px;
}

.sidebar-shop {
    max-width: 400px;
    margin-left: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-shop.w-420 {
    max-width: 420px;
}

.sidebar-shop .title {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: 13px;
}

.sidebar-shop .text {
    font-size: 15px;
    font-weight: 400;
    line-height: 50px;
    color: var(--Secondary);
}

.sidebar-shop .text-1 {
    font-size: 15px;
    font-weight: 500;
    line-height: 50px;
    color: var(--Secondary);
}

.sidebar-shop .sidebar-shop-item {
    border-radius: 16px;
    padding: 32px 40px 40px 40px;
    border: 1px solid var(--Border);
}

.sidebar-shop .sidebar-shop-item.cart-totals>a {
    margin-top: 19px;
}

.sidebar-shop .sidebar-shop-item.your-order .text-1 {
    line-height: 18px;
}

.sidebar-shop .sidebar-shop-item.your-order .text {
    line-height: 35px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(1) {
    margin-bottom: 31px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(2) {
    margin-bottom: 13px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(3) {
    margin-bottom: 6px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(5) {
    margin-bottom: 13px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(6) {
    margin-bottom: 13px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(7) {
    margin-bottom: 17px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(8) {
    margin-bottom: 14px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(9) {
    margin-bottom: 22px;
}

.sidebar-shop .sidebar-shop-item.your-order>div:nth-child(10) {
    margin-bottom: -5px;
}

.sidebar-shop .sidebar-shop-item.payment .title {
    margin-bottom: 29px;
}

.sidebar-shop .sidebar-shop-item.payment ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 10px;
}

.form-shop-checkout h4 {
    margin-top: -8px;
    margin-bottom: 32px;
}

.form-shop-checkout .additional {
    margin-top: 101px;
}

.form-shop-checkout .additional textarea {
    height: 290px !important;
}

.agency-list-wrap .form-sidebar-left {
    max-width: 390px;
}

.agency-list-wrap .sidebar {
    padding-left: 0;
    max-width: 390px;
    margin-top: 30px;
}

.agency-list-wrap .top {
    margin-top: -8px;
}

.agency-list-wrap .top .sub {
    max-width: unset;
}

.agency-single-wrap .wrap-inner {
    margin-top: -7px;
}

.agency-single-wrap .wrap-inner h4 {
    margin-bottom: 24px;
}

.agency-single-wrap .wrap-inner>p {
    margin-bottom: 64px;
}

.agency-single-wrap .wrap-inner .grid-box-dream {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 28px;
    margin-top: 32px;
    margin-bottom: 79px;
}

.agency-single-wrap .wrap-inner .reviews-wrap {
    margin-bottom: 73px;
}

.agency-single-wrap .wrap-inner .list-agents {
    margin-top: -7px;
    margin-bottom: 80px;
}

.agency-single-wrap .wrap-inner .list-agents h4 {
    margin-bottom: 32px;
}

.agency-single-wrap .sidebar {
    padding-left: 0;
    max-width: 390px;
    margin-left: auto;
}

.vision-mission {
    padding-top: 191px;
    padding-bottom: 178px;
}

.vision-mission .content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px 200px;
}

.vision-mission .content>div {
    width: 100%;
    max-width: 600px;
}

.vision-mission .content h2 {
    margin-bottom: 22px;
}

.flat-pricing,
.flat-compare {
    padding-top: 100px;
}

.send-message {
    padding-bottom: 196px;
}

.send-message .heading-section {
    margin-bottom: 35px;
}

.send-message form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /*gap: 30px;*/
    flex-direction: column;
}

.send-message form textarea {
    height: 230px !important;
}

.send-message form>.checkbox-item {
    margin-top: -3px;
    margin-bottom: -5px;
}

.wg-component h4 {
    margin-bottom: 50px;
}

.page-invoice {
    padding-top: 100px;
    padding-bottom: 200px;
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    color: var(--Secondary);
}

.page-invoice .btns-print {
    margin-bottom: 36px;
}

.page-invoice .btns-print a {
    margin-left: auto;
}

.page-invoice .wrap {
    border-radius: 24px;
    box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.0509803922);
    background-color: var(--White);
}

.page-invoice .wrap .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.page-invoice .wrap>.inner {
    padding: 131px 100px 104px;
    position: relative;
}

.page-invoice .wrap>.inner>.invoice {
    position: absolute;
    top: 127px;
    left: 751px;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 36.46px;
    color: var(--Secondary);
}

.page-invoice .wrap>.inner>.number {
    position: absolute;
    top: 130px;
    right: 95px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    text-align: right;
    color: var(--Secondary);
}

.page-invoice .wrap>.inner>.logo {
    margin-bottom: 44px;
}

.page-invoice .wrap>.inner>.logo img {
    width: 180px;
}

.page-invoice .wrap>.inner>.infor-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 69px;
}

.page-invoice .wrap>.inner>.infor-item>div:first-child {
    width: 651px;
    flex-shrink: 0;
}

.page-invoice .wrap>.inner>.infor-item>div p {
    margin-bottom: 3px;
}

.page-invoice .wrap>.inner>.infor-item>div h4 {
    margin-bottom: 23px;
}

.page-invoice .wrap>.inner>.infor-item.item-2 {
    margin-bottom: 41px;
}

.page-invoice .wrap>.inner>.infor-item.item-2 .text {
    margin-bottom: 6px;
}

.page-invoice .wrap>.inner>.infor-item.item-2>div:first-child p {
    max-width: 218px;
}

.page-invoice .wrap>.inner .table-total-due .title {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: var(--Secondary);
}

.page-invoice .wrap>.inner .table-total-due>.head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 18px 87px 24px 39px;
    border-radius: 8px;
    background-color: #F9F9F9;
}

.page-invoice .wrap>.inner .table-total-due>.head>div {
    width: 115px;
}

.page-invoice .wrap>.inner .table-total-due>.head>div:nth-child(1) {
    width: 438px;
}

.page-invoice .wrap>.inner .table-total-due>.head>div:nth-child(2) {
    width: 175px;
}

.page-invoice .wrap>.inner .table-total-due>.head>div:nth-child(3) {
    width: 116px;
}

.page-invoice .wrap>.inner .table-total-due>.head>div:nth-child(4) {
    text-align: end;
}

.page-invoice .wrap>.inner .table-total-due>ul>li {
    height: 71px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 23px 79px 19px 39px;
    border-bottom: 1px solid var(--Border);
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div {
    width: 116px;
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div:nth-child(1) {
    width: 440px;
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div:nth-child(2) {
    width: 177px;
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div:nth-child(3) {
    width: 119px;
}

.page-invoice .wrap>.inner .table-total-due>ul>li>div:nth-child(4) {
    text-align: end;
}

.page-invoice .wrap>.inner .table-total-due>ul>li:nth-child(2) {
    height: 75px;
    padding: 17px 79px 19px 39px;
}

.page-invoice .wrap>.inner .table-total-due>.total {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    padding: 18px 79px 18px 39px;
}

.page-invoice .wrap>.inner .table-total-due>.total .title {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
}

.page-invoice .wrap>.bottom {
    padding-top: 45px;
    padding-bottom: 43px;
    border-top: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 63px;
}

.page-invoice .wrap>.bottom p {
    font-family: "Poppins", sans-serif;
}

.layout-wrap {
    min-height: 100vh;
}

.layout-wrap .layout-wrap-inner .section-menu-left {
    position: fixed;
    z-index: 50;
    top: 141px;
    left: 20px;
    bottom: 20px;
    width: 331px;
    border-radius: 24px;
    padding: 40px;
    background-color: var(--Fourth);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content {
    height: 100%;
    overflow-y: auto;
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content::-webkit-scrollbar {
    width: 0px;
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    height: 60px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--White);
    padding-left: 20px;
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li a i {
    font-size: 20px;
}

.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li.active,
.layout-wrap .layout-wrap-inner .section-menu-left .menu-content ul li:hover {
    background: rgba(255, 255, 255, 0.0509803922);
}

.layout-wrap .layout-wrap-inner .section-content-right {
    flex-grow: 1;
    padding-left: 371px;
    padding-top: 121px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.layout-wrap .layout-wrap-inner .section-content-right>h3 {
    margin-top: 31px;
    margin-bottom: 5px;
}

.layout-wrap .layout-wrap-inner .section-content-right>.text-content {
    margin-bottom: 33px;
}

.layout-wrap .layout-wrap-inner .section-content-right>.bottom-page {
    padding: 32px 0 11px;
}

.layout-wrap .layout-wrap-inner .section-content-right>.bottom-page p {
    text-align: center;
}

.layout-wrap .layout-wrap-inner .section-content-right form .nice-select>.list {
    max-width: unset;
}

.btn-canvas {
    position: fixed;
    top: 141px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--White);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: none;
}

.btn-canvas .text-content {
    display: none;
}

.btn-canvas span {
    width: 23px;
    height: 10px;
    position: relative;
}

.btn-canvas span::before,
.btn-canvas span::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-canvas span::before {
    top: 0;
}

.btn-canvas span::after {
    bottom: 0;
}

.btn-canvas.active {
    left: 351px;
}

.btn-canvas.active span::before {
    transform: rotate3d(0, 0, 1, 45deg);
    top: 50%;
}

.btn-canvas.active span::after {
    transform: rotate3d(0, 0, 1, -45deg);
    top: 50%;
}

.widget-tabs .widget-menu-tab {
    overflow-x: auto;
    overflow-y: hidden;
}


.widget-tabs.style-1 .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.widget-tabs.style-1 .widget-menu-tab .item-title {
    padding: 10px 20px;
    border-radius: 41px;
    border: 1px solid transparent;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget-tabs.style-1 .widget-menu-tab .item-title .inner {
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--Text);
}

.widget-tabs.style-1 .widget-menu-tab .item-title.active {
    /*border: 1px solid #d9e5ff;*/
    /*background-color: #f0f8ff;*/
    border: 1px solid var(--Primary);
    background-color: var(--Primary);
}

.widget-tabs.style-2 .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 31px;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 37px;
}

.widget-tabs.style-2 .widget-menu-tab .item-title {
    position: relative;
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: #050B20;
    padding-bottom: 12px;
    cursor: pointer;
}

.widget-tabs.style-2 .widget-menu-tab .item-title::after {
    position: absolute;
    content: "";
    bottom: -1px;
    left: auto;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget-tabs.style-2 .widget-menu-tab .item-title.active::after,
.widget-tabs.style-2 .widget-menu-tab .item-title:hover::after {
    width: 100%;
    left: 0px;
    right: auto;
}

.widget-tabs.style-2.type-small .widget-menu-tab {
    border-bottom: 0;
}

.widget-tabs.style-2.type-small .widget-menu-tab .item-title {
    font-size: 15px;
    line-height: 18px;
}

.widget-tabs.style-3 .widget-menu-tab {
    padding: 7px 10px 6px;
    background-color: rgb(249, 249, 249);
    border-radius: 120px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.widget-tabs.style-3 .widget-menu-tab .item-title {
    padding: 11px 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--Text);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 120px;
}

.widget-tabs.style-3 .widget-menu-tab .item-title.active {
    background-color: var(--atomic);
    color: var(--White);
    box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.05);
}
.w-fit{
    width: fit-content;
}
.widget-tabs.style-4 .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.widget-tabs.style-4 .widget-menu-tab .item-title {
    padding: 15px 35px;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--Text);
    border: 1px solid var(--Border);
    background-color: var(--White);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget-tabs.style-4 .widget-menu-tab .item-title:first-child {
    border-radius: 12px 0px 0px 12px;
}

.widget-tabs.style-4 .widget-menu-tab .item-title:last-child {
    border-radius: 0px 12px 12px 0px;
}

.widget-tabs.style-4 .widget-menu-tab .item-title.active {
    background-color: rgb(255, 248, 246);
    border-color: var(--Secondary);
}

.widget-tabs.style-img {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 11px;
}

.widget-tabs.style-img .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: unset;
}

.widget-tabs.style-img .widget-menu-tab .item-title {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.widget-tabs.style-img .widget-menu-tab .item-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-tabs.style-img .widget-menu-tab .item-title.active {
    border: 1px solid var(--Secondary);
}

.widget-tabs.style-img .widget-content-tab {
    width: 100%;
}

.widget-tabs.style-img .widget-content-tab .widget-content-inner {
    height: 100%;
}

.widget-tabs.style-img .widget-content-tab .widget-content-inner img {
    border-radius: 16px;
    width: 100%;
    max-width: 661px;
    height: 100%;
    object-fit: cover;
}

.widget-tabs.style-5 .widget-menu-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.widget-tabs.style-5 .widget-menu-tab .item-title {
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    background-color: var(--Secondary);
    color: var(--White);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget-tabs.style-5 .widget-menu-tab .item-title:first-child {
    border-radius: 12px 0px 0px 0px;
}

.widget-tabs.style-5 .widget-menu-tab .item-title:last-child {
    border-radius: 0px 12px 0px 0px;
}

.widget-tabs.style-5 .widget-menu-tab .item-title.active {
    background-color: var(--White);
    color: var(--Secondary);
}

.widget-tabs.style-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

.widget-tabs.style-row .form-search {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    flex-grow: 1;
}

.widget-tabs.style-row .form-search .input-search {
    position: relative;
    width: 330px;
    flex-shrink: 0;
    height: 54px;
}

.widget-tabs.style-row .form-search>.nice-select {
    border-radius: 120px;
    padding: 12px 49px 12px 27px;
}

.widget-tabs.style-row .form-search>.nice-select::after {
    top: 47%;
    right: 30px;
}

.widget-tabs.style-row .form-search>.nice-select ul.list {
    width: 300px;
}

.widget-tabs.style-row .widget-menu-tab {
    height: 54px;
}

.widget-tabs-1.style-3 .widget-menu-tab-1 {
    padding: 7px 10px 6px;
    background-color: rgb(249, 249, 249);
    border-radius: 120px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.widget-tabs-1.style-3 .widget-menu-tab-1 .item-title-1 {
    padding: 11px 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--Text);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 120px;
}

.widget-tabs-1.style-3 .widget-menu-tab-1 .item-title-1.active-1 {
    background-color: var(--White);
    box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.05);
}

.offcanvas-start {
    width: 370px;
}

.modal-backdrop {
    display: none !important;
}

.modal {
    background-color: rgba(26, 26, 26, 0.6);
}

.modal .modal-dialog.modal-lg {
    max-width: 900px;
}

.modal .modal-dialog .modal-content {
    position: relative;
    border-radius: 12px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    border: 0;
    max-width: 500px;
    overflow: hidden;
    transform: translateY(3px);
    margin: auto;
}
.modal .modal-dialog.modal-lg .modal-content{
    max-width: 1200px;
}
.modal .modal-dialog .modal-content .btn-hide-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(249, 249, 249);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal .modal-dialog .modal-content .btn-hide-modal i {
    font-size: 12px;
    color: var(--Secondary);
}

.modal .modal-dialog .modal-content .image-left {
    width: 386px;
    flex-shrink: 0;
    position: relative;
}

.modal .modal-dialog .modal-content .image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal .modal-dialog .modal-content .image-left h3 {
    position: absolute;
    top: 45px;
    left: 30px;
    right: 30px;
    color: var(--Secondary);
    text-align: center;
}

.modal .modal-dialog .modal-content .content-right {
    padding: 48px 30px 20px 30px;
    width: 100%;
}

.modal .modal-dialog .modal-content .content-right h4 {
    margin-bottom: 22px;
}

.modal .modal-dialog .modal-content .content-right form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 22px;
}

.modal .modal-dialog .modal-content .content-right form>.flex {
    margin-top: -3px;
    margin-bottom: -5px;
}

.modal .modal-dialog .modal-content .content-right form .checkbox-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.modal .modal-dialog .modal-content .content-right form .lost-password {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: var(--PrimaryDark);
}

.modal .modal-dialog .modal-content .content-right .btn-show-register {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-left: 4px;
}

.modal .modal-dialog .modal-content .content-right .wg-social-1 {
    gap: 20px;
    margin-top: 2px;
}

.modal .modal-dialog .modal-content .content-right .wg-social-1 li a i {
    font-size: 20px;
}

.modal#modalregister .modal-dialog .modal-content {
    transform: translateY(-5px);
}

.modal#modalregister .modal-dialog .modal-content .content-right {
    padding: 13px 25px 30px 25px;
}

.table-compare {
    overflow-x: auto !important;
}

.table-compare::-webkit-scrollbar {
    width: 0px;
}

.table-compare>* {
    min-width: 1400px;
}

.table-compare .head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
    justify-content: end;
    margin-bottom: 32px;
    padding-right: 2px;
}

.table-compare .head .item .image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 13px;
    max-width: 327px;
}

.table-compare .head .item .image .icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--White);
    border-radius: 50%;
    box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.0509803922);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.table-compare .head .item .image .icon i {
    font-size: 15px;
    color: var(--Secondary);
}

.table-compare .head .item .title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Secondary);
    margin-bottom: -2px;
}

.table-compare .head .item .price {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--Third);
}

.table-compare ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.table-compare ul li {
    padding: 0px 0px 0px 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 29px;
    height: 51px;
    border-radius: 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.table-compare ul li.h-58 {
    height: 58px;
}

.table-compare ul li .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.table-compare ul li:nth-child(2n+1) {
    background: #F9F9F9;
}

.table-compare ul li:hover {
    background-color: #c3c3c3;
}

.table-compare ul li>div {
    width: 100%;
}

.table-compare ul li>div:nth-child(1) {
    max-width: 298px;
}

.table-compare ul li>div:nth-child(2) {
    max-width: 327px;
}

.table-compare ul li>div:nth-child(3) {
    max-width: 329px;
}

.table-compare ul li>div:nth-child(4) {
    max-width: 329px;
}

.table-listing-properties {
    overflow-x: auto !important;
}

.table-listing-properties::-webkit-scrollbar {
    width: 0px;
}

.table-listing-properties>* {
    min-width: 1420px;
}

.table-listing-properties>.head {
    padding: 31px 53px 30px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 53px;
    background-color: #F9F9F9;
}

.table-listing-properties>.head .item {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Secondary);
    width: 100%;
    width: 150px;
}

.table-listing-properties>.head .item:first-child {
    width: 500px;
}

.table-text-infor {
    overflow-x: auto !important;
}

.table-text-infor::-webkit-scrollbar {
    width: 0px;
}

.table-text-infor>* {
    min-width: 1200px;
}

.table-text-infor>.head {
    padding: 31px 54px 30px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 53px;
    background-color: #F9F9F9;
}

.table-text-infor>.head .item {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--Secondary);
    width: 100%;
}

.table-text-infor>.head .item:last-child {
    width: 100px;
    flex-shrink: 0;
}

.table-text-infor.no-border-bottom>ul li:last-child>div {
    border-bottom: 0;
}

.table-text-infor.default>.head .item {
    width: 100% !important;
    flex-shrink: unset !important;
}

.table-text-infor.default>ul li>div>div {
    width: 100% !important;
    flex-shrink: unset !important;
}

.table-shop-cart {
    overflow-x: auto !important;
}

.table-shop-cart::-webkit-scrollbar {
    width: 0px;
}

.table-shop-cart>* {
    min-width: 924px;
}

.table-shop-cart>.head {
    padding: 25px 30px 27px;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 0px;
    background-color: #F9F9F9;
    margin-bottom: 9px;
}

.table-shop-cart>.head .item {
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    color: var(--Secondary);
}

.table-shop-cart>.head .item:nth-child(1) {
    width: 343px;
}

.table-shop-cart>.head .item:nth-child(2) {
    width: 152px;
}

.table-shop-cart>.head .item:nth-child(3) {
    width: 168px;
}

.table-shop-cart>.head .item:nth-child(4) {
    width: 201px;
}

.table-default {
    color: var(--Secondary);
}

.table-default>.head {
    padding: 29px 36px;
    height: 70px;
    background-color: #F9F9F9;
    border-radius: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.table-default>.head .text {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
}

.table-default>ul li {
    padding: 0 24px;
    height: 70px;
    border-bottom: 1px solid var(--Border);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 57px;
}

.sidebar .sidebar-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    margin-bottom: 14px;
}

.sidebar .sidebar-item {
    background-color: #F9F9F9;
    border-radius: 16px;
    border: 1px solid var(--Border);
    padding: 23px 30px 20px;
}

.sidebar .sidebar-item.no-bg {
    background-color: var(--White);
}

.sidebar .sidebar-item.sidebar-search {
    padding: 29px 30px;
}
.sidebar-search form{
    position: relative;
}

.sidebar .sidebar-item.sidebar-categories {
    padding: 23px 30px 20px;
}

.sidebar .sidebar-item.sidebar-categories ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.sidebar .sidebar-item.sidebar-categories ul li {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    padding-left: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    list-style: none;
}

.sidebar .sidebar-item.sidebar-categories ul li::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--Secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .sidebar-item.sidebar-categories ul li:hover,
.sidebar .sidebar-item.sidebar-categories ul li.active {
    padding-left: 25px;
}

.sidebar .sidebar-item.sidebar-categories ul li:hover::before,
.sidebar .sidebar-item.sidebar-categories ul li.active::before {
    width: 15px;
    background-color: var(--PrimaryDark);
}

.sidebar .sidebar-item.sidebar-categories ul li:hover a,
.sidebar .sidebar-item.sidebar-categories ul li.active a {
    color: var(--PrimaryDark);
}

.sidebar .sidebar-item.sidebar-agents {
    padding: 23px 30px 29px;
}

.sidebar .sidebar-item.sidebar-agents .sidebar-title {
    margin-bottom: 22px;
}

.sidebar .sidebar-item.sidebar-agents ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.sidebar .sidebar-item.sidebar-agents ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}

.sidebar .sidebar-item.sidebar-agents ul li .image {
    border-radius: 8px;
    overflow: hidden;
    min-width: 90px;
    width: 90px;
}

.sidebar .sidebar-item.sidebar-agents ul li .image img {
    min-width: 90px;
    height: 90px;
    max-height: 90px;
    object-fit: cover;
    min-height: 90px;
    border-radius: 8px;
}

.sidebar .sidebar-item.sidebar-agents ul li .content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}
.sidebar .sidebar-item.sidebar-agents ul li .content p{
    margin: 0;
    line-height: normal;
}

.sidebar .sidebar-item.sidebar-agents ul li .content .name {
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
}

.sidebar .sidebar-item.sidebar-tags {
    padding: 23px 30px 29px;
}

.sidebar .sidebar-item.sidebar-tags .sidebar-title {
    margin-bottom: 22px;
}

.sidebar .sidebar-item.sidebar-tags ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sidebar .sidebar-item.sidebar-tags ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 0px 20px;
    border-radius: 8px;
    background-color: #fff;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
}

.sidebar .sidebar-item.sidebar-exclusive {
    padding-bottom: 28px;
}

.sidebar .sidebar-item.sidebar-exclusive .sidebar-title {
    margin-bottom: 22px;
}

.sidebar .sidebar-item.sidebar-exclusive .box-dream .image .list-tags {
    top: 20px;
    left: 20px;
}

.sidebar .sidebar-item.sidebar-exclusive .box-dream .content {
    bottom: 20px;
    left: 20px;
}

.sidebar .sidebar-item.sidebar-agents-1 {
    padding-bottom: 28px;
}

.sidebar .sidebar-item.sidebar-agents-1 .sidebar-title {
    margin-bottom: 22px;
}

.sidebar .sidebar-item.sidebar-agents-1 ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar .sidebar-item.sidebar-agents-1 ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px;
}

.sidebar .sidebar-item.sidebar-agents-1 ul li .image {
    width: 90px;
    height: 90px;
}

.sidebar .sidebar-item.sidebar-agents-1 ul li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sidebar .sidebar-item.sidebar-agents-1 ul li .content {
    padding-top: 5px;
}

.sidebar .sidebar-item.sidebar-agents-1 ul li .content .name {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: var(--Secondary);
}

.sidebar .sidebar-item.sidebar-info {
    padding: 30px 30px 37px 30px;
}

.sidebar .sidebar-item.sidebar-info .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.sidebar .sidebar-item.sidebar-info .image {
    width: 100%;
    height: 330px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 23px;
}

.sidebar .sidebar-item.sidebar-info .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar .sidebar-item.sidebar-info .image.has-border {
    border: 1px solid var(--Border);
    margin-bottom: 21px;
}

.sidebar .sidebar-item.sidebar-info>ul>li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

.sidebar .sidebar-item.sidebar-info>ul>li:not(:last-child) {
    border-bottom: 1px solid var(--Border);
    margin-bottom: 12px;
}

.sidebar .sidebar-item.sidebar-info>ul>li .wg-social {
    margin-top: 8px;
}

.sidebar .sidebar-item.sidebar-info>ul>li .wg-social .list-social {
    gap: 13px;
}

.sidebar .sidebar-item.sidebar-contact-info-1 {
    padding-bottom: 30px;
}

.sidebar .sidebar-item.sidebar-contact-info-1 .sidebar-title {
    margin-bottom: 22px;
}

.sidebar .sidebar-item.sidebar-contact-info-1 .form-comment {
    gap: 20px !important;
}

.sidebar .sidebar-item.sidebar-contact-info-1 .form-comment textarea {
    height: 100px !important;
}

.sidebar .sidebar-item.sidebar-contact-info-1 .form-comment .flex .tf-button-primary {
    height: 52px;
}

.sidebar .wrap-map-v1 {
    height: 300px;
    min-height: 300px;
    margin: 0;
}

.arrow-style-1 .swiper-button-next {
    right: 0;
    width: 45px;
    height: 45px;
}

.arrow-style-1 .swiper-button-next::after {
    font-size: 12px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.arrow-style-1 .swiper-button-prev {
    left: 0;
    width: 45px;
    height: 45px;
}

.arrow-style-1 .swiper-button-prev::after {
    font-size: 12px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.arrow-style-1 .has-background {
    background-color: rgba(26, 26, 26, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.arrow-style-1 .has-border {
    border: 1px solid var(--Border);
    border-radius: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.arrow-style-1 .has-border::after {
    color: var(--Secondary);
}

.arrow-style-1 .has-border:hover {
    border: 1px solid var(--Secondary);
}

.arrow-style-1 .type-white::after {
    color: var(--White);
}

.arrow-style-1 .type-white:hover {
    border-color: var(--White);
}

.arrow-style-1 .type-white:hover::after {
    color: var(--White);
}

.arrow-style-2 .swiper-button-prev::after {
    color: var(--Secondary);
    font-size: 12px;
    font-weight: 600;
}

.arrow-style-2 .swiper-button-next::after {
    color: var(--Secondary);
    font-size: 12px;
    font-weight: 600;
}

.top-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 6px;
    align-items: center;
    position: absolute;
    top: 36px;
    right: 22px;
}

.top-wrap>div {
    position: unset;
}

.arrow-over .swiper-button-next {
    right: -116px;
    top: 60%;
}

.arrow-over .swiper-button-prev {
    left: -116px;
    top: 60%;
}

.pagination-style-1 .swiper-pagination {
    bottom: 29px;
}

.pagination-style-1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 7.5px;
    background-color: var(--White);
}

.pagination-style-2>.swiper-pagination {
    bottom: 0px;
}

.pagination-style-2>.swiper-pagination .swiper-pagination-bullet {
    margin: 10px 12.5px;
    background-color: var(--Secondary);
    position: relative;
}

.pagination-style-2>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border: 1px solid #122223;
    border-top-color: #D9D9D9;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pagination-style-2>.swiper-pagination.style-black .swiper-pagination-bullet {
    opacity: 1;
    background-color: var(--White);
}

.pagination-style-2>.swiper-pagination.style-black .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border: 1px solid var(--White);
    border-top-color: rgba(18, 34, 35, 0.2);
}

.bottom-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.bottom-wrap>div {
    position: unset;
    margin: 0;
}

.bottom-wrap.style-number {
    gap: 21px;
    bottom: 30px;
}

.bottom-wrap.style-number .slider-min,
.bottom-wrap.style-number .slider-max {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
}

.bottom-wrap.style-number .swiper-pagination {
    width: 200px;
    margin-left: 0;
    height: 2px;
    border-radius: 0;
    background-color: rgba(24, 26, 31, 0.2);
}

.bottom-wrap.style-number .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: rgb(0, 0, 0);
}

.pagination-style-number .swiper-pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px;
}

.pagination-style-number .swiper-pagination .swiper-pagination-bullet {
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--Secondary);
    width: unset;
    height: unset;
    background-color: unset;
}

.pagination-style-number .type-white .swiper-pagination-bullet {
    color: var(--White);
}

.pagination-style-progressbar .swiper-pagination {
    background-color: rgba(255, 255, 255, 0.1);
    height: 3px;
    border-radius: 3px;
    top: unset;
    bottom: 21px;
    margin-left: 238px;
    max-width: 1162px;
}

.pagination-style-progressbar .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: var(--Third);
    border-radius: 3px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-bottom-55 {
    padding-bottom: 55px;
}

.carouselright {
    width: calc(100vw - (100vw - 1400px) / 2 - 14px);
    margin-right: -34px !important;
    max-width: 100%;
    padding-bottom: 96px;
}

.carouselright .bottom-wrap {
    gap: 20px;
}

.carouselright.style-full {
    margin-right: unset !important;
}

.carouselright.style-full .box-dream .image {
    width: 428px;
    height: 300px;
}

.carouselright.style-full .bottom-wrap {
    gap: 30px;
}

.slider-auto>.swiper-wrapper>.swiper-slide {
    width: auto;
}

.thumbs-slider-second {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-left: 119px;
    padding-right: 216px;
    gap: 225px;
}

.thumbs-slider-second .slider-thumbs-gallery-second-1 {
    width: 370px;
    height: 390px;
    flex-shrink: 0;
}

.thumbs-slider-second .slider-thumbs-gallery-second-2 {
    padding-top: 31px;
}

.thumbs-slider-second.style-1 {
    padding-left: 0;
    padding-right: 0;
    gap: 0;
}

.thumbs-slider-second.style-1 .slider-thumbs-gallery-second-1 {
    width: unset;
    height: unset;
    flex-shrink: unset;
}

.thumbs-slider-second.style-1 .slider-thumbs-gallery-second-2 {
    padding-top: 105px;
}

.thumbs-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbs-slider .slider-thumbs-gallery-2 {
    margin-bottom: 10px;
    border-radius: 16px;
    overflow: hidden;
}

.thumbs-slider .slider-thumbs-gallery-2 .thumbs-prev {
    left: 30px;
}

.thumbs-slider .slider-thumbs-gallery-2 .thumbs-next {
    right: 30px;
}

.thumbs-slider .slider-thumbs-gallery-1 img {
    border-radius: 12px;
}

.thumbs-slider-column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 11px;
}

.thumbs-slider-column img {
    border-radius: 12px;
}

.thumbs-slider-column .slider-thumbs-gallery-1 {
    width: 158px;
    height: 650px;
    flex-shrink: 0;
}

.thumbs-slider-column .slider-thumbs-gallery-1 .swiper-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.thumbs-slider-column .slider-thumbs-gallery-1 .swiper-wrapper .swiper-slide {
    width: 158px;
    height: 121px !important;
}

.slider-4-center {
    overflow: unset;
}

.slider-4-center .swiper-slide {
    overflow: hidden;
    border-radius: 16px;
}

.slider-4-center .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}

.slider-4-center .swiper-slide img:hover {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
    transition: all 2s cubic-bezier(0.3, 1, 0.35, 2) 0s;
}

.slider-effect-fade .swiper-slide .fade-item {
    -webkit-transform: translate(0px, 150px);
    -moz-transform: translate(0px, 150px);
    -ms-transform: translate(0px, 150px);
    -o-transform: translate(0px, 150px);
    transform: translate(0px, 150px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-1 {
    transition-delay: 0.1s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-2 {
    transition-delay: 0.2s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-3 {
    transition-delay: 0.3s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-4 {
    transition-delay: 0.4s;
}

.slider-effect-fade .swiper-slide.swiper-slide-active .fade-item {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
    visibility: visible;
}

.slider-recent-properties {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

.slider-news,
.slider-homes {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -15px;
}

a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* MAP */
.wrap-map-v1 {
    position: relative;
    height: 100%;
    min-height: 1089px;
    padding-left: 6px;
    padding-top: 9px;
    margin-right: -40px;
}

.wrap-map-v2 {
    position: relative;
    z-index: 20;
    margin-bottom: 40px;
}

.wrap-map-v2 #map {
    height: 668px;
}

.wrap-map-v2 .wrap-filter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1400px;
}

.wrap-map-v2 .wrap-filter form {
    border-radius: 16px;
    padding: 20px 20px 20px 30px;
}

.wrap-map-v2 .wrap-filter form .list .group-form {
    width: 100%;
    max-width: 212px;
}

.wrap-map-v2 .wrap-filter form .list .group-form.form-search-content {
    max-width: 526px;
}

.wrap-map-v3 {
    position: relative;
    height: 100%;
    min-height: 1089px;
    margin-left: -40px;
    margin-right: -3px;
}

.wrap-map-v4 {
    position: relative;
    height: 100%;
    min-height: 1089px;
    height: 953px;
}

.wrap-map-v5 {
    position: relative;
    padding-bottom: 193px;
}

.wrap-map-v5 #map-1 {
    height: 571px;
}

.wrap-map-v5 .grid-contact {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 1190px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 40px;
}

.wrap-map-v5 .grid-contact>.contact-item {
    width: 100%;
}

#map {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#map-1 {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#map-2 {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.map-marker-container {
    position: absolute;
    margin-top: 10px;
    transform: translate3d(-50%, -100%, 0);
}

.marker-container {
    position: relative;
    top: 25px;
    left: 10px;
    width: 46px;
    height: 46px;
    z-index: 1;
    border-radius: 50%;
    cursor: pointer;
}

.face {
    position: absolute;
    width: 20px;
    height: 20px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    color: #fff;
    z-index: 100;
    background: #1F4B43;
    border: 2px solid #fff;
    border-radius: 50%;
    box-sizing: content-box;
    background-clip: content-box;
    line-height: 46px;
    font-size: 24px;
}

.face::before,
.face::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 50px rgba(31, 75, 67, 0.1);
    -o-box-shadow: 0 0px 0 50px rgba(31, 75, 67, 0.1);
    box-shadow: 0px 0px 0px 20px rgba(31, 75, 67, 0.1);
    -webkit-animation: ripple 2s infinite;
    animation: ripple 2s infinite;
}

.face::before {
    content: "";
    position: absolute;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.face::after {
    content: "";
    position: absolute;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.face>div {
    position: absolute;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 99;
}

#singleListingMap .marker-container {
    cursor: default;
}

.marker-card {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    position: absolute;
    z-index: 1;
}

#map .infoBox {
    margin-left: 170px;
    margin-bottom: -100px;
}

.map-listing-item {
    position: relative;
}

.map-listing-item .infoBox-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 26px;
    height: 26px;
    background: rgb(249, 249, 249);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Secondary);
    font-size: 9px;
    border-radius: 50%;
    z-index: 9;
    text-align: center;
    cursor: pointer;
    transition: all 300ms ease;
}

.map-listing-item .inner-box {
    position: relative;
    border-radius: 10px;
    background: #ffffff;
    min-width: 327px;
    box-shadow: 0px 10px 25px rgba(54, 95, 104, 0.1);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    padding: 10px;
}

.map-listing-item .image {
    width: 75px;
    height: 75px;
}

.map-listing-item .image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 500ms ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.map-listing-item .content {
    position: relative;
    padding: 0;
}

.map-listing-item .content .price {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: var(--Third);
}

.map-listing-item .content h4 {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--Secondary);
    margin-bottom: 0 !important;
}

.cluster-map-visible {
    text-align: center;
    font-size: 16px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    background-color: #14a077;
    border: 7px solid rgba(25, 103, 210, 0.2);
    box-shadow: 0 7px 30px rgba(33, 33, 33, 0.3);
    box-sizing: content-box;
    background-clip: content-box;
}

.map-style-fixed {
    position: fixed;
    top: 141px;
    bottom: 0;
    left: 20px;
    width: 48.5%;
    z-index: 0;
    margin: 0;
}

.property-map-v3 .box-filter-small {
    margin-top: 121px;
}

.property-map-wrap-v4 .box-filter-small {
    margin-top: 121px;
}

.property-map-wrap-v4 .map-style-fixed {
    width: 60.8%;
}

.nice-select {
    border-radius: 12px;
    border: 1px solid var(--Border) !important;
    padding: 12px 20px;
}

.nice-select.border-radius-1 {
    border-radius: 120px;
    padding: 12.5px 25px;
}

.nice-select::after {
    right: 27px;
    border-color: var(--Secondary);
}

.nice-select>span {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--Secondary);
}

.nice-select>.list {
    margin-top: 10px;
    /*border: 1px solid var(--Secondary);*/
    border-radius: 16px;
    max-height: unset;
    padding: 10px;
    max-width: 300px;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus{
    background-color: #ffd2c7;
}
.nice-select>.list .option {
    height: 41px;
    padding: 0 15px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 41px;
    color: var(--Secondary);
    position: relative;
}

.nice-select>.list .option.selected {
    color: var(--Secondary);
    font-weight: 400;
}

.nice-select>.list .option.selected::after {
    position: absolute;
    font-family: flaticon_just-home !important;
    content: "\f125";
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.nice-select>.list.style-radio {
    padding: 28px 20px 30px 21px;
}

.nice-select>.list.style-radio .option {
    padding-left: 50px;
    height: 50px;
    line-height: 50px;
}

.nice-select>.list.style-radio .option::after {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--Border);
}

.nice-select>.list.style-radio .option.selected::after {
    border: 4px solid var(--Secondary);
}

.nice-select.open {
    /*border-color: var(--Secondary) !important;*/
    z-index: 50;
}

.nice-select.style-white span.current {
    color: var(--White) !important;
}

.nice-select.style-white::after {
    border-color: var(--White) !important;
}

.nice-select.default {
    padding: 0;
    padding-right: 18px;
    border: 0 !important;
}

.nice-select.default::after {
    right: 0;
    top: 44%;
    right: 2px;
}

.nice-select.default ul.list {
    width: 220px;
    right: 0;
    left: unset;
}

.tf-select select {
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--Border) !important;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 28px;
    color: var(--Secondary);
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-select select:focus {
    border-color: var(--Secondary) !important;
}

.tf-field-label {
    position: relative;
}

.tf-field-label .tf-input {
    padding: 12px 18px;
}

.tf-field-label .tf-input:focus {
    border-color: #000;
}

.tf-field-label .tf-input:not(:placeholder-shown)~.tf-label,
.tf-field-label .tf-input:focus~.tf-label {
    top: 0;
    transform: translateY(-50%);
    padding: 0 8px;
    background-color: var(--White);
}

.tf-field-label .tf-input::placeholder {
    color: transparent;
}

.tf-field-label .tf-label {
    position: absolute;
    top: 11px;
    left: 18px;
    transition: all 0.1s ease;
    cursor: text;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Secondary);
}

.tf-select-label {
    position: relative;
    z-index: 2;
}

.tf-select-label .select-label {
    position: absolute;
    top: 11px;
    left: 18px;
    transition: all 0.1s ease;
    cursor: text;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Secondary);
    z-index: 51;
}

.tf-select-label.focused .select-label {
    top: 0;
    transform: translateY(-50%);
    padding: 0 8px;
    background-color: var(--White);
}

@media (max-width: 1800px) {
    .property-grid-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 20px;
    }

    .property-grid-wrap>.box-dream {
        margin-left: auto;
        margin-right: auto;
    }

    .property-grid-wrap.type-2-cols {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px;
    }

    .property-grid-wrap.type-2-cols>.box-dream {
        max-width: 500px;
    }

    .wrap-map-v3,
    .wrap-map-v1 {
        margin: 0;
        padding: 0;
    }

    .slider.home4 .wrap-slider::before {
        left: unset;
        right: calc(50% + 150px);
    }

    .slider.home4 .wrap-slider::after {
        right: unset;
        left: calc(50% + 150px);
    }
}

@media (max-width: 1440px) {
    .pagination-style-progressbar .swiper-pagination {
        width: unset;
        right: 35px;
        margin-left: 190px;
    }

    .luxury-home.style-3 .content {
        padding-left: 50px;
    }

    .box-filter-small .wg-filter.style-price .open-filter {
        left: unset;
        right: 0;
    }

    .box-filter-small .wg-filter.style-more {
        position: unset;
    }

    .box-filter-small .wg-filter.style-more>.btn-filter {
        position: relative;
    }

    .box-filter-small .wg-filter.style-more>.btn-filter::after {
        border-bottom: 1.7px solid #3A3A3C;
        border-right: 1.7px solid #3A3A3C;
        content: "";
        height: 8px;
        width: 8px;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        top: 43% !important;
        right: 23px !important;
        border-color: var(--Secondary);
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
    }

    .box-filter-small .wg-filter.style-more::after {
        display: none;
    }

    .message-wrap {
        gap: 10px;
    }

    .message-wrap>.wg-box {
        padding: 20px !important;
    }

    .page-head>div {
        flex-wrap: wrap;
        gap: 30px;
        flex-direction: column-reverse;
    }

    .page-head>div .widget-content-tab .widget-content-inner form {
        flex-wrap: wrap;
    }

    .page-head>div .widget-content-tab .widget-content-inner form>* {
        width: 25%;
    }

    .page-head>div .widget-content-tab .widget-content-inner form>* .btn-filter {
        justify-content: start;
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more {
        position: unset;
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more .open-filter {
        width: 100%;
        top: calc(100% + 20px);
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more>.btn-filter {
        position: relative;
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more>.btn-filter::after {
        border-bottom: 1.7px solid #3A3A3C;
        border-right: 1.7px solid #3A3A3C;
        content: "";
        height: 8px;
        width: 8px;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        top: 47%;
        right: 30px;
        border-color: var(--Secondary);
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.style-more::after {
        display: none;
    }

    .property-grid-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px;
    }

    .property-grid-wrap>.box-dream {
        max-width: 490px;
    }

    .box-testimonials .testimonials-item {
        padding-left: 30px;
    }

    .flat-counter.style-1 {
        margin-left: 0;
        margin-right: 0;
    }

    .pricing-item {
        margin-bottom: 30px;
    }

    .agency-list-wrap .sidebar,
    .agency-list-wrap .form-sidebar-left {
        max-width: unset;
    }

    .layout-wrap .layout-wrap-inner .section-menu-left.null {
        -webkit-transform: translate(-100%, 0);
        -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        -o-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        opacity: 0;
        visibility: hidden;
    }

    .layout-wrap .layout-wrap-inner .section-content-right.full {
        padding-left: 0px;
    }

    .grid-favorities-item {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 28px 28px;
        padding-right: 0;
    }

    .btn-canvas {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        z-index: 70;
    }

    .grid-section-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-section-1 {
        flex-wrap: wrap;
    }

    .grid-section-1>.wg-box {
        width: 100% !important;
    }

    .thumbs-slider-second {
        padding-left: 0;
        padding-right: 0;
    }

    .main-content.px-60,
    .main-content.px-110 {
        padding-left: 0;
        padding-right: 0;
    }

    #header_main .header-inner .header-inner-wrap .main-menu ul.navigation {
        margin-left: 0;
    }

    #header_main .header-inner .header-inner-wrap .main-menu ul.navigation .mega-menu {
        gap: 40px !important;
    }

    #header_main .header-inner .header-inner-wrap .header-right .header-call {
        display: none;
    }

    #header_main.type-home3 .header-inner #site-logo {
        position: unset !important;
        transform: none !important;
    }

    #header_main.type-home3 .header-inner .main-menu .navigation {
        gap: 10px !important;
    }

    .sidebar {
        padding-left: 0;
    }

    .properties-content-default {
        padding: 15px 30px;
    }

    .properties-content-default .text,
    .properties-content-default p {
        margin-bottom: 15px;
    }

    .flat-cities.style-1 .wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .slider.home5 .wrap-slider .slider-content .left .box-agents {
        right: 0;
    }

    .property-single-sidebar {
        max-width: unset;
        width: 100%;
    }

    .property-map-wrap-v4 .list-box-dream .box-dream {
        flex-direction: column;
        gap: 0;
    }

    .property-map-wrap-v4 .list-box-dream .box-dream .content {
        padding: 9px 0 9px 9px;
    }

    .property-map-wrap-v4 .list-box-dream .box-dream .image {
        flex-grow: 1;
        width: unset;
        margin: 9px;
        height: unset;
    }
}

@media (max-width: 1200px) {
    .po-sticky {
        position: unset !important;
    }

    .counter .number-counter.style-1 {
        width: 100%;
        margin-bottom: 15px;
    }

    .box-icon.style-2 .content p br {
        display: none;
    }

    .perfect-home .content-right {
        padding-top: 30px;
        padding-left: 0;
    }

    .box-dream.style-row {
        flex-direction: column;
        gap: 15px;
    }

    .box-dream.style-row .image {
        width: 100%;
        margin: 0 !important;
        padding: 9px;
        border-radius: 12px;
        overflow: hidden;
    }

    .box-dream.style-row .image>.swiper-container {
        border-radius: 12px;
        overflow: hidden;
    }

    .box-dream.style-row .image img {
        border-radius: 12px;
    }

    .box-dream.style-row .content {
        padding: 9px 0 9px 9px;
    }

    #header_main .header-inner {
        padding: 15px 15px 0 15px;
    }

    #header_main .header-inner .header-inner-wrap {
        padding-right: 15px;
        padding-left: 15px;
    }

    #header_main .header-inner .header-inner-wrap .main-menu ul.navigation {
        gap: 20px !important;
    }

    #header_main .header-inner .header-inner-wrap .header-right {
        gap: 15px;
    }

    #header_main.style-bg-white .header-inner .header-inner-wrap .main-menu ul.navigation>li::before {
        width: calc(100% + 20px);
    }

    #header_main.type-home3 .header-inner {
        padding: 15px 15px 0 15px !important;
    }

    .footer .footer-inner .footer-inner-wrap .center-footer {
        flex-wrap: wrap;
    }

    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-1 {
        max-width: unset;
    }
}

@media (max-width: 1199px) {
    /*.property-single-sidebar {*/
    /*    margin-top: 50px;*/
    /*}*/
    #header_main {
        border-bottom: 1px solid var(--Border);
    }

    #header_main.style-bg-white .header-inner {
        padding: 20px 20px 0 20px !important;
    }

    #header_main.style-fixed .header-inner {
        padding-bottom: 20px !important;
    }

    #header_main.style-fixed .header-inner .header-inner-wrap {
        background-color: #F9F9F9;
    }

    #header_main.style-fixed.none-bg .header-inner .header-inner-wrap {
        background-color: var(--White);
    }

    #header_main.type-home8 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #header_main.style-absolute {
        background-color: var(--White);
        padding-bottom: 20px;
        position: relative;
    }

    #header_main.style-absolute .header-inner {
        padding-bottom: 0 !important;
    }

    #header_main.is-fixed.type-home1.is-small {
        top: 0px;
    }

    #header_main.is-fixed.is-small {
        background-color: var(--White);
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #header_main.is-fixed.is-small.style-no-bg {
        background-color: var(--White);
    }

    #header_main.is-fixed.is-small.style-no-bg .header-inner .header-inner-wrap {
        background-color: transparent;
    }

    #header_main .header-inner {
        padding-bottom: 20px !important;
    }

    #header_main .header-inner.background-white {
        background-color: var(--White);
    }

    #header_main .header-inner.background-white .header-inner-wrap {
        background-color: var(--White);
    }

    #header_main .header-inner .header-inner-wrap {
        padding: 0 !important;
        border: 0;
    }

    #header_main .header-inner .header-inner-wrap #site-logo #logo-header-mobile {
        display: block;
    }

    #header_main .header-inner .header-inner-wrap #site-logo #logo-header {
        display: none;
    }

    #header_main .header-inner .header-inner-wrap .main-menu {
        display: none;
    }

    #header_main .header-inner .header-inner-wrap .header-right {
        /*display: none;*/
        filter: invert(1);
    }

    #header_main .header-inner .header-inner-wrap .mobile-button {
        display: block !important;
    }
}

@media (max-width: 1024px) {
    .box-filter-small .wg-filter.style-price .open-filter {
        left: unset;
        right: 0;
    }

    .box-filter-small .wg-filter.style-more .open-filter {
        max-width: max-content;
    }

    .slider.home8 .wrap-slider .counter {
        position: unset;
        max-width: unset;
        height: unset;
        padding: 40px 14px;
    }

    .slider.home8 .wrap-slider .counter .number-counter {
        width: 100%;
        text-align: center;
    }

    .slider.home8 .wrap-slider .counter .number-counter>div {
        text-align: center !important;
    }
}

@media (max-width: 991px) {
    .layout-wrap .layout-wrap-inner .section-menu-left {
        top: 150px;
        width: unset;
        right: 20px;
        -webkit-transform: translate(-100%, 0);
        -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        -o-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        opacity: 0;
        visibility: hidden;
    }

    .layout-wrap .layout-wrap-inner .section-menu-left.null {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
        visibility: visible;
    }

    .layout-wrap .layout-wrap-inner .section-content-right {
        padding-top: 120px;
        padding-left: 0px;
    }

    .layout-wrap .layout-wrap-inner .section-content-right .reviews-wrap ul li {
        flex-wrap: wrap;
        gap: 15px;
    }

    .layout-wrap .layout-wrap-inner .section-content-right .reviews-wrap ul li .ratings {
        margin-top: 0;
    }

    .layout-wrap .layout-wrap-inner .section-content-right .reviews-wrap ul li .time {
        margin-bottom: 10px;
    }

    .layout-wrap .layout-wrap-inner .btn-canvas {
        top: 100px;
        left: 20px;
        right: 20px;
        position: absolute;
        width: unset;
        height: 50px;
        padding: 0 15px;
        border-radius: 6px;
        gap: 15px;
        justify-content: start;
    }

    .layout-wrap .layout-wrap-inner .btn-canvas span::after {
        transform: rotate3d(0, 0, 1, -45deg);
        top: 50%;
    }

    .layout-wrap .layout-wrap-inner .btn-canvas span::before {
        transform: rotate3d(0, 0, 1, 45deg);
        top: 50%;
    }

    .layout-wrap .layout-wrap-inner .btn-canvas .text-content {
        display: block;
    }

    .layout-wrap .layout-wrap-inner .btn-canvas.active span::after {
        bottom: 0;
        top: unset;
        transform: none;
    }

    .layout-wrap .layout-wrap-inner .btn-canvas.active span::before {
        top: 0;
        transform: none;
    }

    .agents-item {
        padding: 20px;
    }

    .agents-item>div:first-child {
        gap: 20px !important;
    }

    .agents-item .name {
        margin-top: 0;
    }

    .sidebar .sidebar-item,
    .agency-list-wrap .sidebar,
    .agency-list-wrap .form-sidebar-left {
        padding: 15px;
        gap: 15px;
    }

    .thumbs-slider-second.style-1 .slider-thumbs-gallery-second-2 {
        padding-top: 0;
    }

    .thumbs-slider-second.style-1 .slider-thumbs-gallery-second-1 {
        margin-top: 20px;
    }

    .slider.home6 .wrap-slider .slider-item {
        background-image: none;
    }

    .flat-explore .wrap {
        flex-wrap: wrap;
    }

    .flat-explore .wrap .cities-item {
        width: 47% !important;
    }

    .flat-explore .wrap .cities-item .content {
        top: 15px !important;
        left: 15px !important;
    }

    .flat-explore .wrap .cities-item> .button-arrow-right {
        bottom: 15px !important;
        left: 15px !important;
    }

    .luxury-home.style-3 {
        flex-wrap: wrap;
        padding-left: 20px;
        padding-right: 20px;
    }

    .luxury-home.style-3 .content {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .box-dream.style-full .content {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .map-style-fixed {
        margin-top: 100px;
        position: unset;
        width: 100%;
        height: 500px;
        min-height: 500px;
    }

    .modal .modal-dialog {
        margin-top: 30px;
        margin-bottom: 30px;
        min-width: unset;
    }

    .modal .modal-dialog .modal-content {
        flex-wrap: wrap;
        transform: translateY(0) !important;
    }

    .modal .modal-dialog .modal-content .image-left {
        width: 100%;
        height: 500px;
    }

    .property-map-wrap-v4 {
        padding-right: 15px;
        padding-left: 15px;
        flex-wrap: wrap;
    }

    .property-map-wrap-v4>* {
        width: 100% !important;
    }

    .property-map-wrap-v4>*.wrap-map-v4 {
        height: 500px;
        min-height: 500px;
    }

    .property-map-wrap-v4>*.wrap-map-v4 .map-style-fixed {
        width: 100% !important;
    }

    .box-filter-small {
        margin-top: 50px;
    }

    .property-grid-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px;
    }

    .property-grid-wrap>.box-dream {
        max-width: 400px;
    }

    .slider.home6 .wrap-slider .slider-item .slider-content {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .slider.home5 {
        margin-bottom: 30px;
    }

    .slider.home5 .wrap-slider .slider-item .slider-content {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .slider.home5 .wrap-slider .slider-item .slider-content>.left {
        position: unset;
        margin-top: 50px;
    }

    .slider.home5 .wrap-slider .slider-item .slider-content>.left>form {
        position: relative;
        left: 0;
    }

    .slider.home5 .wrap-slider .slider-item .slider-content>.left>.wrap-img {
        margin-top: 40px;
        margin-bottom: 100px;
        justify-content: center;
    }

    .slider.home5 .wrap-slider .slider-item .slider-content>.left>.box-agents {
        bottom: 15px;
        right: 14px;
    }

    .slider.home10 .wrap-slider .counter {
        padding-left: 20px;
        padding-right: 20px;
        height: unset;
    }

    .download-app {
        flex-wrap: wrap;
    }

    .download-app .content-right {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 20px;
    }

    .download-app .content-right .ft-download {
        flex-wrap: wrap;
    }

    .download-app .image {
        width: 100%;
    }

    .download-app .image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    .flat-cities .inner.style-1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 28px;
        grid-template-areas: "aa aa" "bb cc" "dd ee";
    }

    .flat-cities .inner.style-1 .cities-item.item-1 img {
        height: 320px;
    }

    .flat-counter.style-1 .counter {
        margin-top: 30px;
        flex-wrap: wrap;
        row-gap: 30px;
        text-align: center;
    }

    .flat-counter.style-1 .counter .number-counter {
        width: 100% !important;
    }

    .flat-counter.style-1 .counter .number-counter div {
        text-align: center;
    }

    form {
        flex-wrap: wrap;
        align-items: center !important;
    }

    form>.list {
        flex-wrap: wrap;
    }

    form>.list>* {
        width: 100% !important;
        max-width: unset !important;
    }

    form>.list>.divider-1 {
        display: none;
    }

    .wrap-map-v5 {
        padding-bottom: 0;
    }

    .wrap-map-v5 .grid-contact {
        position: unset;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        padding-top: 20px;
        flex-wrap: wrap;
    }

    .vision-mission .content {
        flex-wrap: wrap;
    }

    .vision-mission .content>div {
        max-width: unset;
    }

    .agency-list-wrap .top {
        margin-top: 50px;
    }

    .sidebar-shop {
        padding-top: 50px;
        max-width: unset !important;
    }

    .shop-detail-wrap .shop-detail-content {
        padding-left: 0;
        padding-top: 50px;
    }

    .shop-detail-wrap .bottom {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    form .cols {
        flex-direction: column;
    }

    form .cols>* {
        width: 100% !important;
        max-width: unset !important;
    }

    .thumbs-slider-second {
        flex-wrap: wrap;
        gap: 40px;
    }

    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-wrap {
        flex-wrap: wrap;
    }

    .mobile-wrap>* {
        width: 100% !important;
    }



    .sidebar {
        margin-top: 40px;
        max-width: unset !important;
    }

    .footer {
        padding: 0 !important;
    }

    .footer .footer-inner {
        border-radius: 0;
        padding: 0;
    }

    .footer .footer-inner .footer-inner-wrap .top-footer {
        padding: 20px;
    }

    .footer .footer-inner .footer-inner-wrap .top-footer #footer-logo {
        width: 150px;
    }

    .footer .footer-inner .footer-inner-wrap .top-footer .wg-social>span {
        display: none;
    }

    .footer .footer-inner .footer-inner-wrap .center-footer {
        padding: 40px 20px;
    }

    .footer .footer-inner .footer-inner-wrap .bottom-footer {
        padding: 20px;
    }

    .blog-single-wrap {
        padding: 15px 0;
    }

    .flat-cities .inner {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "aa bb" "cc dd" "ee ff";
    }

    .exclusive-properties .inner {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "aa bb" "cc dd" "ee ff";
    }

    .best-properties .inner {
        gap: 10px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-areas: "aa aa" "aa aa" "dd dd" "dd dd" "dd dd" "bb cc" "bb cc" !important;
    }

    .agents-item .image {
        width: 100px;
        height: 100px;
    }

    .property-list-wrap.v1 .form-sidebar-left {
        display: none;
    }

    .property-list-wrap.v1 .top>form {
        display: block;
        margin-bottom: 30px;
    }
}

@media (max-width: 820px) {
    .form-search-home3 {
        border-radius: 12px;
    }

    .form-search-home3>div {
        width: 100% !important;
    }

    .finest-selection .inner {
        flex-wrap: wrap;
    }

    .finest-selection .inner .content {
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .finest-selection .inner .image {
        max-width: unset;
    }

    .luxury-home .image .box {
        bottom: 10px;
        left: 10px;
        top: unset;
    }

    .counter {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .counter .number-counter {
        width: 50%;
        text-align: center;
    }

    .work-with-us .wrap {
        padding-left: 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .work-with-us .wrap>div {
        width: 100%;
        max-width: none !important;
    }
}

@media (max-width: 767px) {
    .smilar-homes .box-dream {
        margin-bottom: 30px;
    }

    .property-single-wrap .head-title {
        flex-wrap: wrap;
        gap: 15px;
    }

    .property-single-wrap .head-title .square {
        text-align: start;
    }

    .property-single-wrap.v3 .wrap-gallery-image {
        margin-left: 15px;
        margin-right: 15px;
    }

    .property-single-wrap.v6 .head-title {
        bottom: 10px;
    }

    .property-single-wrap.v6 .head-title>div:last-child {
        display: none;
    }

    .property-single-wrap.v6 .list-icons-page.show-mobile {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding-left: 14px;
        margin-bottom: 30px;
    }

    .list-icons-page .item p {
        display: none;
    }

    .widget-tabs.style-3 .widget-menu-tab {
        overflow-x: auto;
    }

    .widget-tabs.style-3 .widget-menu-tab .item-title {
        padding: 10px 15px;
        min-width: max-content;
    }

    .top-heading {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .top-heading .heading-section {
        margin-bottom: 15px;
        width: 100%;
    }

    .flat-accordion .flat-toggle {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .flat-accordion .flat-toggle.active {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .flat-accordion .flat-toggle .toggle-title {
        padding-right: 20px;
    }

    .pie-chart {
        flex-wrap: wrap;
    }

    .pie-chart .wrap-note {
        padding-top: 0 !important;
        gap: 20px !important;
        flex-wrap: wrap;
    }

    .message-wrap {
        flex-direction: column;
    }

    .message-wrap>* {
        width: 100% !important;
    }

    .carouselright {
        margin-left: 0;
    }

    .work-with-us-item h2 a {
        left: unset !important;
        right: 40px;
    }

    .work-with-us-item:hover h2 a {
        right: 25px;
    }

    .box-dream .head {
        padding-top: 15px !important;
        gap: 10px !important;
    }

    .box-dream .price {
        position: unset !important;
    }

    .property-grid-wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px;
    }

    .property-grid-wrap>.box-dream {
        max-width: 350px;
    }

    .box-testimonials {
        flex-wrap: wrap;
    }

    .box-testimonials .image {
        max-width: unset;
    }

    .work-with-us-item {
        flex-wrap: wrap;
    }

    .work-with-us-item .text-content {
        text-align: start;
    }

    .testimonials .testimonials-inner {
        flex-wrap: wrap;
    }

    .cities-item.style-4 .content {
        padding: 10px;
        bottom: 10px;
        left: 20px;
        right: 20px;
    }

    .box-icon {
        margin-bottom: 0;
    }

    .agents-item {
        position: relative;
    }

    .agents-item>.flex {
        flex-wrap: wrap;
        row-gap: 20px !important;
    }

    .agents-item>.flex>div:last-child {
        width: 100%;
    }

    .agents-item>.flex>div:last-child .infor {
        position: absolute;
        top: 25px;
        left: 140px;
    }

    .form-shop-cart .bottom {
        flex-wrap: wrap;
    }

    .upload-image-wrap .list {
        flex-wrap: wrap;
    }

    .grid-section-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .property-single-wrap.v7 .wrap-image {
        flex-direction: column;
    }

    .property-single-wrap.v7 .wrap-image>.flex {
        flex-direction: row !important;
    }

    .property-single-wrap.v7 .box-items {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .property-single-wrap.v7 .box-items .item {
        width: 50%;
        border: 0 !important;
    }

    .thumbs-slider-column {
        flex-wrap: wrap;
        margin-right: 0 !important;
    }

    .thumbs-slider-column .slider-thumbs-gallery-1 {
        width: unset;
        height: unset;
    }

    .thumbs-slider-column .slider-thumbs-gallery-1 .swiper-wrapper {
        display: none;
    }

    .property-single-wrap .content-wrap .box-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 10px;
    }

    .property-single-wrap .content-wrap>.plans .icons {
        flex-wrap: wrap;
    }

    .property-single-wrap .content-wrap>.calculator form {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px;
    }

    .wrap-gallery-image {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 10px;
        grid-template-areas: "aa aa" "aa aa" "bb cc" "dd ee";
    }

    .list-icons-page {
        flex-wrap: wrap;
    }

    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-2,
    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-3,
    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-4,
    .footer .footer-inner .footer-inner-wrap .center-footer .footer-cl-5 {
        width: 45%;
    }

    .footer.style-1 .bottom-footer .inner {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer.style-1 .bottom-footer .inner>* {
        width: 100%;
    }

    .testimonials .testimonials-inner {
        margin-bottom: 40px;
    }

    .tab-search .widget-tabs .widget-menu-tab {
        gap: 30px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .tab-search .widget-tabs .widget-menu-tab .item-title {
        min-width: max-content;
        font-size: 15px;
    }

    .tab-search .widget-tabs .widget-content-tab .widget-content-inner .gird-tab-search {
        flex-wrap: wrap;
    }

    .tab-search .widget-tabs .widget-content-tab .widget-content-inner .gird-tab-search .item {
        width: 45%;
    }

    .luxury-home .content {
        padding-bottom: 50px;
    }

    .luxury-home .image {
        margin-bottom: 40px;
        max-width: unset !important;
    }

    .group-icon {
        margin-bottom: 20px;
        padding: 20px;
    }

    .group-icon>.image {
        bottom: 15px;
        right: 15px;
    }

    .exclusive-properties .inner {
        gap: 10px;
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "aa" "bb" "cc" "dd" "ee" "ff";
    }
}

@media (max-width: 550px) {
    .agents-item .wrap-contact>* {
        width: 100%;
        justify-content: start;
    }

    .has-bg-vector::before {
        display: none;
    }

    .contact-item {
        padding: 30px 20px;
    }

    .box-dream.style-favorities {
        gap: 0;
    }

    .box-dream.style-favorities .image {
        margin: 7px;
        flex-grow: 1;
        width: unset;
    }

    .box-dream.style-favorities .head {
        padding-top: 0 !important;
    }

    .wg-box {
        padding: 30px 20px 20px !important;
    }

    .property-single-wrap .content-wrap .list-item {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px 60px;
    }

    .property-single-wrap.v5 .content-wrap .widget-tabs .widget-menu-tab {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .property-single-wrap.v5 .content-wrap .widget-tabs .widget-menu-tab .item-title {
        min-width: max-content;
    }

    .property-single-wrap.v6 .content-wrap>* {
        padding: 15px;
    }

    .property-single-wrap.v6 .content-wrap>*>h4 {
        margin-bottom: 15px !important;
    }

    .property-single-wrap.v6 .slider-property-single-6 .swiper-item .image::before,
    .property-single-wrap.v6 .slider-property-single-6 .swiper-item .image img {
        border-radius: 0;
    }

    .property-single-wrap.v6 .slider-property-single-6 .swiper-item .head-title {
        bottom: 15px;
    }

    .property-single-wrap.v6 .slider-property-single-6 .swiper-item .head-title .list-icons-page {
        gap: 10px;
        margin-bottom: 15px;
    }

    .property-single-wrap.v7 .page-top {
        border-radius: 0;
    }

    .property-single-wrap.v7 .content-wrap>* {
        padding: 15px;
    }

    .property-single-wrap.v7 .content-wrap>*>h4 {
        margin-bottom: 15px !important;
    }

    #map {
        border-radius: 0;
    }

    .shop-detail-wrap {
        padding-top: 50px;
    }

    .flat-title {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        border-radius: 0 !important;
    }

    .flat-title.page-property-grid-2 {
        position: relative;
        z-index: 20;
    }

    .flat-title.page-property-list-3,
    .flat-title.page-property-list-2 {
        padding-top: 80px !important;
    }

    .flat-title.inner-page {
        height: unset;
    }

    .exclusive-properties .inner .box-dream .image img {
        height: 320px;
        object-fit: cover;
    }

    h2 {
        font-size: 26px !important;
        line-height: 36px !important;
    }

    h3 {
        font-size: 21px !important;
        line-height: 30px !important;
    }

    h4 {
        font-size: 18px !important;
    }

    .flat-cities .inner.style-1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px 28px;
        margin-bottom: 70px;
        grid-template-areas: "aa" "bb" "cc" "dd" "ee";
    }

    ul.grid-tags {
        gap: 10px;
    }

    ul.grid-tags li a {
        padding: 0 15px;
        line-height: 40px;
    }

    .widget-tabs.style-1 .widget-menu-tab .item-title {
        padding: 10px;
    }

    .luxury-home .counter {
        padding-top: 30px;
    }

    .luxury-home.style-3 .content {
        padding: 20px 30px;
    }

    .categories-item.style-1 {
        padding: 15px;
    }

    .categories-item.style-1 .icon {
        width: 70px;
        height: 70px;
    }

    .flat-news.style-2>div:first-child {
        margin-bottom: 70px;
    }

    .area-item {
        gap: 15px;
        margin-bottom: 30px;
    }

    .area-item .image {
        width: 70px;
        height: 70px;
    }

    .box-filter-small form>* {
        width: 100% !important;
        max-width: unset !important;
    }

    .box-filter-small form>* .btn-filter {
        justify-content: start;
    }

    .box-filter-small form ul.list {
        width: 100% !important;
        max-width: unset !important;
    }

    .open-filter .grid-4-cols .nice-select::after {
        display: none;
    }

    .property-grid-wrap.type-2-cols>.box-dream {
        max-width: 350px;
    }

    .page-head>div .widget-content-tab .widget-content-inner form {
        flex-wrap: wrap;
    }

    .page-head>div .widget-content-tab .widget-content-inner form .open-filter,
    .page-head>div .widget-content-tab .widget-content-inner form ul.list {
        width: 100% !important;
        max-width: unset !important;
    }

    .page-head>div .widget-content-tab .widget-content-inner form>* {
        width: 100% !important;
    }

    .page-head>div .widget-content-tab .widget-content-inner form>*.wg-filter>.btn-filter {
        justify-content: start;
    }

    .agency-single-wrap .wrap-inner .grid-box-dream {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 28px 28px;
    }

    .layout-wrap {
        padding: 20px;
    }

    .grid-checkbox {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3-cols {
        grid-template-columns: repeat(1, 1fr);
    }

    .luxury-home.style-1 .content {
        padding-top: 0;
    }

    .luxury-home.style-1 .content h2,
    .luxury-home.style-1 .content .text-content {
        margin-bottom: 15px;
    }

    .luxury-home.style-1 .heading-section {
        margin-top: 50px;
    }

    .luxury-home.style-4 .content {
        padding-top: 0;
    }

    .luxury-home.style-4 .content .counter {
        gap: 15px;
    }

    .luxury-home.style-4 .content .counter>div {
        gap: 15px;
    }

    .perfect-home .wrap-image .box {
        position: unset;
    }

    .perfect-home.style-1 .content-left {
        padding-top: 0;
    }

    .perfect-home.style-2 .wrap-image {
        flex-wrap: wrap;
        justify-content: center;
    }

    .perfect-home.style-2 .wrap-image>div {
        width: 100%;
    }

    .perfect-home.style-2 .wrap-image>div img {
        width: 100%;
    }

    .perfect-home.style-2 .wrap-image .item-1,
    .perfect-home.style-2 .wrap-image .item-2 {
        max-width: unset;
    }

    .perfect-home.style-2 .wrap-image .box {
        max-width: none;
        margin: 15px 0;
    }

    .perfect-home.style-3 .wrap-image {
        gap: 10px;
    }

    .perfect-home.style-3 .wrap-image .item-1,
    .perfect-home.style-3 .wrap-image .item-2 {
        max-width: unset;
    }

    .perfect-home.style-3 .wrap-image .box {
        margin-bottom: 0 !important;
        padding: 20px !important;
    }

    .work-with-us .wrap {
        margin-bottom: 50px;
    }

    .cities-item .content {
        top: 16px;
        left: 16px;
        width: calc(100% - 20px);
    }

    .property-grid-wrap>.box-dream .content {
        position: unset;
        padding: 15px 20px 10px;
    }

    .slider-cities-2,
    .slider-cities-1,
    .slider-discover,
    .slider-cities,
    .slider-recent-properties,
    .slider-news,
    .slider-homes {
        padding-right: 0;
        margin-right: 0;
    }

    .categories-item {
        padding: 15px;
    }

    .box-dream.style-absolute .content {
        bottom: 16px !important;
        left: 16px !important;
        right: 16px !important;
    }

    .box-dream.style-absolute .content .head {
        padding-top: 0 !important;
    }

    .box-dream.style-absolute .content .price {
        width: 100%;
        margin-bottom: 0;
    }

    .box-dream .content {
        bottom: 20px !important;
        left: 20px !important;
        padding: 15px 20px 10px;
    }

    .box-dream .content .title {
        font-size: 20px;
        line-height: 28px;
    }

    .box-dream .content .price {
        font-size: 18px;
    }
    .cities-item .content h4{
        font-size: 16px;
    }

    .box-dream .content .location p {
        font-size: 15px;
        line-height: 19px;
    }

    .box-dream .content .icon-box {
        width: 100%;
        gap: 10px;
    }

    .box-dream .content .icon-box .item {
        gap: 7px;
    }

    .box-dream .content .icon-box .item i,
    .box-dream .content .icon-box .item p {
        font-size: 15px;
    }

    .box-dream .content .price {
        margin-bottom: 7px;
    }

    .counter .number-counter {
        width: 100%;
        text-align: start;
    }

    .counter .number-counter>div {
        font-size: 24px;
        line-height: 16px;
        text-align: start !important;
    }

    .counter .number-counter.style-1 {
        padding: 20px 15px;
    }

    .counter .number-counter.style-1 div {
        font-size: 26px;
        line-height: 35px;
        margin-bottom: 15px;
    }

    .tf-section-default {
        border-radius: 0 !important;
    }

    .tf-section {
        padding: 40px 6px !important;
        border-radius: 0 !important;
    }

    .tf-section::before {
        border-radius: 0 !important;
    }

    .account-bar {
        padding: 40px 20px;
        border-radius: 0 !important;
        text-align: center;
    }

    .account-bar a {
        width: 100%;
    }

    .account-bar h3 {
        font-size: 21px;
        line-height: 30px;
    }

    .account-bar.style-1 {
        padding-left: 0;
        padding-right: 0;
    }

    .slider .wrap-slider {
        border-radius: 0 !important;
    }

    .slider .wrap-slider::before {
        border-radius: 0 !important;
    }

    .slider .wrap-slider .slider-content h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .slider.page-404 {
        padding-left: 0;
        padding-right: 0;
    }

    .slider.home2 .slider-content .list-icon {
        gap: 5px !important;
    }

    .slider.home2 .slider-content .list-icon .item {
        padding: 5px 10px 5px 5px !important;
    }

    .slider.home9 .top {
        text-align: center;
    }

    .slider.home9 .top .tf-button-primary,
    .slider.home9 .top h2 {
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .slider.home9 .top .box-agents {
        gap: 15px;
        align-items: center;
    }

    .slider.home9 .wrap-slider .slider-item {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .slider.home9 .wrap-slider .slider-item form {
        padding: 20px;
    }

    .slider.home10 .wrap-slider .counter {
        position: unset;
        border-radius: 0;
    }

    .estate-agent .image {
        height: unset;
    }

    .estate-agent .image .box-curved-text {
        top: 0;
        right: 0;
        left: unset;
    }

    .estate-agent .image .img-1,
    .estate-agent .image .img-2 {
        position: unset;
        width: 100%;
        max-width: unset;
    }

    .work-with-us-item {
        padding: 30px 0;
        gap: 15px;
    }

    .flat-experts .wrap-experts {
        margin-bottom: 70px;
    }

    .flat-testimonial>.divider {
        margin: 30px 0;
    }

    .box-icon {
        margin-bottom: 0;
    }

    .box-icon.has-bg {
        padding: 30px;
        margin-bottom: 0;
    }

    .parallax-wrap {
        padding: 50px 1rem !important;
    }

    .parallax-wrap .heading {
        font-size: 25px;
        line-height: 32px;
    }

    .properties-content-default .number {
        font-size: 23px;
        line-height: 30px;
    }

    .properties-content-default p {
        display: none;
    }

    .space-20 {
        display: none;
    }

    .wg-blog.style-row {
        flex-direction: column;
    }

    .wg-blog.style-row .image {
        width: 100%;
    }

    .wg-blog.style-row .content {
        width: 100%;
        border-radius: 0 0 16px 0;
    }

    .heading-section h2 {
        font-size: 23px;
        line-height: 30px;
    }

    .footer .footer-inner .footer-inner-wrap .center-footer>div {
        width: 100% !important;
    }

    .footer .footer-inner .footer-inner-wrap .center-footer>div .ft-title {
        margin-bottom: 10px !important;
    }

    .footer #logo-footer {
        width: 150px;
        height: 41px;
    }

    .footer #footer-logo {
        order: 1;
    }

    .footer #footer-logo img {
        width: 170px;
        height: 48px;
    }

    .footer .wg-social {
        order: 3;
    }

    .blog-single-wrap .image-head img {
        border-radius: 0;
    }

    .blog-single-wrap .blog-single-inner .wg-blockquote {
        padding: 40px;
    }

    .blog-single-wrap .blog-single-inner .grid-image-1,
    .blog-single-wrap .blog-single-inner .grid-image {
        flex-direction: column;
    }

    .blog-single-wrap .blog-single-inner .box-admin {
        flex-direction: column;
        padding: 30px;
    }

    .blog-single-wrap .blog-single-inner .nav-links {
        flex-direction: column;
        gap: 30px;
        align-items: unset;
    }

    .blog-single-wrap .blog-single-inner .nav-links>svg {
        margin: auto;
    }

    .blog-single-wrap .blog-single-inner .nav-links .next-post {
        justify-content: end;
    }

    .blog-single-wrap .blog-single-inner .reviews-wrap ul li {
        flex-direction: column;
    }

    .box-filter-small .wg-filter .open-filter {
        width: 100%;
    }

    .wg-filter .open-filter {
        padding: 15px !important;
    }
}

/*# sourceMappingURL=style.css.map */

.slogan-logo img{
    width: fit-content;
    height: 35px;
    object-fit: contain;
    margin: auto;
    display: block;
}
.inner-header{
    padding-inline: 1rem;
    /*margin-top: 59px;*/
    background-color: var(--Secondary);
    text-align: center;
    margin-bottom: 80px;
}
.inner-header .heading, .property_header{
    padding: 120px 0 50px;
}
.inner-header .heading h1{
    color: var(--White);
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
}
.inner-header .heading p{
    color: var(--White);
    margin: auto;
}
@media (max-width: 992px) {
    .inner-header .heading{
        padding: 50px 0;
    }
    .property_header{
        padding: 0;
    }
}
.filters_card{
    background-color: var(--light);
    padding: 25px 25px 30px;
    border-radius: 10px;
    position: relative;
    top: -70px;
}
.blog-section{
    padding-bottom: 80px;
}
.properties{
    padding: 80px 0 0;
}
.main-content{
    padding-bottom: 80px;
    /*padding-inline: 1rem;*/
}
.guide_card{
    padding: 25px;
    background-color: var(--White);
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.guide_card .icon{
    min-width: 60px;
    min-height: 60px;
    width: 60px;
    height: 60px;
    background-color: var(--Secondary);
    border-radius: 100px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Primary);
    font-size: 25px;
    margin-bottom: 1.2rem;
}
.guide_content h3{
    font-size: 22px;
    color: var(--atomic);
    font-weight: 600;
    margin-bottom: 10px;
}
.guide_content p{
    color: var(--Secondary);
    margin: 0;
}
.guide_content p > strong, .guide_content p > b{
    font-weight: 600;
}
.guide_content ul{
    margin-bottom: 0;
}
.buy_steps{
    background-color: #f9fafb;
    padding: 30px 1rem;
}
.steps_card{
    position: relative;
    background-color: var(--White);
    padding: 20px;
    border-left: 5px solid var(--Primary);
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.steps_card li{
    line-height: normal;
}
.bg_primary{
    background-color: var(--atomic);
}
.steps_card .badge{
    border-radius: 100px;
    font-weight: 600;
}
.steps_card .count{
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    background-color: var(--Primary);
    border-radius: 100px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.steps_card .content h3{
    font-weight: 600;
    font-size: 22px;
    color: var(--Secondary);
    line-height: normal;
    margin-bottom: 8px;
}
.steps_card .content p{
    margin-bottom: 1rem;
}
.steps_card .info-box{
    background-color: #f9fafb;
    padding: 16px;
    border-radius: 8px;
}
.steps_card .info-box ul{
    margin-bottom: 0;
}
.steps_card .info-box ul li{
    margin-bottom: 0;
}
.steps_card .info-box h4{
    font-size: 16px;
    font-weight: 600;
    color: var(--Secondary);
    margin-bottom: .25rem;
}
.steps_card .content h4{
    font-size: 16px;
    font-weight: 600;
    color: var(--Secondary);
    margin-bottom: .25rem;
}
.eligibility_section{
    padding: 50px 1rem;
}
.gray_card{
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
}
.gray_card h4{
    color: var(--Secondary);
    font-weight: bold;
    font-size: 20px;
}
.list_icon h5{
    font-size: 18px;
    font-weight: bold;
    color: var(--Secondary);
}
.list_icon li{
    margin-bottom: .5rem;
}
.list_icon i{
    color: var(--Primary);
}
.table_custom thead th{
    background-color: var(--Secondary);
    color: var(--White);
    vertical-align: middle;
    padding: 10px 20px !important;
    font-weight: 600;
}
.table_custom tbody th, .table_custom tbody td{
    vertical-align: middle;
    padding: 10px 20px !important;
}
.table_custom tbody th{
    font-weight: 600;
}
.custom_card{
    background-color: var(--White);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.custom_card h3{
    font-size: 20px;
    font-weight: bold;
    color: var(--Secondary);
}
.custom_card ul{
    margin-bottom: 0;
}
.documentation_section{
    background-color: #f9fafb;
    padding: 30px 1rem;
}
.text_primary{
    color: var(--Secondary);
    font-weight: bold;
    font-size: 1rem;
}
.legal_consultation{
    background-color: var(--White);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.financing_options{
    padding: 50px 1rem;
}
.property_types{
    background-color: #f9fafb;
    padding: 50px 1rem;
}
.pb-80{
    padding-bottom: 80px !important;
}
.py-80{
    padding: 80px 0 !important;
}
.py-40{
    padding: 40px 0 !important;
}
.form-control{
    border-radius: 12px;
    border: 1px solid var(--Border) !important;
    padding: 12px 20px;
    min-height: 54px;
    font-size: 15px;
}
.form-select{
    --bs-form-select-bg-img: unset;
}
.comparison_card{
    background-color: var(--White);
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.comparison_card_content {
    padding: 20px;
}
.comparison_card h3{
    font-size: 18px;
    font-weight: bold;
    color: var(--Secondary);
}
.comparison_card ul li{
    line-height: 1.5;
}
.comparison_card_img img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}
.table_custom thead th{
    background-color: var(--Secondary);
    color: var(--White);
    vertical-align: middle;
    padding: 10px 20px !important;
    font-weight: 600;
}
.table_custom tbody th, .table_custom tbody td{
    vertical-align: middle;
    padding: 10px 20px !important;
}
.table_custom tbody th{
    font-weight: 600;
}
.custom_card h3 i{
    font-size: 30px;
    color: var(--Secondary);
}

.blog-content{
    padding-inline: 1rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6{
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #111;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content a {
    color: #0077cc;
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 6px;
}

.blog-content blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid var(--Secondary);
    font-style: italic;
}

.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-content code {
    background: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
}
.form-label{
    font-weight: 500;
    margin-bottom: .75rem;
}
.stretched-link::after{
    z-index: 99 !important;
}

.list-social li{
    list-style: none;
}
@media (max-width: 992px) {
    .heading-section{
        margin-bottom: 0;
    }
    .heading-section .text{
        margin-bottom: 20px;
    }
    .luxury-home .content h2{
        margin-bottom: 10px;
    }
}

.tf-button-primary.btn-white{
    background-color: var(--White) !important;
    color: var(--Secondary) !important;
}
.nav-pills .nav-link{
    padding: 18px 26px;
    border-radius: 12px;
    border: 0;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
}
.nav-pills .nav-link.active{
    background-color: var(--atomic);
    color: var(--White);
}
.section{
    padding-inline: 1rem;
}

.segment-pill {
    display: flex;
    justify-content: space-between;
    background: #f3f3f3;
    padding: 5.8px;
    border-radius: 12px;
    gap: 2px;
    width: fit-content;
    margin: auto;
}

.segment-pill label {
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: 0.25s;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.segment-pill label:hover {
    background: rgba(247, 90, 42, 0.15);
}

.btn-check:checked + label {
    background: var(--atomic) !important;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(247, 90, 42, 0.4);
}
.form-group{
    margin-bottom: 1rem;
}
.text-primary{
    color: var(--PrimaryDark) !important;
}
.looking_card{
    margin-bottom: 1rem;
    background: rgba(247, 90, 42, 0.15);
    padding: 5px 5px 5px 16px;
    border-radius: 12px;
}
.modal_card{
    border: 1px solid #f75a2a70;
    background-image: linear-gradient(to bottom, rgba(247, 90, 42, 0.15), #ffffff33);
    padding: 20px;
    border-radius: 18px;
}
.selling_card .wrap{
    background-color: #000 !important;
    background-image: url("../images/bg-luxury-home.png?53");
    background-size: cover;
    background-position: right;
    background-blend-mode: screen;
}
.footer-links a, .footer-links li{
    color: var(--light);
    line-height: 1;
    font-weight: 600;
}
.footer-links li:not(:last-child){
    border-right: 1px solid #fff;
    padding-right: 10px;
}
.contact_bg{
    background-color: #f5f5f5;
    padding: 30px 20px;
    border-radius: 12px;
    height: 100%;
}
.text-primary-2{
    color: var(--atomic);
}
.address-info i{
    color: var(--atomic);
}
.address-info li{
    margin-bottom: 1rem;
}
.contact_bg iframe{
    border-radius: 12px;
}
#pDetails .modal-dialog{
    margin-top: 0;
    margin-bottom: 0;
}
#pDetails .modal-header{
    border: 0;
}
.filter_section{
    border-radius: 12px;
}
.search_filter{
    position: relative;
}
.search_filter button{
    position: absolute;
    top: 6px;
    right: 7px;
    padding: 12px;
}
.search_filter input{
    padding-left: 40px !important;
}
.search_filter span{
    position: absolute;

    top: 16px;
    left: 7px;
    font-size: 20px;
    display: block;
    line-height: 1;
    color: var(--atomic);
}
input{
    box-shadow: none !important;
}
.dropdown-menu .nav-link{
    font-size: 15px;
    border-inline: 0;
    border-top: 0;
    color: var(--dark);
}
.dropdown-menu .nav-link.active{
    border-bottom: 1px solid var(--atomic);
    color: var(--atomic);
}
.form-check-label{
    margin-left: 6px;
    font-size: 15px;
}
.dropdown-menu .tab-content{
    padding: 10px 0;
}
.dropdown-menu .tab-content .form-check-input{
    border-radius: 100px;
}
button.form-control.dropdown-toggle{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filter_section .dropdown > .d-flex button{
    padding: 8px 26px;
    border-radius: 8px;
}
.filter_section label{
    font-size: 15px;
}
.toast{
    position: fixed;
    top: 5%;
    z-index: 99999;
    left: 0;
    right: 0;
    border: 0;
    border-radius: 12px;
    padding: 8px;
    font-size: 15px;
    backdrop-filter: blur(16px);
}
.success-bg{
    background-color: #d1e7de;
}
.danger-bg{
    background-color: #f8d7db;
}
.guide_content hr{
    border-style: solid;
    border-bottom: 0;
    border-color: var(--atomic);
    opacity: 1 !important;
    margin: 10px 0;
    border-top-width: 0.5px;
}
.flat-testimonial .style-5 {
    position: relative;
    background-color: #f0f0f0;
    border-radius: 0;
    padding: 40px 0;
    /*box-shadow: 7px 10px 20px -24px #000;*/
}

.flat-testimonial .style-5:after{
    content: "";
    position: absolute;
    background-image: linear-gradient(to left, #f0f0f0, transparent);
    height: 100%;
    width: 80px;
    left: -70px;
    top: 0;
}
.flat-testimonial .style-5:before{
    content: "";
    position: absolute;
    background-image: linear-gradient(to right, #f0f0f0, transparent);
    height: 100%;
    width: 80px;
    right: -70px;
    top: 0;
}
/* review */
.testimonials-item.background-white {
    padding: 20px;
    background-color: var(--White);
    border-radius: 12px;
}
.testimonials-item.background-white.type-1 {
    background-color: #F9F9F9;
}
.testimonials-item.background-white .image {
    width: 80px;
    height: 80px;
}
.testimonials-item.background-white .title {
    font-weight: 500;
}
.testimonials-item.background-white .description {
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 92px;
}
.testimonials-item .head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin-bottom: 10px;
}
.testimonials-item .head .image {
    width: 70px;
    height: 70px;
    border-radius: 100px;
    overflow: hidden;
}
.testimonials-item .head .image img {
    width: 100%;
}
.testimonials-item .head .title {
    font-weight: 500;
    line-height: 28px;
    color: var(--Secondary);
}
.testimonials-item .description {
    font-weight: 500;
    color: var(--Secondary);
}
.testimonials-item > svg{
    position: absolute;
}
.testimonials-item.background-white svg {
    top: 30px;
    right: 43px;
}
.flat-testimonial.reviews  .testimonials.style-5{
    padding: 80px 0;
}
.flat-testimonial.reviews .testimonials.style-5:after{
    content: "";
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    width: 100%;
    height: 100%;
}
.flat-testimonial.reviews .testimonials.style-5:before{
    display: none;
}
.flat-testimonial.reviews .testimonials.style-5{
    background-image: url('../images/review-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
/* footer */
.footer-main{
    padding: 40px 1rem 0;
    background-color: #000;
}
.footer-widget {
    position: relative;
}
.footer-widget .info-title {
    color: #BEBDBD;
    margin-bottom: 5px;
}
.footer-widget .info-phone a,
.footer-widget .info-mail a {
    color: #ffffff;
}
.link-style1 h6, .social-widget h6{
    font-size: 20px;
    font-weight: 600;
    color: var(--atomic);
    margin-bottom: 1rem;
}
.link-style1 a {
    color: #BEBDBD;
    display: block;
    line-height: 40px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.link-style1 a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.social-style1 i {
    color: #BEBDBD;
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.social-style1 i:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}
.white-bdrt1 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.text-gray {
    color: #BEBDBD;
}
.footer-logo img{
    width: 200px;
    object-fit: contain;
    margin-bottom: 2rem;
}
.f_bottom_links ul li{
    line-height: 1;
}
.f_bottom_links ul li:not(:last-child){
    padding-right: 1rem;
    border-right: 1px solid #BEBDBD;
}
form.style-line-bottom {
    position: relative;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

form textarea.style-1,
form input[type=text].style-1,
form input[type=password].style-1,
form input[type=datetime].style-1,
form input[type=datetime-local].style-1,
form input[type=date].style-1,
form input[type=month].style-1,
form input[type=time].style-1,
form input[type=week].style-1,
form input[type=number].style-1,
form input[type=email].style-1,
form input[type=url].style-1,
form input[type=search].style-1,
form input[type=tel].style-1,
form input[type=color].style-1 {
    height: 44px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    color: var(--White);
}

form textarea.style-1::placeholder,
form input[type=text].style-1::placeholder,
form input[type=password].style-1::placeholder,
form input[type=datetime].style-1::placeholder,
form input[type=datetime-local].style-1::placeholder,
form input[type=date].style-1::placeholder,
form input[type=month].style-1::placeholder,
form input[type=time].style-1::placeholder,
form input[type=week].style-1::placeholder,
form input[type=number].style-1::placeholder,
form input[type=email].style-1::placeholder,
form input[type=url].style-1::placeholder,
form input[type=search].style-1::placeholder,
form input[type=tel].style-1::placeholder,
form input[type=color].style-1::placeholder {
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
}
.subscribe_heading h3, .subscribe_heading p{
    color: #BEBDBD;
}
.subscribe_heading h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--atomic);
}
.developer-partners-section{
    padding-bottom: 80px;
}
.properties.featured{
    background-color: #f8f8f8;
    padding: 80px 1rem;
}
.box-dream-feature small{
    font-size: 12px;
    font-weight: normal;
}
.box-dream-feature .content .location{
    margin-bottom: 0;
    gap: 5px;
}
.box-dream-feature .content .location .icon i{
    font-size: 16px;
    display: block;
    line-height: 1;
}
.box-dream-feature .content p{
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

}
.box-dream-feature hr{
    border-style: solid;
    border-bottom: 0;
    border-color: var(--atomic);
    opacity: 1 !important;
    margin: 10px 0;
    border-top-width: 0.5px;
}
.box-dream-feature .icon-box{
    flex-wrap: wrap;
    gap: 10px;
}
.box-dream-feature .icon-box .item:not(:last-child){
    border-right: 1px solid var(--atomic);
    padding-right: 10px;
}
.box-dream-feature .icon-box p{
    white-space: nowrap;
    line-height: 1;
    font-size: 12px;
    background: #e0e0e0;
    padding: 2px 8px;
    border-radius: 100px;
}
.guide_content img{
    min-width: 45px;
    min-height: 45px;
    object-fit: contain;
    margin-bottom: 0;
    background: var(--White);
    border-radius: 100px;
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    padding: 4px;
}
.dropdown-menu{
    border-radius: 12px;
}
.filter_section .dropdown{
    margin-bottom: 1rem;
}
.filter_section .dropdown-menu{
    min-width: 400px;
}
.filter_section .dropdown-menu label{
    font-size: 14px;
}
.filter_buttons button {
    padding: 17px 26px;
}
.range-container {
    position: relative;
    width: 100%;
    height: 50px;
    padding-top: 20px;
    margin-bottom: 30px;
}

/* Floating Bubble */
.range-bubble {
    position: absolute;
    top: 15px;
    transform: translateX(-35%);
    background: var(--atomic);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    transition: left 0.1s ease-out;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    visibility: hidden; /* Hide the bubble initially */
}

/* Slider (range input) base style */
input[type=range].custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--atomic), #e0e0e0);
    border-radius: 10px;
    outline: none;
    transition: background 0.1s ease-out;
    overflow: visible; /* Allow thumb to be fully visible */
}

/* Thumb styling */
input[type=range].custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid var(--atomic);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: 0.2s;
}

input[type=range].custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Firefox thumb style */
input[type=range].custom-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid var(--atomic);
    border-radius: 50%;
    cursor: pointer;
}

/* Prevent thumb from getting cut off */
input[type=range].custom-range::-ms-thumb {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid var(--atomic);
    border-radius: 50%;
    cursor: pointer;
}
.card_icon{
    background-color: var(--atomic);
    color: var(--White);
    min-width: 40px;
    min-height: 40px;
    display: flex;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.icon_heading h3{
    font-size: 20px;
    margin: 0;
}
.guide_card .d-flex{
    align-items: center;
    margin-bottom: 1rem;
}
.pt80{
    padding-top: 80px;
}
.pb80{
    padding-bottom: 80px;
}
.form-check-input[type=radio]{
    margin-top: 0.15em;
}
textarea{
    box-shadow: none !important;
}
.developer_img {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.0509803922);
}
.developer_img > img {
    min-width: 45px;
    min-height: 45px;
    object-fit: contain !important;
    margin-bottom: 0;
    background: var(--White);
    border-radius: 8px;
    width: 45px !important;
    height: 45px !important;
    border: 1px solid #ddd;
    padding: 4px;
    transform: unset;
}
.copyright-text{
    margin: 0;
}
.inner-page-form .contact_bg{
    background-color: var(--Secondary);
    color: var(--White);
}
.inner-page-form .heading-section{
    text-align: center;
}
@media (max-width: 991px) {
    .segment-pill label {
        padding: 10px 12px;
    }
}
.looking_card .segment-pill{
    background-color: transparent;
}
.developer-partners-info .item{
    display: block !important;
    height: unset !important;
    padding: 1rem 20px !important;
}
.developer-partners-info .item p{
    line-height: normal;
    font-weight: 500;
    margin: 5px 0 !important;
}
.developer-partners-info .item p > span{
    font-size: 16px;
    font-weight: 600;
}
.developer-partners-info .item a{
    color: var(--atomic);
    font-size: 14px;
    font-weight: 600;
}
.custom-tooltip {
    --bs-tooltip-bg: var(--dark);
    --bs-tooltip-color: var(--White);
    font-size: 13px;
}
.popover-header{
    background-color: var(--atomic);
    color: var(--White);
    font-size: 13px;
}
.custom-tooltip i{
    color: var(--bs-success);
    font-size: 8px;
    vertical-align: 2px;
    opacity: 0.8;
}
.popover-body{
    padding: 8px 16px;
}
.popover-body p{
    font-size: 13px;
}
.link-text{
    color: var(--atomic);
}
.developer-partners-image img{
    border-radius: 8px;
    box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.1);
}
.text-gold { color: var(--uae-gold); }
.text-green { color: var(--uae-green); }
.chart-wrapper {
    max-width: 260px;
    margin: 0 auto;
}
.total-box {
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-monthly {
    background: rgba(201,162,77,0.12);
    color: var(--uae-dark);
}
.total-upfront {
    background: rgba(15,123,108,0.12);
    color: var(--uae-dark);
}
.owner_image img{
    height: 400px;
    object-fit: contain;
    border: 1px solid var(--Border);
    border-radius: 12px;
    box-shadow: 0 6px 15px 0 rgba(64, 79, 104, 0.0509803922);
}
.owner_content h2 span{
    color: var(--atomic);
}
.owner_content p{
    line-height: normal;
}
@media (max-width: 992px) {
    .slider.home7 .wrap-slider .slider-item .slider-content h1{
        font-size: 20px;
        margin-bottom: 5px;
        line-height: normal;
    }
    .slider.home7 .wrap-slider .slider-item .slider-content .text-1{
        font-size: 15px;
        margin-bottom: 10px;
        line-height: normal;
    }
    .slider.home7 .wrap-slider .slider-item .slider-content .text{
        font-size: 14px;
        margin-bottom: 5px;
    }
    .slider.home7 .wrap-slider .slider-item .slider-content{
        transform: scale(0.8);
    }

}
.guide_section h1, .guide_section h2, .guide_section h3, .guide_section h4, .guide_section h5, .guide_section h6{
    margin-top: 0;
}
.guide_section ul, .guide_section ol{
    margin: 0;
}
.guide_section ul.list-unstyled{
    margin: 0;
    padding: 0;
}
.guide_section p{
    margin-bottom: 1rem;
}
.guide_section .tf-button-primary{
    color: var(--White);
}
.guide_section a{
    text-decoration: none !important;
}

