@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
#mainContent .wrap {
    width:clamp(988px, calc(1310*100vw/1920), 1310px);
}

.jumbotron-section {
    background: url(../jpg/top.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 894px;
}

.jumbotron-section .inner-jumbotron-section {
    position: absolute;
    left: 37%;
    top: 35%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 15px;
    color: white;
}

.jumbotron-section .inner-jumbotron-section .jumbotron-title {
    font-size: 56px;
    font-family: "adobe-garamond-pro", serif;
    font-weight: 600;
    color: white;
}

.jumbotron-section .inner-jumbotron-section .jumbotron-desc {
    font-size: 18px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: white;
}

.pickup {
    background: linear-gradient(to right, #EFF1F5 12.7%, white 12.7%);
}

.pickup-wrapper {
    position: static;
    margin-top: -345px;
    width: 100%;
}

.pickup-wrapper .pickup-inner-wrapper {
    position: relative;
}

.pagination-wrapper {
    display: flex;
    width: 85%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 50px;
    margin-inline: auto;
    margin-top: 20px;
}

.pagination-wrapper .dots {
    display: flex;
    gap: 15px;
}

.pagination-wrapper .dots .dot {
    width: 8px;
    height: 8px;
    background-color: #D8D8D8;
    border-radius: 100%;
    cursor: pointer;
}

.pagination-wrapper .dots .dot.active {
    background-color: #002368;
}

.pagination-wrapper .pagination-inner-wrapper {
    display: flex;
    gap: 10px;
}

.pagination-wrapper .pagination-inner-wrapper .prev,
.pagination-wrapper .pagination-inner-wrapper .next
{
    cursor: pointer;
    width: 54px;
    height: 54px;
    border: 1px solid #002368;
    display: flex;
    justify-content: center;
    align-items: center;
}

#listPickupProperties {
    width: 85%;
    margin: auto;
}

.hero-card * {
    box-sizing: border-box;
}

.hero-card {
    width: 97%;
    height: 475px;
    background-color: white;
    display: flex;
}

.hero-card .image {
    width: 50%;
    height: 100%;
    background-color: #6b6b6b;
}

.hero-card .desc {
    position: relative;
    width: 50%;
    padding: 0px 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tag {
    height: 22px;
    padding: 5px 9px 5px;
    font-size: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.tag.info {
    background: #052157;
    color: white;
}

.tag.gold {
    color: white;
    background: #9B7C32;
}

.tag.gray {
    color: #7D8595;
    background: white;
}

.tag.light {
    color: white;
    background: #4a69a6;
}

.tag.danger {
    background: #A40000;
    color: white;
}

.hero-card .line {
    margin: 10px 0px;
    display: none;
}

.outer-line {
    width: 85%;
    height: 1px;
    background-color: #D8D8D8;
    margin-inline: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-card .line-small{
    width: 5%;
    border-top: 1px solid black;
    margin: 10px 0;
}

.hero-card .desc .name {
    font-size: 32px;
    font-family: "adobe-garamond-pro", serif;
    font-weight: 600;
    color: #222222;
}

.hero-card .desc .address {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #808080;
}

.hero-card .desc .comment {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.hero-card .desc .desc-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.hero-card .desc .desc-inner-wrapper .availability-btn {
    width: 113px;
    height: 28px;
    background-color: #EFF1F5;
    border: 1px solid #D8D8D8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 20px 0px;
    color: #002368;
}

.hero-card .desc .desc-inner-wrapper .view-more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 18px;
    padding-bottom: 5px;
    border-bottom: 1px solid #D8D8D8;
    text-decoration: none;
    margin-left: auto;
}

.hero-card .desc .pickup-label {
    position: absolute;
    width: 40px;
    height: 100%;
    top: 0;
    right: -40px;
    background-color: #9B7C32;
    writing-mode: vertical-lr;
    color: white;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    padding: 30px;
}

.hero-card .pickup-label-mobile {
    display: none;
}

/* property list */

.property-list {
  gap: 20px;
  background: linear-gradient(to right, #EFF1F5 12.7%, white 12.7%);
  padding-top: 95px;
}

.property-list-inner-wrapper {
    width: clamp(988px, calc(1310*100vw/1920), 1310px);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    background-color: white;
}

.property-list .card-property{
    display: flex;
    border-right: 2px solid #adadad;
    width: clamp(988px, calc(1310*100vw/1920), 1310px);
    height: clamp(311px, calc(413*100vw/1920), 413px);
}

.property-list .card-property .gold-line-mobile {
    display: none;
}

.property-list .card-property:nth-child(odd) {
    flex-direction: row-reverse;
    border-left: 2px solid #adadad;
    border-right: none;
}

.property-list .card-property .tags {
    margin-bottom: 5px;
}

.property-list .card-property .image{
    background-color: transparent;
    background-size: cover !important;
    background-position: center !important;
    width: clamp(460px,calc(620*100vw/1920),620px);
    overflow: hidden;
}

.property-list .card-property .image img {
    object-fit: cover;
}

.property-list .card-property .desc {
    width: clamp(525px,calc(690*100vw/1920),700px);
    box-sizing: border-box;
    padding: 0px 80px;
    position: relative;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
}

.property-list .card-property .desc .gold-border {
    position: absolute;
    height: 100px;
    background-color: #9B7C32;
    width: 2px;
    right: -2px;
    top: 0
}

.property-list .card-property:nth-child(odd) .desc .gold-border {
    left: -2px;
    right: auto;
}

.property-list .card-property .desc .name{
    font-size: 28px;
    font-family: "adobe-garamond-pro", serif;
    font-weight: 600;
    line-height: 28px;
    color: #222222;
}

.property-list .card-property .desc .address{
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #808080;
}

.property-list .card-property .desc .comment{
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.property-list .card-property .desc .line-small{
    width: 5%;
    border-top: 1px solid black;
    margin: 8px 0;
}

.property-list .card-property .desc .desc-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property-list .card-property .desc .desc-inner-wrapper .availability-btn {
    width: 113px;
    height: 28px;
    background-color: #EFF1F5;
    color: #002368;
    border: 1px solid #D8D8D8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 20px 0;
}

.property-list .card-property .desc .desc-inner-wrapper .view-more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 10px;
    text-decoration: none;
    margin-left: auto;
}

.other-properties {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    background: linear-gradient(to bottom, white 40%, #2A4171 40%);
    padding: 120px 0px;
}

.other-properties .title-wrapper {
    position: relative;
    width: fit-content;
    padding-top: 15px;
    margin-bottom: 25px;
}

.other-properties .blue-line {
    width: 27%;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: rgba(0, 35, 104, 1);
}

.other-properties .title{ 
    font-size: 42px;
    font-weight: 600;
    font-family: "adobe-garamond-pro", serif;
}

.other-properties .other-properties-wrapper {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, minmax(100px, 1fr) ) ;
}

.other-properties-card {
    width: 100%;
    aspect-ratio: 16/7;
    background-color: #6b6b6b;
    text-decoration: none;
    box-sizing: border-box;
    padding: 25px;
    display: flex;
    justify-content: start;
    align-items: end;
}

.other-properties-card .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.other-properties-card .content .icon {
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.other-properties-card h3 {
    color: white;
    font-size: 26px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
}

.owl-stage-outer, .owl-stage, .owl-item, .item{
    height: 100%;
}
.card-property .owl-stage-outer,
.card-property .owl-stage,
.card-property .owl-item,
.card-property .item {
  aspect-ratio: 3 / 2;
}

.listProperties{
    height: 100%;
    display: flex !important;
    justify-content: center !important;
}


.owl-prev, .owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px !important;
    font-weight: bolder !important;
    color: #ffffff !important;
}

.owl-prev{
    left: 1%;
}

.owl-next{
    right: 1%;
}

.owl-theme .owl-nav .owl-prev span{
    display: flex;
    font-size: 0;
    width: 24px;
    height: 24px;
    background-image: url('../svg/arrow-prev.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.owl-theme .owl-nav .owl-next span{
    display: flex;
    font-size: 0;
    width: 24px;
    height: 24px;
    background-image: url('../svg/arrow-next.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

.listProperties .owl-dots{
    height: fit-content;
    display: flex;
    width: fit-content;
    text-align: center;
    position: absolute;
    bottom: 2%;
    background-color: #000000;
    opacity: 0.5;
    border-radius: 20px;
}

.owl-theme .owl-dots .owl-dot span{
    background-color: #b7b7b7 !important;
    width: 6px !important;
    height: 6px !important;
    margin: 5px 5px !important;
}

.owl-theme .owl-dots .owl-dot.active span{
    background-color: white !important;
    width: 8px !important;
    height: 8px !important;
    opacity: 1;
}


.owl-carousel .owl-item img {
    width: auto;
    height: 100%;
}

#fBreadcrumb {
    padding-top: 16px;
}

#fBreadcrumb ul {
    padding-right: 0px;
}

@media screen and (max-width: 860px) {
    .jumbotron-section {
        background: url(../jpg/top-mobile.jpg) no-repeat center;
        position: relative;
        background-size: cover;
        background-color: black;
        min-height: 350px;
        height: 560px;
    }

    .jumbotron-section .inner-jumbotron-section {
        padding: 30px 45px;
        box-sizing: border-box;
        gap: 10px;
        width: 100%;
        transform: none;
        left: 0;
        top: 37%;
        position: static;
        height: 580px;
    }

    .jumbotron-section .inner-jumbotron-section .jumbotron-title {
        display: flex;
        flex-direction: column;
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 0.9;
        text-align: left;
    }

    .jumbotron-section .inner-jumbotron-section .jumbotron-desc {
        text-align: left;
        font-size: 14px;
    }

    .pickup {
        background: none;
    }

    .pickup-wrapper {
        bottom: -660px;
        position: static;
        margin-top: -210px;
        margin-left: -20px;
        width: 100vw;
    }

    .pickup-wrapper .pagination-wrapper {
        justify-content: space-between;
        width: 100%;
        bottom: 26%;
        padding: 0 20px;
        z-index: 5;
        gap: 20px;
        margin-top: 0;
        margin-bottom: 36px;
    }

    #listPickupProperties {
        width: 100%;
    }

    .property-list {
        padding: 0px;
    }

    .property-list .card-property{
        width: auto;
        height: auto;
    }

    .property-list-inner-wrapper {
        width: 100%;
        gap: 32px;
    }

    .hero-card {
        flex-direction: column;
        width: 95%;
        height: fit-content;
        margin-top: 50px;
    }

    .hero-card .line { 
        display: block;
    }

    .outer-line {
        display: none;
    }

    .line-clamp-1 {
        display: flex;
        -webkit-box-orient: vertical;
    }

    .line-clamp-2 {
        display: flex;
        -webkit-box-orient: vertical;
    }

    .hero-card .image {
        width: 100%;
        position: relative;
        aspect-ratio: 48 / 25;
    }

    .hero-card .pickup-label-mobile {
        position: absolute;
        top: 0;
        left: 0;
        width: 6.5%;
        height: 100%;
        background-color: #9B7C32;
        writing-mode: vertical-lr;
        color: white;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 400;
        font-family: 'Jost', sans-serif;
        padding: 10px;
        z-index: 2;
    }

    .hero-card .desc {
        width: 100vw;
        padding: 25px 20px 10px;
    }

    .hero-card .desc .name {
        font-size: 24px;
    }

    .hero-card .desc .address {
        font-size: 14px;
    }

    .hero-card .desc .desc-inner-wrapper {
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .hero-card .desc .desc-inner-wrapper .view-more-btn {
        font-size: 16px;
    }

    .hero-card .desc .pickup-label {
        display: none;
    }

    .property-list { 
        background: white;
    }

    .property-list .card-property {
        flex-direction: column !important;
        border: none !important;
        border-bottom: 2px solid #adadad !important;
        position: relative;
    }

    .property-list .card-property .gold-line-mobile {
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 25%;
        height: 2px;
        background-color: #9B7C32;
    }

    .property-list .card-property .image {
        width: 100%;
    }

    .property-list .card-property .desc {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 0;
        gap: 4px;
    }

    .property-list .card-property .desc .name {
        font-size: 24px;
    }

    .property-list .card-property .desc .address {
        font-size: 14px;
    }

    .property-list .card-property .desc .gold-border {
        display: none;
    }
    
    .property-list .card-property .desc .desc-inner-wrapper .view-more-btn {
        font-size: 16px;
    }

    .other-properties .other-properties-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px !important;
    }

    .other-properties-card {
        padding: 20px 18px 15px 18px;
    }

    .other-properties {
        padding: 68px 0 62px 0;
    }

    .other-properties .title {
        font-size: 26px;
    }

    .other-properties-card h3 {
        font-size: 16px;
    }

    .owl-carousel .owl-item img {
        width: auto;
        min-height: auto !important;
    }

    .owl-theme .owl-nav .owl-prev span,
    .owl-theme .owl-nav .owl-next span{
        display: none;
    }

    .pagination-wrapper .dots {
        gap: 10px;
    }

    .hero-card .desc .desc-inner-wrapper .availability-btn {
        width: 89px;
        font-size: 11px;
        height: 20px;
    }

    .property-list .card-property .desc .desc-inner-wrapper .availability-btn {
        width: 89px;
        height: 20px;
        font-size: 11px;
    }

    .pagination-wrapper .pagination-inner-wrapper .prev,
    .pagination-wrapper .pagination-inner-wrapper .next
    {
        width: 40px;
        height: 40px;
    }
}

#search_closeup #gHeader .header-state-open {
    background-color: rgba(255,255,255,1);
}
#search_closeup .hdrLogo {
    margin-top: 20px;
}
#search_closeup .hdrLogo span {
    color: #fff;
}
#search_closeup .header-state-fix .hdrLogo span {
    color: #222;
}
#search_closeup .pNav__tel span {
    color: #fff;
}
#search_closeup #pNav .pNav__contact a {
    color: #002368;
    background-color: #fff;
    padding: 5px 0;
    margin-top: 2px;
    font-weight: normal;
}
#search_closeup #pNav .pNav__suv-btn,#search_closeup #pNav .pNav__suv-btn a {
    color: #fff;
}
#search_closeup .header-state-open #pNav a
,#search_closeup .header-state-fix #pNav a {
    color: #222;
}
#search_closeup .myFavorite:before {
    content: url("../png/icn-favoritew.png");
}
#search_closeup .header-state-open .myFavorite:before
,#search_closeup .header-state-fix .myFavorite:before {
    content: url("../png/icn-favorite.png");
}
#search_closeup .myFavorite__text {
    color: #fff;
}
@media screen and (max-width: 1100px) {
    #search_closeup .hdrLogo {
        margin-top: inherit;
    }
}

