.heroWrapper {
    position: relative;
}
.heroWrapper .hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    max-height: 742px;
    overflow: hidden;
}
.heroWrapper .hero .heroBackground {
    width: 100%;
    height: 100%;
}
.heroWrapper .hero .heroBackground img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.heroWrapper .hero .heroContent {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 20, 30, 0.55),
        rgba(15, 20, 30, 0.25)
    );
}
.heroWrapper .hero .heroContent .contentContainer {
    width: 100%;
    height: 100%;
    max-width: 1360px;
    margin-inline: auto;
    padding-inline: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.heroWrapper .hero .heroContent .contentContainer .containerTitle {
    font-size: 3.125rem;
    margin-bottom: 24px;
}
.heroWrapper .hero .heroContent .contentContainer .containerTitle span {
    display: block;
}
.heroWrapper .hero .heroContent .contentContainer .containerSubtitle {
    margin-bottom: 28px;
    font-size: 1.35rem;
    font-weight: 300;
    color: #eee;
}
.heroWrapper .hero .heroContent .contentContainer .containerDesc {
    display: flex;
    font-size: 1.025rem;
    align-items: center;
    font-weight: 400;
    word-spacing: 2px;
    gap: 8px;
    color: var(--accent);
}
.heroWrapper .hero .heroContent .contentContainer .containerDesc svg {
    width: 24px;
    height: 24px;
}
.heroWrapper .heroSearchBox {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 100%;
    max-width: 1120px;
    padding-inline: 32px;
    z-index: 20;
}
.heroWrapper .heroSearchBox .searchBoxContainer {
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    padding: 54px 34px 34px;
    gap: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(20, 20, 20, 0.06);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04);
    transition: 0.35s;
}
.heroWrapper .heroSearchBox .searchBoxContainer:hover {
    transform: translateY(-2px);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.11),
        0 12px 35px rgba(0, 0, 0, 0.05);
}
.heroWrapper .heroSearchBox .searchBoxContainer .containerHeader {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    inset: -24px 34px auto auto;
    margin-inline: auto;
    align-items: center;
    z-index: 5;
}
.heroWrapper .heroSearchBox .searchBoxContainer .containerHeader .headerTabs {
    display: flex;
    gap: 8px;
    padding: 6px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerHeader
    .headerTabs
    .tabThumb {
    height: 42px;
    min-width: 88px;
    padding-inline: 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: 0.3s;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerHeader
    .headerTabs
    .tabThumb:hover {
    color: var(--text-primary);
    background: #fafafa;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerHeader
    .headerTabs
    .tabThumb.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}
.heroWrapper .heroSearchBox .searchBoxContainer .containerMain {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.heroWrapper .heroSearchBox .searchBoxContainer .containerMain .searchRow {
    width: 100%;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .searchRow
    .searchThumb {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
    padding-inline: 24px;
    border-radius: 18px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition:
        0.3s border,
        0.3s background,
        0.3s box-shadow,
        0.3s transform;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .searchRow
    .searchThumb:hover {
    background: #fff;
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .searchRow
    .searchThumb:focus-within {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .searchRow
    .searchThumb
    svg {
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.9;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .searchRow
    .searchThumb
    input {
    width: 100%;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .searchRow
    .searchThumb
    input::-moz-placeholder {
    color: #9a9a9a;
    font-weight: 400;
    font-size: 0.8125rem;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .searchRow
    .searchThumb
    input::placeholder {
    color: #9a9a9a;
    font-weight: 400;
    font-size: 0.8125rem;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .searchRow
    .searchThumb
    input:focus {
    outline: none;
}
.heroWrapper .heroSearchBox .searchBoxContainer .containerMain .filterRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 180px;
    gap: 18px;
    align-items: end;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb {
    display: flex;
    flex-direction: column;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb:hover
    .thumbInput {
    background: #fff;
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb:focus-within
    .thumbInput {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb
    .thumbLabel {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #8d8d8d;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb
    .thumbInput {
    display: flex;
    align-items: center;
    height: 60px;
    padding-inline: 18px;
    border-radius: 18px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition:
        0.3s,
        box-shadow 0.3s;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb
    .thumbInput
    input {
    width: 100%;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb
    .thumbInput
    input::-moz-placeholder {
    font-size: 0.8125rem;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb
    .thumbInput
    input::placeholder {
    font-size: 0.8125rem;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb
    .thumbInput
    .el-select {
    width: 100%;
    height: 100%;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterThumb
    .thumbInput
    .el-select
    .el-select__wrapper {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: right;
    height: 100%;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterSubmit {
    height: 60px;
    border: none;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition:
        transform 0.3s,
        box-shadow 0.3s,
        filter 0.3s;
    box-shadow: 0 12px 28px rgba(212, 169, 106, 0.28);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterSubmit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(212, 169, 106, 0.35);
    filter: brightness(1.03);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterSubmit:hover
    svg {
    transform: translateX(-4px);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterSubmit:active {
    transform: translateY(0) scale(0.98);
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterSubmit
    svg {
    transition: 0.3s;
}
.heroWrapper
    .heroSearchBox
    .searchBoxContainer
    .containerMain
    .filterRow
    .filterSubmit
    span {
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.main {
    padding-top: 184px;
    position: relative;
    z-index: 1;
}
.main .mainSection:not(:last-child) {
    margin-bottom: 72px;
}
.main .mainSection.blogsSection {
    background: #f2f0ea;
    padding-block: 114px;
}
.main .mainSection.trustSection {
    background: #f2f0ea;
    padding-block: 114px;
}
.main .mainSection.trustSection .sectionContainer {
    gap: 90px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}
.main .mainSection.trustSection .sectionContainer .containerPic {
    height: 560px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px -18px rgba(30, 35, 40, 0.16);
}
.main .mainSection.trustSection .sectionContainer .containerPic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.main
    .mainSection.trustSection
    .sectionContainer
    .containerContent
    .contentMiniTitle {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    word-spacing: 3px;
}
.main
    .mainSection.trustSection
    .sectionContainer
    .containerContent
    .contentTitle {
    font-size: 2.125rem;
    font-weight: 650;
    line-height: 1.35;
    margin-bottom: 24px;
}
.main
    .mainSection.trustSection
    .sectionContainer
    .containerContent
    .contentTitle
    span {
    display: block;
}
.main
    .mainSection.trustSection
    .sectionContainer
    .containerContent
    .contentDesc {
    max-width: 460px;
    margin-bottom: 52px;
    font-size: 0.9375rem;
    line-height: 2;
    color: var(--text-secondary);
}
.main
    .mainSection.trustSection
    .sectionContainer
    .containerContent
    .contentStatistics {
    gap: 56px;
    display: flex;
}
.main
    .mainSection.trustSection
    .sectionContainer
    .containerContent
    .contentStatistics
    .statisticThumb
    .thumbValue {
    font-weight: 800;
    font-size: 2.125rem;
    direction: ltr;
    text-align: right;
}
.main
    .mainSection.trustSection
    .sectionContainer
    .containerContent
    .contentStatistics
    .statisticThumb
    .thumbTitle {
    font-size: 0.9375rem;
    margin-top: 6px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.main .mainSection.whySection {
    padding-top: 32px;
    margin-bottom: 115px;
}
.main .mainSection.whySection .sectionContainer .containerHeader {
    text-align: center;
    margin-bottom: 54px;
}
.main .mainSection .sectionContainer {
    padding-inline: 32px;
    max-width: 1360px;
    margin-inline: auto;
}
.main .mainSection .sectionContainer .containerHeader {
    margin-bottom: 32px;
}
.main .mainSection .sectionContainer .containerHeader .headerMiniTitle {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 0.9375rem;
    font-weight: 600;
    word-spacing: 3px;
}
.main .mainSection .sectionContainer .containerHeader .headerTitle {
    font-size: 2.125rem;
    font-weight: 650;
    line-height: 1.35;
}
.main .mainSection .sectionContainer .containerHeader .headerTitle span {
    display: block;
}
.main .mainSection .sectionContainer .containerMain .mainCategories {
    gap: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb {
    width: 100%;
    cursor: pointer;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    transition: 0.35s;
    pointer-events: none;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb:hover::after {
    border-color: rgba(212, 175, 55, 0.55);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb:hover
    .thumbPic::before {
    left: 160%;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb:hover
    .thumbPic::after {
    background: linear-gradient(
        to top,
        rgba(8, 10, 15, 0.88),
        rgba(8, 10, 15, 0.28) 45%,
        transparent
    );
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb:hover
    .thumbPic
    img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.08);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb:hover
    .thumbTitle {
    transform: translateY(-8px);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb:hover
    .thumbTitle::after {
    width: 100%;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb
    .thumbPic {
    width: 100%;
    height: 100%;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb
    .thumbPic::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -80%;
    width: 70%;
    height: 240%;
    transform: rotate(28deg);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.32),
        transparent
    );
    transition: 1s;
    z-index: 3;
    pointer-events: none;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb
    .thumbPic::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: 0.45s;
    background: linear-gradient(
        to top,
        rgba(8, 10, 15, 0.75),
        rgba(8, 10, 15, 0.15) 45%,
        transparent
    );
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb
    .thumbPic
    img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition:
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.6s;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb
    .thumbTitle {
    position: absolute;
    right: 24px;
    bottom: 20px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 750;
    z-index: 4;
    transition: 0.35s;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainCategories
    .categoryThumb
    .thumbTitle::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: var(--accent);
    transition: 0.35s;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesHeader {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(30, 35, 40, 0.09);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesHeader
    .headerTitle {
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesHeader
    .headerTitle
    span {
    color: var(--accent);
    margin-left: 4px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesHeader
    .headerTitle::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--accent);
    position: absolute;
    inset: auto 0 -20px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesHeader
    .headerLink {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.25s ease;
    padding: 6px 12px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesHeader
    .headerLink:hover {
    color: var(--accent);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesHeader
    .headerLink:hover
    svg {
    transform: translateX(-4px);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesHeader
    .headerLink
    svg {
    width: 16px;
    height: 16px;
    transition: all 0.25s ease;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .swiper {
    padding-block: 14px 64px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb {
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(30, 35, 40, 0.09);
    box-shadow: 0 8px 24px -10px rgba(30, 35, 40, 0.12);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s,
        border-color 0.45s;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -90%;
    width: 70%;
    height: 260%;
    z-index: 4;
    transform: rotate(28deg);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transition: 1s;
    pointer-events: none;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 106, 0.35);
    box-shadow: 0 24px 55px rgba(17, 17, 17, 0.16);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb:hover::before {
    left: 170%;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb:hover
    .thumbPic::after {
    opacity: 1;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb:hover
    .thumbPic
    img {
    transform: scale(1.08);
    filter: brightness(1.06) saturate(1.08);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb:hover
    .thumbContent
    .contentPice
    .priceNumber {
    color: var(--accent);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb:hover
    .thumbContent
    .contentDetails::before {
    width: 100%;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb:hover
    .thumbContent
    .contentDetails
    .detailsThumb {
    color: #111;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbPic {
    height: 236px;
    overflow: hidden;
    position: relative;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbPic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.08) 45%,
        transparent
    );
    opacity: 0.75;
    transition: 0.45s;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbPic
    img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbContent {
    padding: 22px 24px 28px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbContent
    .contentPice {
    gap: 8px;
    display: flex;
    margin-bottom: 4px;
    align-items: baseline;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbContent
    .contentPice
    .priceNumber {
    font-size: 1.5rem;
    font-weight: 800;
    transition:
        color 0.35s,
        transform 0.35s;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbContent
    .contentPice
    .priceUnit {
    font-size: 0.9375rem;
    font-weight: 500;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbContent
    .contentAddress {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbContent
    .contentDetails {
    gap: 22px;
    display: flex;
    margin-top: 16px;
    padding-top: 16px;
    position: relative;
    align-items: center;
    border-top: 1px solid rgba(30, 35, 40, 0.09);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbContent
    .contentDetails::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.45s;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainProperties
    .propertiesMain
    .mainList
    .listThumb
    .thumbContent
    .contentDetails
    .detailsThumb {
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: color 0.35s;
}
.main .mainSection .sectionContainer .containerMain .mainWhy {
    gap: 2px;
    display: grid;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(30, 35, 40, 0.09);
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(30, 35, 40, 0.09);
}
.main .mainSection .sectionContainer .containerMain .mainWhy .whyThumb {
    background: white;
    padding: 52px 34px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainWhy
    .whyThumb
    .thumbIcon {
    width: 52px;
    height: 52px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    margin-bottom: 28px;
    color: var(--accent);
    justify-content: center;
    border: 1px solid var(--accent);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainWhy
    .whyThumb
    .thumbIcon
    svg {
    width: 20px;
    height: 20px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainWhy
    .whyThumb
    .thumbTitle {
    font-weight: 650;
    font-size: 1.05rem;
    margin-bottom: 12px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainWhy
    .whyThumb
    .thumbDesc {
    font-size: 0.875rem;
    line-height: 1.85rem;
    color: var(--text-secondary);
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainBlogs
    .blogThumb
    .thumbPic {
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainBlogs
    .blogThumb
    .thumbPic
    img {
    width: 100%;
    height: 100%;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainBlogs
    .blogThumb
    .thumbContent
    .contentCat {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainBlogs
    .blogThumb
    .thumbContent
    .contentTitle {
    font-size: 1.25rem;
    font-weight: 550;
    line-height: 1.85;
    margin-bottom: 14px;
}
.main
    .mainSection
    .sectionContainer
    .containerMain
    .mainBlogs
    .blogThumb
    .thumbContent
    .contentDate {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@media (max-width: 1200px) {
    .heroWrapper .hero .heroContent .contentContainer {
        padding-inline: 24px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerTitle {
        font-size: 2.75rem;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerSubtitle {
        font-size: 1.2rem;
    }
    .heroWrapper .heroSearchBox {
        padding-inline: 24px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer {
        padding: 50px 28px 28px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer .containerMain .filterRow {
        grid-template-columns: repeat(2, 1fr) 160px;
    }
    .main .mainSection.trustSection .sectionContainer {
        gap: 60px;
    }
    .main .mainSection.trustSection .sectionContainer .containerPic {
        height: 480px;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentTitle {
        font-size: 1.875rem;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentStatistics {
        gap: 40px;
    }
    .main .mainSection .sectionContainer {
        padding-inline: 24px;
    }
    .main .mainSection .sectionContainer .containerMain .mainCategories {
        grid-template-columns: repeat(3, 1fr);
    }
    .main .mainSection .sectionContainer .containerMain .mainWhy {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .heroWrapper .hero {
        max-height: 640px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerTitle {
        font-size: 2.25rem;
        margin-bottom: 18px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerSubtitle {
        font-size: 1.05rem;
        margin-bottom: 22px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerDesc {
        font-size: 0.95rem;
    }
    .heroWrapper .heroSearchBox {
        max-width: 720px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer {
        padding: 46px 24px 24px;
        gap: 22px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer .containerMain {
        gap: 18px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer .containerMain .filterRow {
        grid-template-columns: repeat(2, 1fr);
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterSubmit {
        grid-column: span 2;
    }
    .main {
        padding-top: 140px;
    }
    .main .mainSection:not(:last-child) {
        margin-bottom: 56px;
    }
    .main .mainSection.blogsSection,
    .main .mainSection.trustSection {
        padding-block: 80px;
    }
    .main .mainSection.trustSection .sectionContainer {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .main .mainSection.trustSection .sectionContainer .containerPic {
        height: 400px;
        order: -1;
    }
    .main .mainSection.whySection {
        margin-bottom: 80px;
    }
    .main .mainSection .sectionContainer .containerHeader .headerTitle {
        font-size: 1.75rem;
    }
    .main .mainSection .sectionContainer .containerMain .mainCategories {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .main .mainSection .sectionContainer .containerMain .mainWhy {
        grid-template-columns: repeat(2, 1fr);
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainBlogs
        .blogThumb
        .thumbPic {
        height: 220px;
    }
}
@media (max-width: 768px) {
    .heroWrapper .hero {
        max-height: 560px;
    }
    .heroWrapper .hero .heroContent .contentContainer {
        padding-inline: 20px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerTitle {
        font-size: 1.85rem;
        margin-bottom: 14px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerSubtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerDesc {
        font-size: 0.875rem;
    }
    .heroWrapper .heroSearchBox {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        padding-inline: 20px;
        margin-top: -40px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer {
        padding: 40px 20px 20px;
        border-radius: 18px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer .containerHeader {
        inset: -20px 20px auto auto;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerHeader
        .headerTabs
        .tabThumb {
        height: 36px;
        min-width: 72px;
        padding-inline: 16px;
        font-size: 13px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .searchRow
        .searchThumb {
        height: 56px;
        padding-inline: 18px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer .containerMain .filterRow {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterThumb
        .thumbInput {
        height: 52px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterSubmit {
        grid-column: auto;
        height: 52px;
    }
    .main {
        padding-top: 100px;
    }
    .main .mainSection:not(:last-child) {
        margin-bottom: 48px;
    }
    .main .mainSection.blogsSection,
    .main .mainSection.trustSection {
        padding-block: 60px;
    }
    .main .mainSection.trustSection .sectionContainer .containerPic {
        height: 320px;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentTitle {
        font-size: 1.5rem;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentDesc {
        max-width: 100%;
        margin-bottom: 36px;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentStatistics {
        gap: 28px;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentStatistics
        .statisticThumb
        .thumbValue {
        font-size: 1.5rem;
    }
    .main .mainSection.whySection {
        margin-bottom: 60px;
        padding-top: 20px;
    }
    .main .mainSection .sectionContainer {
        padding-inline: 20px;
    }
    .main .mainSection .sectionContainer .containerHeader {
        margin-bottom: 24px;
    }
    .main .mainSection .sectionContainer .containerHeader .headerTitle {
        font-size: 1.5rem;
    }
    .main .mainSection .sectionContainer .containerMain .mainCategories {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainProperties
        .propertiesHeader
        .headerTitle {
        font-size: 1.1rem;
    }
    .main .mainSection .sectionContainer .containerMain .mainWhy {
        grid-template-columns: 1fr;
    }
    .main .mainSection .sectionContainer .containerMain .mainWhy .whyThumb {
        padding: 36px 24px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainBlogs
        .blogThumb
        .thumbPic {
        height: 200px;
        margin-bottom: 16px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainBlogs
        .blogThumb
        .thumbContent
        .contentTitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}
@media (max-width: 576px) {
    .heroWrapper .hero {
        max-height: 520px;
    }
    .heroWrapper .hero .heroContent .contentContainer {
        padding-inline: 16px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerTitle {
        font-size: 1.5rem;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerSubtitle {
        font-size: 0.875rem;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerDesc {
        font-size: 0.8rem;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerDesc svg {
        width: 18px;
        height: 18px;
    }
    .heroWrapper .heroSearchBox {
        padding-inline: 16px;
        margin-top: -32px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer {
        padding: 36px 16px 16px;
        gap: 18px;
        border-radius: 16px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer .containerHeader {
        inset: -18px 16px auto auto;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerHeader
        .headerTabs {
        padding: 4px;
        gap: 6px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerHeader
        .headerTabs
        .tabThumb {
        height: 32px;
        min-width: 64px;
        padding-inline: 12px;
        font-size: 12px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer .containerMain {
        gap: 14px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .searchRow
        .searchThumb {
        height: 50px;
        gap: 12px;
        padding-inline: 14px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .searchRow
        .searchThumb
        input {
        font-size: 14px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterThumb
        .thumbLabel {
        font-size: 11px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterThumb
        .thumbInput {
        height: 48px;
        padding-inline: 14px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterThumb
        .thumbInput
        input {
        font-size: 14px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterSubmit {
        height: 48px;
        font-size: 13px;
    }
    .main {
        padding-top: 90px;
    }
    .main .mainSection:not(:last-child) {
        margin-bottom: 40px;
    }
    .main .mainSection.blogsSection,
    .main .mainSection.trustSection {
        padding-block: 48px;
    }
    .main .mainSection.trustSection .sectionContainer {
        gap: 28px;
    }
    .main .mainSection.trustSection .sectionContainer .containerPic {
        height: 240px;
        border-radius: 12px;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentMiniTitle {
        font-size: 0.8125rem;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentTitle {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentDesc {
        font-size: 0.8125rem;
        margin-bottom: 24px;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentStatistics {
        gap: 20px;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentStatistics
        .statisticThumb
        .thumbValue {
        font-size: 1.25rem;
    }
    .main
        .mainSection.trustSection
        .sectionContainer
        .containerContent
        .contentStatistics
        .statisticThumb
        .thumbTitle {
        font-size: 0.75rem;
    }
    .main .mainSection .sectionContainer {
        padding-inline: 16px;
    }
    .main .mainSection .sectionContainer .containerHeader .headerMiniTitle {
        font-size: 0.8125rem;
    }
    .main .mainSection .sectionContainer .containerHeader .headerTitle {
        font-size: 1.25rem;
    }
    .main .mainSection .sectionContainer .containerMain .mainCategories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainCategories
        .categoryThumb {
        border-radius: 12px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainCategories
        .categoryThumb
        .thumbTitle {
        font-size: 0.9375rem;
        right: 16px;
        bottom: 14px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainProperties
        .propertiesHeader
        .headerTitle {
        font-size: 1rem;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainProperties
        .propertiesHeader
        .headerLink {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    .main .mainSection .sectionContainer .containerMain .mainWhy .whyThumb {
        padding: 28px 20px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainWhy
        .whyThumb
        .thumbIcon {
        width: 44px;
        height: 44px;
        margin-bottom: 20px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainWhy
        .whyThumb
        .thumbTitle {
        font-size: 0.95rem;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainWhy
        .whyThumb
        .thumbDesc {
        font-size: 0.8125rem;
        line-height: 1.65rem;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainBlogs
        .blogThumb
        .thumbPic {
        height: 180px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainBlogs
        .blogThumb
        .thumbContent
        .contentTitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .main
        .mainSection
        .sectionContainer
        .containerMain
        .mainBlogs
        .blogThumb
        .thumbContent
        .contentDate {
        font-size: 0.8rem;
    }
}
@media (max-width: 467px) {
    .heroWrapper .hero {
        max-height: 480px;
    }
    .heroWrapper .hero .heroContent .contentContainer {
        padding-inline: 20px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerTitle {
        font-weight: 750;
        line-height: 1.5;
        font-size: 1.5265rem;
        margin-bottom: 10px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerSubtitle {
        font-size: 0.875rem;
        margin-bottom: 14px;
    }
    .heroWrapper .hero .heroContent .contentContainer .containerDesc {
        font-size: 0.75rem;
        gap: 6px;
    }
    .heroWrapper .heroSearchBox {
        margin-top: -54px;
        padding-inline: 20px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer {
        padding: 42px 20px 20px;
        border-radius: 14px;
    }
    .heroWrapper .heroSearchBox .searchBoxContainer .containerHeader {
        inset: -16px 0 auto;
        width: -moz-fit-content;
        width: fit-content;
        margin-inline: auto;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .searchRow
        .searchThumb {
        height: 46px;
        border-radius: 10px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterThumb
        .thumbInput {
        height: 44px;
        border-radius: 10px;
    }
    .heroWrapper
        .heroSearchBox
        .searchBoxContainer
        .containerMain
        .filterRow
        .filterSubmit {
        height: 44px;
        border-radius: 10px;
    }
    .main {
        padding-top: 46px;
    }
    .main .mainSection .sectionContainer {
        padding-inline: 20px;
    }
    .main .mainSection .sectionContainer .containerHeader .headerMiniTitle {
        font-size: 0.8125rem;
        font-weight: 650;
        margin-bottom: 10px;
    }
    .main .mainSection .sectionContainer .containerHeader .headerTitle {
        font-size: 1.375rem;
    }
    .main .mainSection .sectionContainer .containerMain .mainCategories {
        gap: 14px;
        grid-template-columns: 1fr 1fr;
    }
    .main .mainSection .sectionContainer .containerMain .mainWhy {
        grid-template-columns: 1fr;
    }
} /*# sourceMappingURL=indexPage.css.map */
