.hero-banner {
    display: flex;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    max-height: 820px;
    background-position: center;
    position: relative;
    margin-bottom: 0px;
}
.hero-banner-inner {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.hero-banner-image {
    display: flex;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    object-fit: cover;
}
.hero-banner-content {
    position: absolute;
    background: #ffffff99;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 45px 5%;
    text-align: center;
    z-index: 0;
    overflow: hidden;
}
.hero-banner-content::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    filter: blur(105px);
    opacity: 0.7;
}
h1.hero-banner-title {
    font-weight: 600;
    line-height: 1;
    position: relative;
    margin-bottom: 16px;
}
.hero-banner-text {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    line-height: 1.5;
}
a.hero-banner-button {
    background: #231e66;
    border: 1px solid #231e66;
    position: relative;
    margin-top: 25px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 16px 31px;
    border-radius: 45px;
    transition: 0.3s;

}
a.hero-banner-button:hover {
    background: #fff;
    color: #231e66;
    transition: 0.3s;
}

.property-slider-wraper {
    display: inline-flex;
    margin-top: 70px;
    margin-bottom: 70px;
    width: 100%;
    position: relative;
}

.property-slider-wraper .container, .property-slider-wraper .container .property-slider-outer {
    position: relative;
}

.property-slide {
    margin: 0 20px;
    position: relative;
    padding: 30px 0;
}
.property-slide {
    margin: 0 20px;
    position: relative;
    padding: 0px 0;
    height: auto !important;
    display: flex !important;
    align-items: center;
}
.property-slider-outer {
    position: relative;
}
.property-slider .slick-track {
    display: flex;
}
.property-slider .slick-list {
    overflow: visible;
}
.property-slide a {
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    height: 90%;
    width: 100%;
}
.property-slide.slick-current a {
    height: 100%;
}
.property-slide a > img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.property-slide a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #0004;
}
.property-slide-content {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #ffffffe6;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.property-slide-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #121212;
    margin: 0;
}
.property-slide-content p {
    font-size: 16px;
    font-weight: 400;
    color: #C2AD77;
    margin: 5px 0 0;
}
.slick-current .property-slide-content {
    opacity: 1;
}

.property-slider ~ button {
    position: absolute;
    top: 55%;
    width: 45px;
    height: 45px;
}
.property-slider ~ button::before {
    display: none;
}
.property-slider ~ button.slick-prev {
    transform: rotate(180deg);
    margin-top: 0px;
}
.property-slider ~ button.disabled {
    display: none;
}

.cyber-icon-with-text {
    display: inline-flex;
    width: 100%;
    margin: 70px 0 40px 0;
}
.section-title h2 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}
.section-title p {
    font-size: 16px;
    font-weight: 400;
    color: #828282;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}
.icon-items {
    display: flex;
    gap: 20px;
    justify-content: center;
   align-items: flex-start;
	flex-wrap: wrap;
}
.icon-item {
    display: flex;
    border-radius: 20px;
	flex: 0 0 31.5%;
	align-items: flex-start;
}
.icon-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 15px;
    transition: 0.3s;
    overflow: hidden;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
.icon-item a:hover {
    box-shadow: 0 0 23px -3px #0002;
}
.icon-item img {
    width: auto;
    max-height: 70px;
}
.icon-item h3 {
    font-family: inherit;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}
.icon-item p {
    font-size: 16px;
    font-weight: 400;
    color: #828282;
    line-height: 1.5;
    margin: 0;
}
.property-list-wrapper {
    display: flex;
    width: 100%;
    margin: 15px 0 50px 0;
}

.property-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px 20px;
    flex-wrap: wrap;
    justify-content: start;
}
.property-item {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 15px);
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    overflow: hidden;
}
.property-item-img, .property-item-img a {
    display: flex;
    width: 100%;
}
.property-item-img a img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}   
.property-item-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
    height: 100%;
    justify-content: space-between;
}
.property-content-top h3 {
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 400;
    color: #121212;
    margin: 0;
    line-height: 1.5;
}
.stars {
    display: flex;
    margin-bottom: 10px;
    margin-top: 5px;
}
.stars img {
    max-width: 20px;
}
.price {
    font-size: 20px;
    font-weight: 500;
}
.property-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.meta-info {
    display: flex;
    gap: 15px;
    border: 1px solid #E9E9E9;
    padding: 12px 25px;
    border-radius: 45px;
}
.meta-item {
    display: flex;
    gap: 10px;
    color: #C2AD77;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}
.meta-item img {
    max-width: 30px;
}
.meta-btn a:hover img {
    filter: brightness(0);
}
.view-all-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.btn-view-all {
    background: #C2AD77;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    padding: 15px 60px;
    display: inline-block;
    border-radius: 45px;
    transition: 0.3s;
    line-height: 1;
}
.btn-view-all:hover {
    background: #000;
    color: #fff;
}
.slider-with-text-wrapper {
    display: inline-flex;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
    position: relative;
}
.text-slider .slick-list {
    overflow: visible;
}
.text-slider .slick-track {
    display: flex;
}
.text-slider-item {
    margin: 0 20px;
    position: relative;
    padding: 0px 0;
    height: auto !important;
    display: flex !important;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
}
.text-slider-item img {
    max-height: 650px;
    width: 100%;
}
.text-slider-item .slider-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
    opacity: 0;
}
.text-slider-item .slider-content::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #0007;
    content: '';
    opacity: 1;
}
.text-slider-item.slick-current .slider-content {
    opacity: 1;
}
.slider-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    max-width: 560px;
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
}
.slider-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    position: relative;
    margin: 0 0 15px;
    max-width: 560px;
}
.slider-content p.save-amount {
    background: #ffffffeb;
    position: absolute;
    top: 40px;
    border-radius: 7px;
    color: #828282;
    padding: 8px 10px;
    min-width: 165px;
}
.slider-content p.save-amount span {
    color: #C2AD77;
    font-weight: 500;
}
.text-slider-item .slider-content a.slider-button {
    position: relative;
    background: #C2AD77;
    color: #fff;
    margin-top: 25px;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 45px;
    transition: 0.3s;
}
.text-slider-item .slider-content a.slider-button:hover {
    background: #000;
    color: #fff;
}
.text-slider ~ button.disabled, .text-slider-v2 ~ button.disabled {
    display: none;
}
.text-slider ~ button.slick-prev, .text-slider-v2 ~ button.slick-prev {
    transform: rotate(180deg);
    margin-top: -24px;
}
.text-slider ~ button, .text-slider-v2 ~ button {
    position: absolute;
    top: 55%;
    width: 45px;
    height: 45px;
}
.slider-with-text-wrapper .container {
    position: relative;
}
.text-slider ~ button::before, .text-slider-v2 ~ button::before {
    display: none;
}

.latest-property-list-wrapper {
    display: flex;
    width: 100%;
    margin: 70px 0;
}

ul.latest-property-list, .instagram-gallery-list[data-feed_layout=gallery] {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-property-item-img > img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
ul.latest-property-list li.latest-property-item, .instagram-gallery-list .instagram-gallery-item {
    display: flex;
    position: relative;
    width: calc(20% - 16px) !important;
    height: calc(200px + 12vw);
    padding: 0 !important;
    min-width: inherit !important;
}
.latest-property-item-img > a > img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.latest-property-item-img, .instagram-gallery-item__wrap {
    height: 100%;
    align-self: end;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}
li.latest-property-item:nth-child(1) .latest-property-item-img, .instagram-gallery-item:nth-child(1) .instagram-gallery-item__wrap,
li.latest-property-item:nth-child(5) .latest-property-item-img, .instagram-gallery-item:nth-child(5) .instagram-gallery-item__wrap,
li.latest-property-item:nth-child(6) .latest-property-item-img,  .instagram-gallery-item:nth-child(6) .instagram-gallery-item__wrap,
li.latest-property-item:nth-child(10) .latest-property-item-img,  .instagram-gallery-item:nth-child(10) .instagram-gallery-item__wrap {
    height: 70%;
}
li.latest-property-item:nth-child(2) .latest-property-item-img, .instagram-gallery-item:nth-child(2) .instagram-gallery-item__wrap,
li.latest-property-item:nth-child(4) .latest-property-item-img, .instagram-gallery-item:nth-child(4) .instagram-gallery-item__wrap,
li.latest-property-item:nth-child(7) .latest-property-item-img, .instagram-gallery-item:nth-child(7) .instagram-gallery-item__wrap,
li.latest-property-item:nth-child(9) .latest-property-item-img, .instagram-gallery-item:nth-child(9) .instagram-gallery-item__wrap {
    height: 85%;
}
li.latest-property-item:nth-child(6) .latest-property-item-img, .instagram-gallery-item:nth-child(6) .instagram-gallery-item__wrap,
li.latest-property-item:nth-child(6) ~ li.latest-property-item .latest-property-item-img, .instagram-gallery-item:nth-child(6) ~ .instagram-gallery-item .instagram-gallery-item__wrap {
    align-self: flex-start;
}

.instagram-gallery-square .instagram-gallery-item__media-wrap {
    padding-top: 0 !important;
    height: 100% !important;
}
.instagram-gallery-square .instagram-gallery-item:hover .instagram-gallery-item__media-mask {
    opacity: 0.2;
}


.team-list-wrapper {
    display: flex;
    width: 100%;
    margin: 0 0 70px 0;
}

.team-list-wrapper .container {
    background: #EFF5F4;
    padding: 45px 35px;
    border-radius: 35px;
}
.team-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 25px;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 40px;
    justify-content: center;
}
.team-list-wrapper .why-choose-btn {
    text-align: center;
    margin-bottom: 20px;
}
.team-member-item {
    display: flex;
    width: calc(25% - 20px);
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.team-member-item .team-member-img a {
    width: inherit;
}
.team-member-item .team-member-img {
    width: 100%;
    display: flex;
}
.team-member-item .team-member-img img {
    width: 100%;
}
.team-member-content {
    position: absolute;
    background: #ffffffe8;
    left: 17px;
    right: 17px;
    bottom: 17px;
    border-radius: 10px;
    padding: 20px;
}
.team-member-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #121212;
}
.team-member-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #C2AD77;
}   


.testimonial-list-wrapper {
    display: flex;
    margin: 70px 0;
    width: 100%;
}
.testimonial-list-wrapper .section-title * {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 550px;
}
.testimonial-list-slider .slick-track {
    display: flex;
    gap: 25px;
    margin-left: -25px;
}
.testimonial-item.slick-slide {
    display: flex;
    background: #e9f7ff;
    border-radius: 20px;
    padding: 30px 45px;
    flex-direction: column;
}
.testimonial-content-top {
    display: flex;
    padding-right: 70px;
    border-bottom: 1px solid #000000;
    padding-bottom: 25px;
}
.testimonial-content-top .quote-img {
    width: 100px;
}
.testimonial-content-top .quote-desc {
    width: calc(100% - 120px);
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 1.5;
}
.testimonial-content-top .quote-desc p {
    font: inherit;
    margin: 0;
}
.testimonial-content-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.testimonial-content-author {
    display: flex;
    gap: 15px;
    align-items: center;
}
.testimonial-img {
    max-width: 60px;
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
}
.testimonial-content h3 {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Roboto';
    color: #000000;
    margin: 0;
}
.testimonial-content p {
    font-size: 16px;
    font-weight: 400;
    color: #9F9A8B;
    margin: 5px 0 0;
}
.testimonial-slider-arrow {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
}
.slick-current .testimonial-slider-arrow {
    opacity: 1;
}
.testimonial-list-slider .slick-list {
    overflow: visible;
}
.testimonial-slider-arrow button {
    border: none;
    background: transparent;
}
.slider-count {
    font-size: 24px;
    font-weight: 400;
    color: #121212;
}
.address-box-wrapper {
    border-radius: 20px;
    display: flex;
    width: 100%;
    margin: 0px 0 25px 0;
}
.address-box-inner {
    display: flex;
    padding: 30px 0;
    gap: 25px;
    flex-wrap: wrap;
}
.address-box-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: calc(33.33% - 18px);
    display: flex;
    gap: 15px;
}
.address-box-item .address-box-image {
    width: 45px;
}
.address-box-content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 60px);
}
.address-box-content h3 {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto';
    letter-spacing: -0.3px;
    color: #828282;
}
.address-box-content p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    color: #212529;
}
.address-box-content p span {
    content: '';
    width: 7px;
    height: 7px;
    background: #cecdcb;
    display: inline-block;
    margin: 2px 5px;
    border-radius: 50%;
}
.hero-innerbanner {
    background-size: cover;
    position: relative;
    background-position: center;
}
.hero-innerbanner-image {
    max-width: 100%;
    width: 100%;
    position: relative;
    min-height: 300px;
}
.hero-innerbanner-image  .hero-banner-image {
    display: flex;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    object-fit: cover;
    max-height: 750px;
    object-position: center;
    height: 100%;
}
.img-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.hero-innerbanner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    max-width: 80%;
    text-align: center;
    width: 100%;
}
h1.hero-innerbanner-title {
    font-weight: 600;
    text-align: center;
    line-height: 1;
}
.hero-innerbanner-text {
    font-weight: 400;
    text-align: center;
}
.destination-list-wrapper {
    display: flex;
    margin: 70px 0 20px 0;
}
ul.destination-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}
li.destination-item {
    display: flex;
    width: calc(50% - 10px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;

}
.destination-item-img {
    display: flex;
    width: 100%;
    position: relative;
}
.destination-item-img a {
    display: flex;
    width: 100%;
}
.destination-item-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}
.destination-item-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 40px;
}
.destination-item-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}
.destination-item-content h3 a {
    font: inherit;
    color: inherit;
}
.destination-item-content p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #fff;
}
.destination-item-img .img-overlay {
    background: #00000078;
}
li.destination-item .meta-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 50%;
    max-width: 40px;
    transform: rotate(-45deg);
}
.homeland-property-filters {
    margin: 0 !important;
}
.homeland-property-filters .property-filters {
    width: 100%;
    margin-top: 0px;
}
.property-filters {
    display: flex;
    margin: 70px 0 40px;
    gap: 15px;
}
.filter-box {
    width: 100%;
    position: relative;
}
.filter-box select {
    color: #828282;
    font-size: 16px;
    padding: 10px 40px 10px 15px;
    width: 100%;
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    border: 1px solid #828282;
    text-transform: capitalize;
}
.filter-box::after {
    content: ">";
    position: absolute;
    right: 15px;
    top: 50%;
    pointer-events: none;
    color: #888;
    transform: scale(0.5, 1) translateY(-50%);
    font-size: 25px;
    font-weight: 300;
}
.property-single-gallery {
    margin-top: 5px;
    margin-bottom: 35px;
    overflow: hidden;
    position: relative;
}
.single-gallery-slider {
    margin-left: -10px;
    margin-right: -10px;
}
.single-gallery-slider .slick-list .slick-track {
    display: flex;
}
.single-gallery-slider .slick-list .slick-track .single-gallery-slide {
    display: flex;
    height: unset !important;
    max-height: 700px;
    width: 100% !important;
    padding: 0 10px;
    align-items: center;
}
.single-gallery-slider .slick-list .slick-track .single-gallery-slide img {
    width: 100%;
    height: calc(100% - 80px);
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.single-gallery-slider .slick-list .slick-track .single-gallery-slide.slick-slide.slick-current img {
    height: 100%;
}
.single-gallery-slider .slick-list {
    overflow: visible;
}
.property-single-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
}
.property-single-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 60%;
    margin: 0 auto;
}
.property-single-title h1.title {
    font-family: 'Roboto';
    font-size: 38px;
    font-weight: 400;
    color: #121212;
    margin-top: 15px;
    margin-bottom: 10px;
}
.property-single-title .address {
    display: flex;
    align-items: center;
    gap: 10px;
}
.property-single-title .address img {
    max-width: 40px;
}
.property-single-title .address span {
    font-size: 16px;
    font-weight: 400;
    color: #828282;
}
.accordion-button::after {
    content: '+';
    font-size: 34px;
    background: transparent;
    line-height: 0.4;
    margin-right: 5px;
    font-family: 'slick';
}
.accordion-button:not(.collapsed)::after {
    content: '-';
    font-size: 40px;
    background: transparent;
    line-height: 0.05;
    margin-right: 5px;
    transform: scale(1.7, 0.9) rotate(-180deg);
}
.accordion-item {
    background-color: #fff;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    border-left: none;
    border-right: none;
    border-radius: 0 !important;
}
.accordion-header button.accordion-button {
    padding: 18px 0;
    background: transparent;
    border: none !important;
    box-shadow: none;
    color: #121212;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.accordion-body {
    font-size: 16px;
    font-weight: 400;
    color: #828282;
    padding: 0;
    line-height: 1.7;
    margin-bottom: 15px;
}
.accordion-item:first-child {
    border-top: 0;
}
.accordion-body ul {
    margin-top: 10px;
    margin-bottom: 10px;
}
.accordion-body ul li {
    margin-top: 5px;
}
.accordion-item:not(:first-of-type) {
    border-top: 1px solid #E5E5E5;
    margin-top: 17px;
}
.property-single-floor {
    margin-top: 120px;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    display: none;
}
.property-single-floor::before {
    content: '';
    position: absolute;
    background: #F7F2EB;
    width: 70%;
    height: 100%;
    right: 0;
    z-index: -1;
    border-radius: 30px 0 0 30px;
    top: 0;
}
.floor-map img {
    width: 100%;
    image-rendering: pixelated;
}
.floot-map-details {
    padding-left: 25px;
}
.floot-map-details .title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}
.floot-map-details .meta-info {
    border: none;
    padding: 0;
    border-radius: 0;
    gap: 30px;
}
.floot-map-details a.book_btn {
    max-width: 430px;
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: 25px;
    background: #C2AD77;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 45px;
    border: 1px solid #C2AD77;
    transition: 0.3s;
}
.floot-map-details a.book_btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.floot-map-details .meta-item {
    font-size: 30px;
    gap: 15px;
}
.floot-map-details .meta-item img {
    max-width: 60px;
}
.floot-map-details .meta-item span {
    border-left: 1px solid #dcdcdc;
    padding-left: 15px;
    padding-right: 15px;
    height: 100%;
    align-items: center;
    display: flex;
}
.property-single-inside-tour {
    display: flex;
    margin-top: 130px;
}
.property-single-inside-tour .section-title h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 35px;
}
.tabs-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tab-content-container {
    display: flex;
    width: 65%;
    border-radius: 20px;
    overflow: hidden;
}
.tab-content-container div#videoTabContent {
    width: 100%;
    height: 100%;
}
.tab-content-container div#videoTabContent > div {
    height: 100%;
}
.tab-content-container div#videoTabContent > div >img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.nav-tabs-container {
    display: flex;
    width: calc(35% - 30px);
}
ul#videoTab {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    border: none;
}
ul#videoTab button {
    padding: 30px;
    width: 100%;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 0 5px 0px #0000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
}
ul#videoTab button.active {
    box-shadow: 0px 0 5px 0px #0002;
}
ul#videoTab button .icon {
    max-width: 77px;
}
ul#videoTab button .title {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
}
ul#videoTab button .description {
    font-size: 20px;
    color: #828282;
    font-weight: 400;
}
.property-single-booking {
    margin-top: 70px;
}
.property-single-booking .appointment-sec {
    background: #C2AD77;
    border-radius: 16px;
    padding: 40px 40px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.appointment-sec h2 {
    max-width: 800px;
    font-size: 42px;
    font-weight: 600;
    margin: 0 auto 20px;
    text-align: center;
    color: #fff;
    line-height: 1.4;
}
.appointment-sec a.book_btn {
    color: #C2AD77;
    background: #fff;
    margin: 0 auto;
    max-width: 480px;
    width: 100%;
    display: inline-block;
    text-align: center;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    transition: 0.3s;
    border: 1px solid #fff;
}
.appointment-sec a.book_btn:hover {
    color: #fff;
    background: #000;
    border: 1px solid #000;
}
.property-related-section {
    margin-top: 130px;
    margin-bottom: 110px;
}
.property-related-inner > h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
}
ul.property-related-slider {
    padding: 0;
    list-style: none;
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
}
ul.property-related-slider .slick-list {
    width: 100%;
}
ul.property-related-slider li.property-item {
    margin: 0 10px;
}
.property-relatedslider {
    position: relative;
}
.property-relatedslider button {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 45px;
}
.property-relatedslider button.slick-prev {
    transform: rotate(180deg);
    margin-top: 0px;
    left: 15px;
}
.property-relatedslider button::before {
    display: none;
}
.property-relatedslider button.slick-next {
    margin-top: 0px;
    right: 15px;
}
.property-single-inside-tour .modal-content {
    border-radius: 20px;
    margin: 100px 0;
}
.property-single-inside-tour .modal-content h5.modal-title {
    font-size: 24px;
    font-weight: 600;
}

.property-single-inside-tour .modal-content video {
    max-height: calc(100vh - 230px);
    background-size: cover;
    object-fit: cover;
}
.property-single-aside {
    width: calc(40% - 100px);
}
.property-single-form {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-direction: column;
    box-shadow: 0 0 7px 0 #0002;
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 20px;
}
.agent-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.agent-details img {
    max-width: 100px;
    border-radius: 50%;
}
.agent-name {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-transform: capitalize;
    margin-top: 10px;
}
.agent-post {
    color: #C2AD77;
    font-size: 16px;
    font-weight: 400;
}
.property-single-form-bottom label {
    font-size: 16px;
    font-weight: 400;
    color: #121212;
    margin-bottom: 5px;
    width: 100%;
}
.property-single-form-bottom input, .property-single-form-bottom select, .property-single-form-bottom textarea {
    color: #828282;
    font-size: 16px;
    font-weight: 400;
    background: #F5F4F4;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    width: 100%;
}
.property-single-form-bottom input + span {
    font-size: 14px;
    margin-top: 3px;
}
.property-single-form-bottom input, .property-single-form-bottom select, .property-single-form-bottom textarea {
    color: #828282;
    font-size: 16px;
    font-weight: 400;
    background: #F5F4F4;
    border: none;
    padding: 12px 27px;
    border-radius: 23px;
    width: 100%;
}

.property-single-form-bottom select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(/wp-content/themes/cyber/assets/images/arrow-select.png);
    background-repeat: no-repeat;
    background-position: center right 15px;
    padding-right: 45px;
}
.property-single-form-bottom .wpcf7-checkbox label {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-left: 25px;
}
.property-single-form-bottom .wpcf7-checkbox span.wpcf7-list-item {
    width: 100%;
    margin: 0;
    text-align: left;
}
.property-single-form-bottom .wpcf7-checkbox input[type="checkbox"] {
    width: 100%;
    margin-right: 8px;
    position: absolute;
    left: 0;
    margin: 0;
    height: 100%;
    z-index: 1;
    opacity: 0;
}
.property-single-form-bottom span.wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 5px;
    margin-left: 20px;
}   
.property-single-form-bottom input + span::before {
    position: absolute;
    left: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #000;
    border-radius: 50%;
    top: 3px;
}
.property-single-form-bottom input + span::after {
    content: '✔';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    opacity: 0;
}
.property-single-form-bottom .wpcf7-checkbox input[type="checkbox"]:checked + span::after {
    opacity: 1;
}
.property-single-form-bottom input[type="submit"] {
    background: #C2AD77;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    border: 1px solid #C2AD77;
    transition: 0.3s;
}
.property-single-form-bottom input[type="submit"]:hover {
   background: #000000;
    color: #fff;
    border: 1px solid #000000;
}
span.wpcf7-spinner {
    display: none;
}
.property-single-form-bottom p {
    margin: 0;
}
.property-single-form-bottom .form-row {
    margin-bottom: 15px;
}
div#map {
    width: 100%;
    height: 350px;
}
.cyber-text-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    margin-top: 70px;
}
.cyber-text-box-content h3 {
    /* font-size: 40px; */
    font-size: clamp(1.5rem, 1.2692rem + 1.0256vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}
.cyber-text-box-content p {
    font-size: 16px;
    color: #222;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}
.cyber-text-box-button {
    background: #231e66;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 45px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 45px;
    transition: 0.3s;
    border: 1px solid #231e66;
}
.cyber-text-box-button:hover {
    background: #ffffff;
    color: #231e66;
    border: 1px solid #231e66;
}
.row-space {
    margin-top: 70px;
    margin-bottom: 70px;
}
.vc_row-o-equal-height .wpb_wrapper, .cyber-two-images-video-wrapper {
    height: 100%;
    position: relative;
}
.cyber-two-images-video-content {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 20px;
    flex-wrap: wrap;
}       
.cyber-two-images-video-content .cyber-image {
    display: flex;
    position: relative;
    width: 75%;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    flex-direction: column;
    background: #000;
}
.cyber-two-images-video-content .cyber-image > img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}
.cyber-two-images-video-content .cyber-image h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #fff;
}
.cyber-two-images-video-content .cyber-image h3 img {
    max-width: 40px;
}
.cyber-two-images-video-content .cyber-image:last-child {
    width: calc(100% - 0px);
}
.cyber-two-images-video-wrapper div#cyber-video-modal {
    position: absolute;
    height: 100%;
    border-radius: 20px;
}
.cyber-modal video {
    margin: 0;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.row-space .cyber-text-box-wrapper {
    margin: 0;
}
.single-aside-only.property-single-aside {
    width: 100%;
}
.team-member {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-direction: column;
    box-shadow: 0 0 7px 0 #0002;
    padding: 35px;
    border-radius: 25px;
}
.team-member-image {
    display: flex;
    width: 100%;
    aspect-ratio: 4/2.5;
    overflow: hidden;
    border-radius: 25px;
}
.team-member-image img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.team-member-name {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 5px;
} 
.team-member-post {
    color: #C2AD77;
    font-size: 16px;
    font-weight: 400;
}
ul.social-media-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}
.contact-info {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 15px;
}
.contact-info p {
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    color: #121212;
    display: flex;
    align-items: center;
    line-height: 1;
}
.contact-info p strong {
    font-weight: 400;
    color: #828282;
    min-width: 80px;
    display: inline-block;
}
.team-member-description {
    color: #9F9A8B;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}
.team-member-button {
    background: #fff;
    color: #231e66;
    display: inline-block;
    margin-top: 20px;
    border-radius: 45px;
    font-size: 16px;
    text-transform: capitalize;
    transition: 0.3s;
    border: 1px solid #fff;
    padding: 12px 40px;
}
.team-member-button:hover {
    background: #231e66;
    color: #fff;
    border: 1px solid #fff;
}
.hero-innerbanner-text + a.team-member-button {
    margin-top: 30px;
}
.blog-list-wrapper {
    width: 100%;
    margin: 70px 0;
}
ul.blog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    gap: 50px;
}
.blog-list .blog-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
}
.blog-list .blog-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    position: relative;
}
.blog-item-img {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.property-related-slider .slick-track {
    display: flex;
}
.blog-item-title > img {
    width: auto !important;
}
.blog-item-img img {
    opacity: 1;
    width: 100%;
    object-fit: cover;
    height: 300px;
    margin-bottom: 15px;
}
.blog-item-content-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin: 0;
}
.blog-item-title h3 {
    font-size: 20px;
    font-weight: 400;
    color: #c2ad77;
    font-family: 'Roboto';
    margin: 0;
    width: 100%;
}
.blog-item-title h3 a {
    color: inherit;
    font: inherit;
}
.blog-item-title + p {
    color: #B1B1B1;
    font-family: 'Roboto';
    font-size: 15px;
    display: -webkit-box;
    max-width: 100%;
    height: 61px;
    margin: 0 auto;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-item-button a, .blog-item-button span {
    width: fit-content;
    background: transparent;
    display: inline-block;
    text-align: left;
    color: #000;
    padding: 5px 0px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid #c2ad77;
}
.blog-item-button a:hover, .blog-item-button span:hover {
    color: #C2AD77;
}
.blog-list .blog-item > a {
    height: 100%;
}
.overlay-text-section {
    display: flex;
    width: 100%;
    margin: 0px 0;
}
.overlay-content {
    padding: 50px 0;
    position: relative;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: end;
    width: 100%;
}
.overlay-content-out {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.overlay-content-img {
    width: 64%;
    border-radius: 20px;
    overflow: hidden;
}
.overlay-content-sec {
    background: #fff;
    width: 45%;
    display: flex;
    padding: 50px 40px;
    border-radius: 20px;
    flex-direction: column;
    gap: 15px;
}
.overlay-content-sec h2 {
    font-size: 40px;
    font-weight: 600;
    color: #121212;
    margin: 0;
}
.overlay-description {
    color: #828282;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
.overlay-button {
    background: #C2AD77;
    display: inline-block;
    max-width: 200px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 45px;
    transition: 0.3s;
    border: 1px solid #C2AD77;
    margin-top: 15px;
}
.overlay-button:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}
.big-image-small-content-container {
    display: flex;
    width: 100%;
    margin: 50px 0 20px 0;
}
.big-image-small-content-inner {
    display: flex;
    width: 100%;
    gap: 20px;
}
.big-image-small-content-inner {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.big-image-small-content-inner .big-image {
    width: calc(66.66% - 20px);
}
.big-image-small-content-inner .big-image img {
    width: 100%;
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}

.small-content {
    display: flex;
    width: 33.33%;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    gap: 15px;
    justify-content: center;
    text-align: center;
}
.small-content h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}
.content-description {
    font-size: 16px;
    font-weight: 400;
    color: #828282;
    line-height: 1.5;
}
.content-button {
    background: #C2AD77;
    display: inline-block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 12px 25px;
    border-radius: 45px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #C2AD77;
    transition: 0.3s;
    margin-top: 15px;
}
.content-button:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}
.single-round-image img.vc_single_image-img {
    border-radius: 16px !important;
}
.suppliers-textbox .cyber-text-box-content p {
    color: #828282;
}

.client-logos-wrapper {
    margin: 70px 0;
}
.client-logos-container {
    margin-top: 30px;
    margin-left: -15px;
    margin-right: -15px;
}
ul.client-logos-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: 0;
    gap: 20px;
    justify-content: center;
}
ul.client-logos-list li.client-logo-item {
    width: calc(16.33% - 15px);
    text-align: center;
    padding: 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
ul.client-logos-list li.client-logo-item a {
    width: 100%;
}
ul.client-logos-list li.client-logo-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
ul.client-logos-list li.client-logo-item p.logo-title {
    margin: 0;
    width: 100%;
    color: #828282;
    font-size: 16px;
    text-align: center;
    text-transform: capitalize;
}
.vc_row-o-content-middle {
    align-items: center;
}
.consultant-wrapper {
    margin: 50px 0 70px;
}
.consultant-wrapper-inner {
    border-radius: 20px;
    padding: 40px;
}
.consultant-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: left;
}
.consultant-item {
    width: calc(33.33% - 15px);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.consultant-item .consultant-image {
    min-height: 300px;
    width: 100%;
    height: 100%;
}
.consultant-item .consultant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.consultant-item .consultant-details {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px;
}
h3.consultant-name {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
}
p.consultant-desc {
    width: 100%;
    color: #fff;
    font-size: 16px;
    margin: 0 0 20px;
}
a.consultant-button {
    width: 100%;
    display: inline-block;
    background: #ffffffe0;
    text-align: center;
    color: #000;
    font-family: 'Playfair';
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid #fff;
    transition: 0.3s;
}
a.consultant-button:hover {
    background: #c2ad77;
    color: #fff;
    border: 1px solid #c2ad77;
}
.consultant-item .consultant-image::after {
    content: '';
    position: absolute;
    background: #0003;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.cyber-image-card-wrapper {
    margin: 0px 0;
}
.cyber-image-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    gap: 15px;
}
.cyber-image-card .section-title {
    max-width: 823px;
    margin: 0 auto;
}
.cyber-image-card-inner {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}
.image-card-left {
    display: flex;
    width: 50%;
    flex-direction: row;
    gap: 70px;
    align-items: center;
}
.image-card-right {
    display: flex;
    width: calc(50% - 30px);
    flex-direction: column;
    gap: 5px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0  0 10px 0px #0002;
    padding: 30px;
}
.cyber-image-card-desc {
    font-size: 16px;
    font-weight: 400;
}
.cyber-image-card-image {
    border-radius: 20px;
    overflow: hidden;
}
.image-card-right .formtitle h3 {
    color: #121212;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.knockdown-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}
.knockdown-form .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.form-halfrow {
    width: calc(50% - 10px);
}
.knockdown-form p {
    margin: 0;
    width: 100%;
}
.knockdown-form label {
    font-size: 16px;
    color: #121212;
    font-weight: 400;
    margin-bottom: 5px;
    width: 100%;
}
.knockdown-form .wpcf7-form-control-wrap input, .knockdown-form .wpcf7-form-control-wrap textarea {
    width: 100%;
    border-radius: 45px;
    background: #F5F4F4;
    border: none;
    padding: 12px 20px;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 400;
}
.knockdown-form .wpcf7-form-control-wrap textarea {
    border-radius: 15px;
    max-height: 110px;
}
.knockdown-form .form-row input.wpcf7-form-control.wpcf7-submit {
    background: #231e66;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border: 1px solid #231e66;
    padding: 12px 25px;
    width: 100%;
    border-radius: 45px;
    transition: 0.3s;
}
.knockdown-form .form-row input.wpcf7-form-control.wpcf7-submit:hover {
    background: #ffffff;
    color: #231e66;
    border: 1px solid #231e66;
}
.wpcf7-response-output {
    font-size: 16px;
    color: #828282;
}
.cyber-two-images-video-content.single-image .cyber-image {
    width: 100%;
    cursor: pointer;
}
img.cyber-image-play {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50px;
    object-fit: contain !important;
    opacity: 1 !important;
    width: auto;
    height: auto !IMPORTANT;
    margin: 0 auto;
}
.cyber-repeater-list-wrapper {
    display: flex;
    flex-direction: column;
}
.cyber-repeater-list-wrapper h2.cyber-main-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cyber-repeater-list-wrapper .cyber-main-description {
    color: #9F9A8B;
    line-height: 1.5;
    font-size: 16px;
}
ul.cyber-repeater-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
li.cyber-repeater-item-new {
    box-shadow: 0 0 10px 0 #0002;
    border-radius: 10px;
    padding: 15px 25px;
    font-size: 16px;
    color: #9F9A8B;
    line-height: 1.5;
}
.cyber-blog-list {
    display: flex;
    gap: 20px;
    align-items: center;
}
.cyber-blog-list-wrapper {
    margin: 40px 0;
}
.flex-row {
    flex-direction: row;
}
.cyber-blog-image {
    aspect-ratio: 10/6;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}
.cyber-blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.cyber-blog-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.cyber-blog-content h3.cyber-blog-title {
    font-size: clamp(1.4rem, 1.2981rem + 0.8974vw, 1.775rem);
    font-weight: 600;
    margin: 0;
}
.cyber-blog-content .cyber-blog-desc {
    color: #97907F;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}
.cyber-blog-content a.cyber-blog-button {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    margin-top: 15px;
    color: #121212;
}
.cyber-blog-content a.cyber-blog-button:hover {
    color: #231e66;
}
.cyber-blog-content a.cyber-blog-button img {
    max-width: 22px;
}
.cyber-blog-list.flex-row {
    gap: 30px;
}
.cyber-blog-list.flex-row .cyber-blog-image, .cyber-blog-list.flex-row .cyber-blog-content {
    width: calc(50% - 15px);
}
.cyber-blog-list.flex-row.flex-reverse {
    flex-direction: row-reverse !important;
}
.cyber-blog-list.flex-column.flex-reverse {
    flex-direction: column-reverse !important;
}
.cyber-blog-list.flex-row h3.cyber-blog-title {
    margin-bottom: 15px;
}
.cyber-blog-content h4.cyber-blog-subtitle {
    font-size: clamp(1.175rem, 0.8308rem + 0.141vw, 1.2rem);
    font-weight: 600;
    margin: 0 0 10px;
    color: #121212;
}
.cyber-blog-content p.cyber-blog-floor-number {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #121212;
}
.knockdown-form .wpcf7-form-control-wrap span.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
    margin-left: 20px;
}
.hero-innerbanner-text a:hover {
    color: #fff;
}
.wpb_single_image.single-round-image {
    margin: 0;
}
.section-title.hotspot-title p {
    max-width: 1024px;
}
.hotspot-tabs-wrapper {
    margin: 70px 0;
}
.hotspot-tabs ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}
.hotspot-tabs ul li {
    width: calc(25% - 15px);
}
.hotspot-tabs ul li button {
    border: none;
    background: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 10px;
    position: relative;
    padding-bottom: 40px;
}
.hotspot-tabs ul li button::after {
    content: '';
    width: 0;
    height: 0;
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent #d9d9d9 transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: 0.3s;
}
.hotspot-tabs ul li.active button::after {
    opacity: 1;
    transition: 0.3s;
}
.hotspot-tabs ul li button img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 16px;
}
.hotspot-tabs ul li button img + span {
    width: 100%;
    font-weight: 500;
}
.hotspot-tab-content {
    display: none;
    width: 100%;
    border: 1px solid #d9d9d9;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
}
.hotspot-tab-content.active {
    display: flex;
}
.imh-6310-point-icons {
    display: block !important;
}

.blog-content h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 22px;
    color: #121212;
    font-weight: 600;
}

.blog-content h4 {
    font-size: 20px;
    color: #121212;
    font-weight: 600;
}
.blog-content h5 {
    font-size: 18px;
    color: #121212;
    font-weight: 600;
}
.blog-content h6 {
    font-size: 16px;
    color: #121212;
    font-weight: 600;
}
.single-gallery-image {
    display: flex;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/2;
}
.single-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
li.destination-item > a {
    display: flex;
    width: 100%;
}
.property-item-content > a {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: inherit;
    justify-content: space-between;
    height: 100%;
}
li.blog-item.slick-slide {
    height: inherit !important;
}

.site-footer-menu ul > li .footer-address-content p {
    margin: 0;
}
.property-archive .pagination {
    justify-content: center;
    margin-top: 20px;
}
.property-archive .pagination .page-numbers {
    padding: 5px 10px;
    border: 1px solid #dcdcdc;
    font-size: 18px;
    color: #121212;
    background: #fff;
}
.property-archive .pagination .page-numbers.current {
    background: #c2ad77;
    border-color: #c2ad77;
    color: #fff;
}
.cyber-bder-cls .icon-items .icon-item {
    border: 1px solid #C2AD77;
}
.cyber-why-buy {
    align-items: center;
}
.cyber-under-budget .icon-item a {
    text-align: left;
    align-items: start;
}
.cyber-bg-overlay-row {
    position: relative;
    overflow: hidden;
}

.cyber-bg-overlay-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C2AD77/*rgba(0, 0, 0, 0.7)*/; 
    z-index: 1;
} 

.cyber-bg-overlay-row > .vc_column-inner,
.cyber-bg-overlay-row > .wpb_column {
    position: relative;
    z-index: 2;
}
.cyber-bg-overlay-row p, .cyber-bg-overlay-row span, .cyber-bg-overlay-row b, .cyber-bg-overlay-row li {
    color: #ffffff !important;
} 
.icon-items {
    align-items: stretch;
}
.icon-item a {
    justify-content: start;
}
.cyber-right-border {
    border-right: 2px solid #fff; 
    padding-right: 20px; 
}
.cyber-what-is-a-section .cyber-icon-with-text {
    margin-top: 0;
}
.custom-text-block p a b {
    color: blue;
}
.cyber-head-how-do {
    font-size: 42px !important;
}
.single-gallery-slider .slick-list .slick-track .single-gallery-slide img {
    object-fit: contain;
}
.title-meta-info {
    border: unset;
    padding: 12px 0;
}
.property-single-title .meta-item img {
    max-width: 16px;
}
.property-single-title .meta-item {
    font-size: 16px;
}
.property-single-title h1.title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}
.property-single-title .address {
    padding-top: 20px;
    border-top: 1px solid #e5e3e8;
    margin-top: 20px;
}
.property-single-title .price {
    font-size: 18px;
}
.property-single-section {
    gap: 20px;
}
.property-description {
    border-top: 1px solid #e5e3e8;
}
.property-desc-header {
    padding: 18px 0;
    background: transparent;
    border: none !important;
    box-shadow: none;
    color: #121212;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Roboto';
}
.property-features-details h3 {
    color: #121212;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Roboto';
}
.property-features-details-data {
    display: flex;
    gap: 10px;
    width: 100%;
}
.property-features-data-info {
    display: flex;
    gap: 5px;
    color: #121212;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 12px 0;
    width: 50%;
}
.property-features-details-main-div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.property-features {
    border-top: 1px solid #e5e3e8;
}

.property-description .accordion-body {
    max-height: 6em; 
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.property-description .accordion-body.expanded {
    max-height: 1000em; 
}

.property-description .read-more {
    display: inline-flex;
    align-items: center;
    color: #C2AD77;
    cursor: pointer;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s ease;
}
.property-description .read-more:hover{
    color:#000;
}

.property-description .read-more .arrow {
    margin-left: 5px;
    font-size: 0.9em;
}
button.features-read-more {
    border: unset;
    background: transparent;
    display: inline-flex;
    align-items: center;
    color: #C2AD77;
    cursor: pointer;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s ease;
}
button.features-read-more:hover{
    color:#000;
}
.cyber-icon-with-text.ins-icon .section-title p {
    max-width: 1024px;
    margin-bottom: 20px;
}

.ins-icon .icon-item {
    flex: 0 0 calc(100% / 7 - 20px);
    justify-content: center;
    margin-top: 15px;
    border: 2px solid #231e66;
    border-radius: 8px;
}
@media only screen and (max-width: 1400px){
    .hero-banner {
        margin-bottom: 25px;
    }
    .property-slider-wraper, .cyber-icon-with-text, .property-list-wrapper, .slider-with-text-wrapper, .latest-property-list-wrapper, .team-list-wrapper, .testimonial-list-wrapper, .address-box-wrapper, .cyber-image-card-wrapper, .blog-list-wrapper, .big-image-small-content-container {
        margin: 50px 0;
    } 
    .single-gallery-slider .slick-list .slick-track .single-gallery-slide {
        max-height: 600px;
    }
    .row-space, .cyber-text-box-wrapper {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .custom-prooerty-listing-class.vc_custom_1752475611314 {
        margin-top: 0 !important;
    }
    .page-id-21 .property-list-wrapper {
        margin-top: 0;
    }
    
}

@media only screen and (max-width: 1200px){
   
.property-slider-wraper button.slick-prev {
    top: 50%;
    margin-top: -15px !important;
}
 .property-slider-wraper button.slick-next {
    margin-top: -10px !important;
}   

}

@media only screen and (max-width: 991px){
   
    .address-box-wrapper{
        margin: 0;
    }
    .hero-innerbanner-image {
        min-height: 390px;
    }
	.blog-item-title img {
    width: 40px !important;
    height: 40px;
    object-fit: contain;
}
.hero-banner-content {
    max-width: 570px;
    padding: 25px 3%;
}

.icon-items {
    flex-wrap: wrap;
}
.icon-item {
    width: calc(50% - 10px);
}
.property-item {
    width: calc(50% - 10px);
}
.meta-item img {
    max-width: 22px;
}
.meta-info {
    padding: 12px 20px;
}

.property-item-content {
    padding: 15px 20px;
}
.text-slider-item .slider-content {
    padding: 25px;
    padding-top: 120px;
}
.slider-content p.save-amount {
    top: 30px;
}

.text-slider-item .slider-content a.slider-button {
    margin-top: 6px;
    padding: 11px 40px;
    border-radius: 45px;
}
ul.latest-property-list li.latest-property-item, .instagram-gallery-list .instagram-gallery-item {
    width: calc(20% - 16px);
    height: calc(200px + 7vw);
}
.team-list-wrapper {
    padding: 0 20px;
}
.team-list {
    gap: 20px;
}
.team-member-item {
    width: calc(50% - 10px);
}
.address-box-inner {
    gap: 20px;
}
.address-box-item {
    padding: 20px;
    width: calc(50% - 10px);
}

.hero-innerbanner-text + a.team-member-button {
    margin-top: 20px;
}
.destination-list-wrapper {
    margin: 50px 0;
}
.destination-item-content {
    padding: 20px;
}
.property-filters {
    margin: 40px 0 30px;
}
.property-filters {
    flex-wrap: wrap;
}
.filter-box {
    width: calc(33.33% - 10px);
    position: relative;
}
.text-slider ~ button.slick-prev {
    left: 25px;
}
.text-slider ~ button.slick-next {
    right: 25px;
}
.property-slider ~ button.slick-prev {
    margin-top: 0px;
    left: 20px;
}

.property-slider ~ button.slick-next {
    margin-top: 0px;
    right: 20px;
}
.address-box-item {
    width: calc(50% - 10px);
    gap: 15px;
}
.single-gallery-slider .slick-list .slick-track .single-gallery-slide {
    max-height: 480px;
}
.property-single-form {
    padding: 20px;
}
.floot-map-details .meta-info {
    gap: 12px;
}
.floot-map-details .meta-item {
    gap: 10px;
}
.floot-map-details .meta-item img {
    max-width: 32px;
}
.cyber-image-card-inner {
    flex-direction: column;
}
.image-card-left {
    width: 100%;
}
.image-card-right {
    width: calc(100% - 0px);
    padding: 20px;
}

.text-slider-item {
    margin: 0 7.5px;
}
.text-slider-v2 ~ button.slick-prev {
    left: 45px;
}
.text-slider-v2 ~ button.slick-next {
    right: 45px;
}
.text-slider-item .slider-content {
    padding: 20px 80px;
    padding-top: 120px;
}
.hero-innerbanner-content {
    max-width: 80%;
    width: 100%;
}

.overlay-content-sec {
    padding: 30px 30px;
}

.property-single-main {
    gap: 40px;
}
.property-single-section {
    width: 100%;
}
.property-single-aside {
    width: calc(100% - 0px);
}
.property-related-section {
    margin-top: 60px;
    margin-bottom: 70px;
}
.cyber-two-images-video-content .cyber-image > img {
    min-height: 300px;
}
#res-full-991 .vc_col-sm-6 .container {
    padding: 0;
}
div#res-full-991 {
    gap: 35px;
}
.blog-list {
    margin: 0;
}
.wpb-content-wrapper .vc_custom_1731922972582 {
    margin-bottom: 0px !important;
}
#res-full-991 .wpb_single_image.single-round-image {
    margin: 0;
}
.consultant-item {
    width: calc(50% - 10px);
}
.consultant-item .consultant-image img {
    min-height: 360px;
}
.consultant-wrapper {
    margin: 40px 0 40px;
}
.client-logos-wrapper {
    margin: 25px 0;
}
ul.client-logos-list li.client-logo-item {
    width: 20%;
}
.property-slider {
    margin-left: -20px;
    margin-right: -20px;
}
.text-slider.slick-slider {
    margin-left: -5px;
    margin-right: -5px;
}
.property-single-booking {
    margin-top: 50px;
}
.hotspot-tabs-wrapper {
    margin: 50px 0;
}
h2.section-title {
    margin-bottom: 20px !important;
}
.consultant-wrapper-inner {
    padding: 25px;
}
.row-space {
    padding-left: 10px;
    padding-right: 10px;
}
.team-member {
    padding: 25px;
}
}

@media only screen and (max-width: 767px){
	.icon-item {
    flex: 0 0 47%;
}
	.blog-item-title img {
    width: 40px !important;
    height: 40px;
    object-fit: contain;
}
    .hero-banner-content {
        max-width: 450px;
        padding: 20px 2%;
    }

    a.hero-banner-button {
        margin-top: 18px;
        padding: 12px 24px;
    }
    .property-slider-wraper, .cyber-icon-with-text, .property-list-wrapper, .slider-with-text-wrapper, .latest-property-list-wrapper, .team-list-wrapper, .testimonial-list-wrapper, .address-box-wrapper {
        margin: 35px 0;
    }

    .property-slide {
        margin: 0 10px;
    }
    .property-slider ~ button.slick-prev {
        left: 40px;
    }
    .property-slider ~ button.slick-next {
        right: 40px;
    }
    .text-slider-item {
        margin: 0 10px;
    }

    .slider-content p.save-amount {
        top: 60px;
    }


    ul.latest-property-list li.latest-property-item, .instagram-gallery-list .instagram-gallery-item {
        width: calc(20% - 16px);
        height: calc(200px + 1vw);
    }
    .testimonial-list-slider .slick-track {
        gap: 15px;
        margin-left: -15px;
    }
    .address-box-item {
        width: calc(100% - 0px);
        gap: 10px;
    }
	.address-box-item .address-box-image {
    width: 38px;
}
	.address-box-item {
    padding: 12px;
}

    .property-single-section {
        gap: 30px;
        width: 100%;
    }
    .property-single-aside {
        width: calc(100% - 0px);
    }

    .property-single-floor {
        margin-top: 0;
        padding: 50px 0;
    }
    .property-single-inside-tour {
        margin-top: 75px;
    }
    .tabs-container {
        flex-direction: column-reverse;
    }
    .nav-tabs-container {
        width: calc(100% - 0px);
        gap: 15px;
    }
    ul#videoTab {
        gap: 15px;
        width: 100%;
        flex-direction: row;
    }
    .tab-content-container {
        display: flex;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
    }
    .property-single-floor::before {
        width: 100%;
        height: 50%;
        border-radius: 30px;
        top: 50%;
    }
    .floot-map-details {
        padding-left: 25px;
        margin-top: 40px;
        text-align: center;
    }
    .floot-map-details .meta-info {
        gap: 12px;
        justify-content: center;
    }
    .property-related-section {
        margin-top: 70px;
        margin-bottom: 70px;
    }
    ul#videoTab li.nav-item {
        width: calc(33% - 10px);
    }
    .cyber-image-card {
        padding: 20px;
        gap: 15px;
    }
    .flex-row {
        flex-direction: column !important;
    }
    .cyber-blog-list.flex-row .cyber-blog-image, .cyber-blog-list.flex-row .cyber-blog-content {
        width: calc(100% - 0px);
    }
    .cyber-blog-list.flex-row.flex-reverse {
        flex-direction: column !important;
    }
    .text-slider ~ button, .text-slider-v2 ~ button {
        width: 30px;
        height: 30px;
    }
    .overlay-content-img {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    .overlay-content-out {
        position: relative;
        margin-top: 25px;
        width: 100%;
    }
    
    .overlay-content-sec {
        padding: 20px 20px;
        width: 100%;
    }
    .big-image-small-content-inner .big-image {
        width: calc(100% - 0px);
    }
    .small-content {
        width: 100%;
    }
    .hero-innerbanner {
        margin-bottom: 20px;
    }
    .team-member {
        margin-top: 35px;
    }
    .hero-innerbanner-image  .hero-banner-image {
        max-height: 330px;
    }
    .page-template-house-land .hero-innerbanner {
        margin-bottom: 0;
    }
    .single-gallery-slider .slick-list .slick-track .single-gallery-slide {
        max-height: 350px;
    }
    .instagram-gallery__actions {
        margin: 0 !important;
    }
 
    .property-relatedslider button {
        top: 40%;
        width: 35px;
        height: 35px;
    }
    .mfp-arrow-left {
    margin-top: -40px !important;
}

    .cyber-right-border {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid #ffffff;
        padding-bottom: 20px;
    }

   

}
@media only screen and (max-width: 640px){
    .slider-with-text-wrapper .slick-dots {
        bottom: -35px;
    }
    .slider-with-text-wrapper ul.slick-dots li.slick-active button:before {
        opacity: 1;
        color: #c2ad77;
    }
  
    .slider-with-text-wrapper .slick-prev {
        display: none;
    }
    .slider-with-text-wrapper .slick-next {
        display: none;
    }
    
   
    .about-us-sec .why-choose-btn {
        margin: 0;
    }
    .about-us-sec .vc_column-inner {
        padding: 30px 15px !important;
    }
    .property-slide-content {
        width: 80%;
    }
    .property-slider-outer ul.slick-dots li.slick-active button:before {
        color: #c2ad77;
    }
    
    .property-slider-outer ul.slick-dots {
        bottom: -35px;
    }
    .property-slider-outer button.slick-prev {
        display: none;
    }
    .property-slider-outer button.slick-next {
        display: none;
    }
    .hero-banner-content {
        max-width: 480px;
        padding: 20px 2%;
    }
   
    .property-slider-wraper, .cyber-icon-with-text, .property-list-wrapper, .slider-with-text-wrapper, .latest-property-list-wrapper, .team-list-wrapper, .testimonial-list-wrapper, .address-box-wrapper {
        margin: 25px 0;
    }
    .property-slide a > img {   
        min-height: 250px;
    }
    .icon-item {
        width: calc(100% - 0px);
    }
  
    .property-item {
        width: calc(100% - 0px);
    }
    ul.latest-property-list {
        gap: 10px;
    }
    ul.latest-property-list li.latest-property-item, .instagram-gallery-list .instagram-gallery-item {
        width: calc(20% - 8px);
        height: calc(130px + 1vw);
    }
    .latest-property-item-img, .instagram-gallery-item__wrap {
        border-radius: 10px;
    }
    .team-member-item {
        width: calc(100% - 0px);
    }
    .testimonial-content-top .quote-img {
        width: 35px;
    }
    .testimonial-content-top .quote-desc {
        width: calc(100% - 40px);
    }
    .testimonial-content-top {
        padding-right: 0;
        padding-bottom: 15px;
    }
    .testimonial-item.slick-slide { 
        border-radius: 20px;
        padding: 20px 25px;
    }
    .testimonial-content-top {
        justify-content: space-between;
    }
   
    .hero-innerbanner-content {
        padding: 0 20px;
        width: 100%;
    }   
    .hero-innerbanner-image {
        min-height: 390px;
    }
    .hero-innerbanner-content {
        max-width: 100%;
        width: 100%;
    }
    li.destination-item {
        width: calc(100% - 0px);
    }
    .destination-list-wrapper {
        margin: 30px 0;
    }
    
    .filter-box {
        width: calc(50% - 10px);
        position: relative;
    }
    .single-gallery-slider .slick-list .slick-track .single-gallery-slide {
        max-height: 400px;
    }
    ul#videoTab li.nav-item {
        width: calc(100% - 10px);
    }

    .text-slider.slick-slider {
        margin-left: 0;
        margin-right: 0;
    }
    .team-list-wrapper .container {
        padding: 35px 20px;
    }
    .property-slider-wraper, .cyber-icon-with-text, .property-list-wrapper, .slider-with-text-wrapper, .latest-property-list-wrapper, .team-list-wrapper, .testimonial-list-wrapper, .address-box-wrapper, .cyber-image-card-wrapper, .blog-list-wrapper, .big-image-small-content-container {
        margin: 25px 0;
    }
   
    .cyber-blog-list-wrapper {
        margin: 30px 0;
    }
    .text-slider-item .slider-content {
        padding: 20px 60px;
        padding-top: 120px;
    }
    .blog-item-content {
        opacity: 1;
    }
    .blog-item-title > a > img {
        max-width: 30px;
        aspect-ratio: 1;
    }
    .blog-item-title h3 {
        width: calc(100% - 40px);
    }
    
    .property-relatedslider button {
        width: 30px;
        height: 30px;
    }
    .row-space, .cyber-text-box-wrapper {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .property-filters {
        margin: 10px 0 30px;
    }
    .consultant-item {
        width: calc(100% - 0px);
    }
    .consultant-wrapper-inner {
        padding: 20px;
    }
    ul.client-logos-list li.client-logo-item {
        width: 33.33%;
    }
    div#res-full-991 {
        padding: 0 5px !important;
    }
    
    .wpb-content-wrapper > .vc_row:not([data-vc-full-width="true"]).full-width-with-bg {
        padding: 0 5px !important;
    }
    .wpb-content-wrapper > .vc_row:not([data-vc-full-width="true"]) {
        max-width: 100%;
        padding: 0 5px !important;
    }
    .text-slider-item {
        margin: 0;
    }
    .wpb-content-wrapper .vc_custom_1732023097261 {
        margin-top: 25px !important;
    }
    .property-slider ~ button {
        width: 30px;
        height: 30px;
    }
    .meta-btn img {
        max-width: 30px;
    }
    .text-slider-item {
        margin: 0;
    }
    .text-slider.slick-slider .slick-list {
        overflow: hidden;
    }
    .text-slider-item .slider-content a.slider-button {
        margin-bottom: 20px;
    }
    .property-slider {
        margin-left: -10px;
        margin-right: -10px;
    }
    .hotspot-tabs ul {
        gap: 10px;
    }
    .hotspot-tabs ul li {
        width: calc(25% - 7.5px);
    }
    .hotspot-tabs ul li button {
        gap: 10px;
        padding-bottom: 30px;
    }
    .hotspot-tabs ul li button img {
        border-radius: 8px;
    }
    .hotspot-tabs ul li button::after {
        border-width: 15px;
    }
    .hotspot-tabs-wrapper {
        margin: 25px 0;
    }
    .suppliers-textbox .cyber-text-box-content p:last-child {
        margin-bottom: 0;
    }
    .property-single-main.blog-page .property-single-section h1.title {
        margin-top: 20px !important;
    }
    .property-single-gallery {
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .property-related-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .blog-item-img img {
        aspect-ratio: 3/4;
        height: auto;
    }
    .form-halfrow {
        width: calc(100% - 0px);
    }
    .knockdown-form .form-row {
        gap: 15px;
    }
    .btn-close {
        width: 0.6em;
        height: 0.6em;
        background-size: 0.6em;
    }
    .property-relatedslider button.slick-next {
        margin-top: 12px;
    }
    .property-relatedslider button {
        top: 48%;
    }
    .contact-info p strong {
        min-width: 65px;
    } 
    .cyber-head-how-do{
        padding-top: 30px;
    }
}

@media only screen and (max-width: 480px){
    
    .blog-list-wrapper {
        margin-top: 10px;
    }
    
    .cyber-two-images-video-content .cyber-image > img {
        max-height: 300px;
        object-fit: cover;
    }
    .cyber-two-images-video-content.single-image .cyber-image {
        min-height: 300px !important;
    }
    
    .cyber-image-card {
        gap: 0;
    }
    
    .icon-item a {
        box-shadow: 0 0 23px -3px #0002;
    }
	.icon-item {
    flex: 0 0 100%;
}
	.property-slider ~ button.slick-next {
    right: 20px;
}
	.property-slider ~ button.slick-prev {
    left: 20px;
}
    .hero-banner-content {
        max-width: 310px;
        padding: 20px 2%;
    }
    
    a.hero-banner-button {
        margin-top: 0px;
        padding: 12px 24px;
    }
    
    .property-slider ~ button {
        width: 35px;
        height: 35px;
    }
   
    .icon-item a {
        gap: 10px;
    }
    .meta-btn img {
        max-width: 35px;
    }
    .text-slider-item img {
        object-fit: cover;
        min-height: 380px;
    }
    .text-slider ~ button {
        width: 35px;
        height: 35px;
    }

    .testimonial-slider-arrow {
        gap: 5px;
    }
    .testimonial-item.slick-slide {
        border-radius: 10px;
        padding: 15px 15px;
    }
    .slider-count {
        white-space: nowrap;
    }

    .team-list-wrapper .container {
        padding: 20px 15px;
        border-radius: 20px;
    }

    
	.property-filters {
    gap: 10px;
}
    .text-slider-item .slider-content {
        padding: 20px 25px;
        padding-top: 120px;
    }
   
    .text-slider-v2 ~ button.slick-prev {
        left: 30px;
    }
    .text-slider-v2 ~ button.slick-next {
        right: 30px;
    }
    .team-member {
        padding: 20px;
    }
    ul.client-logos-list li.client-logo-item {
        width: 50%;
    }
    div#mobile_menu {
        width: 340px;
    }
    ul.latest-property-list, .instagram-gallery-list[data-feed_layout=gallery] {
        gap: 10px;
    }
    ul.latest-property-list li.latest-property-item, .instagram-gallery-list .instagram-gallery-item {
        width: calc(20% - 8px) !important;
    }
    
    .property-relatedslider button {
        top: 45%;
    }
    .hero-innerbanner-text + a.team-member-button {
        margin-top: 25px;
    }
    
    .property-features-details-data {
        flex-wrap: wrap;
    }
    .property-features-data-info {
        width: 100%;
        padding: 0;
    }

}

@media only screen and (max-width: 1199px){
	.blog-item-title img {
    width: 40px !important;
    height: 40px;
    object-fit: contain;
}
	.property-item-content {
    gap: 15px;
    padding: 15px 15px;
}
	.property-content-bottom {
    gap: 15px;
}
	.meta-info {
    gap: 8px;
    padding: 10px 20px;
}
	.property-content-bottom .meta-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
	.meta-item img {
    max-width: 25px;
}
}

.header-right-menu li.current_page_item a {
    color: #fff !important;
}
.header-right-menu li.current_page_item a::after {
    display: none !important;
}
.property-relatedslider button.slick-prev {
    margin-top: -20px;
}
.why-choose-btn a {
    padding: 14px 40px !important;
    border: 1px solid #231e66 !important;
    background: #231e66 !important;
    font-weight: 400;
    margin: 0px 5px;
    text-transform: capitalize;
    color: #fff !important;
    border-radius: 45px !important;
    transition: 0.3s;
}
.why-choose-btn a:hover {
    background: #fff !important;
    color: #231e66 !important;
    border: 1px solid #231e66 !important;
}
.About-us-sec h2 {
    font-weight: 600;
}
.About-us-sec h3 {
    font-weight: 600;
}
.About-us-sec p {
    font-weight: 400;
    color: #828282;
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
}
.property-slide-content p.description {
    font-weight: 400;
    color: #828282;
    margin: 5px 0 5px 0;
}
@media only screen and (max-width: 640px){
.About-us-sec h3 br {
    display: none;
}
.About-us-sec p br {
    display: none;
}
.About-us-sec {
    margin: 0 15px !important;
}
}


@media only screen and (max-width: 1025px){
    .single-gallery-slider-bx img {
        max-height: 380px !important;
    }
    #blog-posts-container .post-item .post-image img {
        height: 250px !important;
    }
    .tag .category-posts .tag-header p {
        padding: 0 20% !important;
    }
.About-us-sec p br {
    display: none;
}
.blog-item-img img {
    height: 220px;
}
}

.page-id-15 .hotspot-tabs-wrapper {
    margin: 0;
}
.house-design-why-choose .cyber-icon-with-text {
    margin: 0px 0 40px 0;
}








.swap-slider .video-container {
    margin: 2rem;
    max-height: 300px;
  }
  
  .swap-slider img {
    display: block;
    max-width: 100%;
  }
  
  .swap-slider main {
    display: grid;
    place-items: center;
    min-height: 100vh;
  }
  img.image-after.slider-image {
    width: 100%;
  }
  .swap-slider .img-slider {
    display: grid;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    --position: 50%;
  }
  
  .swap-slider .image-container {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
  }
  
  .swap-slider .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
  
  .swap-slider .image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
    filter: grayscale(100%)
  }
  
  .swap-slider .slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    /* for Firefox */
    width: 100%;
    height: 100%;
  }
  
  .swap-slider .slider:focus-visible ~ .slider-button {
    outline: 5px solid black;
    outline-offset: 3px;
  }
  
  .swap-slider .slider-line {
    position: absolute;
    inset: 0;
    width: .2rem;
    height: 100%;
    background-color: #fff;
    /* z-index: 10; */
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
  }
  
  .swap-slider .slider-button {
    position: absolute;
    background-color: #fff;
    color: black;
    padding: .5rem;
    border-radius: 100vw;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* z-index: 100; */
    box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
  }
  .cyber-swap-slider-sec {
    margin: 70px 0 70px 0;
}  
.cyber-swap-slider-sec .icon-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
    gap: 20px;
}
.swap-slider .image-container img {
    height: 100%;
    object-fit: cover;
}
.destination-btn {
    margin-top: 10px;
    background: #C2AD77;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    border-radius: 45px;
    text-transform: capitalize;
    transition: 0.3s;
    border: 1px solid #C2AD77;
    padding: 12px 40px;
}
.destination-btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}
.image-card-left .cyber-image-card-desc p strong {
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
    padding-left: 22px;
    margin-top: 10px;
}
.image-card-left .cyber-image-card-desc p strong:before {
    position: absolute;
    content: '';
    background: url("/wp-content/themes/cyber/assets/images/arrow-new.png") no-repeat;
    width: 16px;
    height: 16px;
    left: 0;
    top: 2px;
    background-size: cover;
}
.cyber-image-card-desc h2 {
    color: #121212;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}
.cyber-repeater-list-wrapper button {
    padding: 10px 18px;
    border: 1px solid #C2AD77;
    background: #C2AD77;
    font-weight: 400;
    margin: 20px 5px;
    text-transform: uppercase;
    color: #fff !important;
    border-radius: 45px;
    width: fit-content;
}
.cyber-repeater-list-wrapper button:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}
li.cyber-repeater-item-new strong {
    margin-bottom: 4px;
    display: inline-block;
}
li.cyber-repeater-item-new ul {
    padding-left: 20px;
}
@media only screen and (max-width: 991px){
    .swap-slider .image-container img {
        height: 280px;
        object-fit: cover;
    }
    .swap-slider .image-container {
        height: 260px;
      }
    .blog-item-title + p {
        height: 57px;
    }
}


@media only screen and (max-width: 480px){
    .cyber-swap-slider-sec .icon-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }   
}



@media only screen and (max-width: 768px){
    #blog-posts-container {
        display: grid;
        grid-template-columns: 1fr !important;
    }
    .tag .category-posts .tag-header p {
        padding: 0 0% !important;
    }
   
    ul.blog-list .blog-item:first-child .blog-item-img img {
        height: 220px !important;
    }

.destination-item-content {
    padding: 20px 10px;
}
li.destination-item {
    min-height: 400px;
}
}

.cyber-two-images-video-wrapper {
    height: 100% !important;
}
.cyber-repeater-list-wrapper {
    padding-top: 20px;
}
.cyber-two-images-video-content.single-image .cyber-image {
    height: 100%;
    min-height: 600px;
}

/* .icon-item {
    min-height: 320px;
}
.icon-item a {
    min-height: 320px;
} */


.single-team .testimonial-list-wrapper {
    display: none;
}
.site-footer-menu ul > li a br {
    display: none;
}
.site-footer-menu ul li a {
    color: #fff !important;
}
.site-footer-menu img {
    max-width: 225px !important;
}
.site-footer-bottom-menu p a {
    color: #fff;
}
.page-id-15 .icon-item {
    min-height: 350px;
}
.page-id-15 .icon-item a {
    min-height: 350px;
}


select#blog-category {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    z-index: 99;
    position: relative;
}
.blog-filter {
    position: relative;
}

.how-it-work img.cyber-image-play {
    display: none;
}
.how-it-work .cyber-image {
    cursor: unset !important;
}
h2.project-gallery-heading {
    font-weight: 600;
}
.project-images-wrapper {
    margin-top: 30px;
}
ul.project-images-list {
    margin: 0;
    padding: 0;
}
li.project-images-item {
    list-style: none;
}
ul.project-images-list .slick-arrow:before {
    color: #c2ad77;
}
ul.project-images-list .slick-prev[aria-disabled="false"] {
    opacity: 1 !important;
    color: #c2ad77 !important;
}
ul.project-images-list .slick-arrow:before {
    display: none;
}
ul.project-images-list .slick-prev {
    left: -35px;
}
ul.project-images-list .slick-next {
    right: -25px;
}
ul.project-images-list li {
    padding: 0 10px;
}
ul.project-images-list li img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    object-position: top center;
}
ul.project-images-list .slick-next:before {
    opacity: 1;
}
ul.project-images-list .slick-arrow img {
    max-width: 30px;
}
ul.project-images-list .slick-prev img {
    transform: rotate(180deg);
}

@media only screen and (max-width: 575px){
ul.project-images-list li {
    padding: 0 0px;
}
}

@media only screen and (max-width: 991px){
ul.project-images-list .slick-prev {
    left: -13px;
    z-index: 9;
}
ul.project-images-list .slick-next {
    right: -3px;
    z-index: 9;
}
.our-vision-sec {
    flex-direction: column-reverse !important;
}
}




.page-id-227 .team-list-wrapper {
    margin-top: 0;
}
.page-id-227 .row-space {
    margin-top: 0px;
}


@media only screen and (max-width: 768px){
ul.blog-list {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    gap: 30px;
}
ul.blog-list .blog-item:first-child .blog-item-img a {
    flex: 0 0 100% !important;
    width: 100% !important;
}
ul.blog-list .blog-item:first-child .blog-item-img {
    flex-wrap: wrap !important;
    gap: 0px !important;
    margin-bottom: 30px;
}
.related-posts-list {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr !important;
}
.related-post-item 
 .related-thumb img {
    height: auto;
}
}

@media only screen and (max-width: 991px){
    .blog-item-img a {
        width: 100%;
    }
    ul.blog-list .blog-item:nth-child(1) {
        grid-column: span 1 !important;
    }
ul.blog-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
ul.blog-list .blog-item:first-child .blog-item-img {
    margin-bottom: 0px;
}
.property-single-gallery-inner {
    max-width: 100% !important;
    margin: 0 auto;
}
}




.blog-item-date {
    display: block;
    color: #888;
    margin-bottom: 5px;
}
.blog-item-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.blog-item-tags .blog-tag {
    background: #909090;
    padding: 5px;
    color: #fff;
}
.blog-item-tags .blog-tag:hover {
    color: #fff;
}



.blog-category-filter {
    position: relative;
}
#blog-category-filter {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 5px;
    margin: 0;
    position: relative;
    overflow: auto;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.blog-category-filter:after {
    background: #000;
    position: absolute;
    content: '';
    height: 1px;
    bottom: 0.4px;
    left: -10%;
    right: -10%;
}
#blog-category-filter li {
    padding: 15px 10px;
    cursor: pointer;
    background: transparent;
    border-radius: 5px;
    transition: 0.3s;
    flex: none;
}

#blog-category-filter li:hover,
#blog-category-filter li.active {
    background: transparent;
    color: #c2ad77;
    border-bottom: 2px solid #c2ad77;
    z-index: 9;
    border-radius: unset;
}
ul.blog-list .blog-item:first-child {
    grid-column: span 3;
}
ul.blog-list .blog-item:first-child .blog-item-img {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
}
ul.blog-list .blog-item:first-child .blog-item-img a {
    flex: 0 0 65%;
    width: 65%;
}
ul.blog-list .blog-item:first-child .blog-item-img img {
    height: 480px;
}

#load-more:disabled {
    background: #C2AD77;
    cursor: not-allowed;
}
.load-more-container {
    margin-top: 50px;
    text-align: center;
}
.load-more-container button {
    padding: 12px 25px;
    border: 1px solid #C2AD77;
    background: #C2AD77;
    font-weight: 400;
    margin: 19px 5px;
    text-transform: uppercase;
    color: #fff !important;
    border-radius: 45px;
}



@media only screen and (max-width: 1440px){
ul.blog-list .blog-item:first-child .blog-item-img img a {
    flex: 0 0 50%;
    width: 50%;
}
ul.blog-list .blog-item:first-child .blog-item-img img {
    height: 380px;
}
}



.single-post .single-gallery-slider {
    margin-top: 50px;
}
.blog-content-share-bx h3.share-title {
    margin: 0;
}
.blog-content-share-bx {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    background: #f3f3f3;
    padding: 25px 15px;
    margin-top: 35px;
}
.single-blog-content .social-share img {
    width: 30px;
    height: 30px;
    border-radius: 50px;
}
.social-share-bx img {
    width: 30px;
    height: 30px;
    border-radius: 50px;
}
.tag-with-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 20px;
}
.blog-tag-bx span.blog-item-date {
    margin: 0;
}
.blog-tag-bx .blog-item-tags {
    margin: 0;
    gap: 12px;
}
.blog-tag-bx {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.single-post .property-single-gallery {
    margin-top: 25px;
}
.single-post .main-header {
    box-shadow: 0 0 15px 0 #0002;
    background: #ffffff;
}
.blog-item-button a {
    border: unset;
}



.property-single-main.blog-page {
    margin-bottom: 40px;
}
.related-posts {
    margin-top: 50px 0;
}
.related-posts-inner {
    padding-top: 40px;
    border-top: 1px solid #ccc;
}
.related-title {

    margin-bottom: 15px;
}
.related-posts-list {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
}
.related-post-item .blog-item-tags {
    margin-top: 12px;
}
.related-post-item {
    width: 100%;
}
.related-post-item 
 .related-thumb img {
    object-fit: cover;
    width: 100%;
    height: 300px;
}
.related-post-item h3 {

    font-weight: 400;
    color: #c2ad77;
    font-family: 'Roboto';
    width: 100%;
    margin: 10px 0 10px 0;
}
.related-post-item .blog-content p {
    color: #B1B1B1;

    display: -webkit-box;
    max-width: 100%;
    height: 68px;
    margin: 0 auto;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-post-item .blog-content {
    margin-bottom: 12px;
}
.related-post-title {
    margin-top: 10px;
}
.property-single-gallery-inner {
    max-width: 80%;
    margin: 0 auto;
}
.single-gallery-slider-bx img {
    width: 100%;
    object-fit: cover;
    max-height: 580px;
}
ul.blog-list .blog-item:first-child .blog-item-tags a.blog-tag {
    width: max-content !important;
    flex: none !important;
}
ul.blog-list .blog-item .blog-item-tags a.blog-tag {
    width: max-content !important;
    flex: none !important;
}



.tag .category-posts {
    margin: 50px 0;
}
.tag .category-posts .tag-header {
    text-align: center;
    margin-bottom: 30px;
}

.tag .category-posts .tag-header p {
    padding: 0 30%;
}
#blog-posts-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
#blog-posts-container .post-item .post-image img {
    object-fit: cover;
    height: 300px;
    margin-bottom: 15px;
}
#blog-posts-container .post-item .post-content h3 {
    font-weight: 400;
    color: #c2ad77;
    font-family: 'Roboto';
    margin: 0;
    width: 100%;
}
#blog-posts-container .post-item .post-content .post-excerpt p {
    color: #B1B1B1;
    font-family: 'Roboto';
    display: -webkit-box;
    max-width: 100%;
    height: 61px;
    margin: 0 auto;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tag .main-header {
    box-shadow: 0 0 15px 0 #0002;
    background: #ffffff;
}
#blog-posts-container .post-item .post-content .post-excerpt {
    margin: 10px 0;
}
#blog-posts-container .post-item .post-content h3 a:hover {
    color: #C2AD77;
}
.category-posts button#load-more {
    padding: 12px 25px;
    border: 1px solid #C2AD77;
    background: #C2AD77;
    font-weight: 400;
    margin: 30px 5px 0 5px;
    text-transform: uppercase;
    color: #fff !important;
    border-radius: 45px;
}
.category-posts button#load-more:hover {
    background: #000;
}
.load-more-container button:hover {
    background: #000;
}
.category-posts button#load-more:focus {
    outline: unset;
    box-shadow: unset;
}
.load-more-container button:focus {
    outline: unset;
    box-shadow: unset;
}
.hidden-blog {
    display: none !important; /* Hides blog posts instantly */
}
.blog-item {
    transition: opacity 0.3s ease;
}
.property-map-section h2 {
    margin-top: 10px;
    text-transform: capitalize;
}
@media only screen and (max-width: 767px){
.mfp-image-holder .mfp-content {
    max-width: 95% !important;
}

}

@media(min-width:768px) and (max-width:991px){
    .cyber-what-is-a-section .vc_row.wpb_row.vc_inner {
        align-items: center;
        justify-content: center;
    }
    .cyber-benefits-section {
        align-items: center;
        justify-content: center;
    }
    .icon-item {
        flex: unset;
    }
    .cyber-what-is-a-section  .wpb_column.vc_column_container.vc_col-sm-6,.cyber-benefits-section .wpb_column.vc_column_container.vc_col-sm-6{
        width: 100% !important;
    }
    .cyber-benefits-section .wpb_column.vc_column_container.vc_col-sm-6:first-child {
        order: 2;
    }
    .cyber-benefits-section .wpb_column.vc_column_container.vc_col-sm-6:nth-child(2) {
        order: 1;
    }
    .cyber-how-do-section-cnt .wpb_column.vc_column_container.vc_col-sm-6 {
        width: 47%;
    }
}